Files
2026-03-04 10:03:45 +08:00

15 lines
247 B
C#

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