04c45ed41a
git-svn-id: https://triangle.svn.codeplex.com/svn@69976 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
30 lines
832 B
C#
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();
|
|
}
|
|
}
|