using System.Collections.Generic; using TriangleNet.Geometry; namespace TriangleNet.Voronoi.Legacy { public interface IVoronoi { Point[] Points { get; } ICollection Regions { get; } IEnumerable Edges { get; } } }