// -----------------------------------------------------------------------
//
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
//
// -----------------------------------------------------------------------
namespace TriangleNet.Meshing
{
using System.Collections.Generic;
using TriangleNet.Geometry;
///
/// Interface for point set triangulation.
///
public interface ITriangulator
{
///
/// Triangulates a point set.
///
/// Collection of points.
///
/// Mesh
IMesh Triangulate(IList points, Configuration config);
}
}