CCT.NUI.Core.Vector.Vector C# (CSharp) 메소드

Vector() 공개 메소드

public Vector ( float x, float y, float z ) : System
x float
y float
z float
리턴 System
        public Vector(float x, float y, float z)
            : this()
        {
            this.X = x;
            this.Y = y;
            this.Z = z;
        }