12 lines
164 B
C#
12 lines
164 B
C#
using TriangleNet.Meshing;
|
|
|
|
namespace TriangleNet.Smoothing
|
|
{
|
|
public interface ISmoother
|
|
{
|
|
void Smooth(IMesh mesh);
|
|
|
|
void Smooth(IMesh mesh, int limit);
|
|
}
|
|
}
|