Voronoi.Point.Point C# (CSharp) Method

Point() public method

public Point ( float x, float y, float z ) : System
x float
y float
z float
return System
        public Point(float x, float y, float z = 0)
        {
            this.x = x;
            this.y = y;
            this.z = z;
            this.halfEdges = new List<HalfEdge>();
        }