FC3Editor.Nomad.Vec3.Vec3 C# (CSharp) 메소드

Vec3() 공개 메소드

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