Voronoi.VoronoiDiagram.VoronoiDiagram C# (CSharp) Method

VoronoiDiagram() public method

public VoronoiDiagram ( ) : System
return System
        public VoronoiDiagram()
        {
            Triangulation = new List<Triangle>();
            HalfEdges = new List<Line>();
            VoronoiCells = new List<Cell>();
            SiteCellPoints = new Dictionary<Point,Cell>();
        }