// ----------------------------------------------------------------------- // // Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/ // // ----------------------------------------------------------------------- namespace TriangleNet.Voronoi.Legacy { using System.Collections.Generic; using TriangleNet.Geometry; /// /// Voronoi diagram interface. /// public interface IVoronoi { /// /// Gets the list of Voronoi vertices. /// Point[] Points { get; } /// /// Gets the list of Voronoi regions. /// ICollection Regions { get; } /// /// Gets the list of edges. /// IEnumerable Edges { get; } } }