Nexus.Normal3D.Normal3D C# (CSharp) 메소드

Normal3D() 공개 메소드

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