// -----------------------------------------------------------------------
//
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
//
// -----------------------------------------------------------------------
namespace TriangleNet.Smoothing
{
using TriangleNet.Meshing;
///
/// Interface for mesh smoothers.
///
public interface ISmoother
{
void Smooth(IMesh mesh);
void Smooth(IMesh mesh, int limit);
}
}