Files
Triangle.NET/Triangle.NET/Triangle/Tools/IVoronoi.cs
T
2012-10-14 22:08:33 +00:00

30 lines
832 B
C#

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