19 lines
560 B
C#
19 lines
560 B
C#
|
// -----------------------------------------------------------------------
|
|||
|
// <copyright file="ISmoother.cs">
|
|||
|
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
|
|||
|
// </copyright>
|
|||
|
// -----------------------------------------------------------------------
|
|||
|
|
|||
|
namespace TriangleNet.Smoothing
|
|||
|
{
|
|||
|
using TriangleNet.Meshing;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Interface for mesh smoothers.
|
|||
|
/// </summary>
|
|||
|
public interface ISmoother
|
|||
|
{
|
|||
|
void Smooth(IMesh mesh);
|
|||
|
void Smooth(IMesh mesh, int limit);
|
|||
|
}
|
|||
|
}
|