// ----------------------------------------------------------------------- // // Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/ // // ----------------------------------------------------------------------- namespace TriangleNet.Tools { using System.Collections.Generic; using TriangleNet.Geometry; /// /// TODO: Update summary. /// public interface IVoronoi { /// /// Gets the list of Voronoi vertices. /// Point[] Points { get; } /// /// Gets the directions for infinite Voronoi edges. /// List Regions { get; } void Generate(); } }