// ----------------------------------------------------------------------- // // Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/ // // ----------------------------------------------------------------------- namespace UnityEngine.U2D.Animation.TriangleNet .Voronoi.Legacy { using System.Collections.Generic; using Animation.TriangleNet.Geometry; /// /// Voronoi diagram interface. /// internal 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; } } }