IxMilia.Stl.StlVertex.StlVertex C# (CSharp) Method

StlVertex() public method

public StlVertex ( float x, float y, float z )
x float
y float
z float
        public StlVertex(float x, float y, float z)
            : this()
        {
            X = x;
            Y = y;
            Z = z;
        }
    }
StlVertex