Files
Triangle.NET/Triangle.NET/Triangle/Smoothing/ISmoother.cs
T
SND\wo80_cp fcb6057f3d Code cleanup for Beta 2
git-svn-id: https://triangle.svn.codeplex.com/svn@68260 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
2012-06-20 19:24:53 +00:00

21 lines
579 B
C#

// -----------------------------------------------------------------------
// <copyright file="ISmoother.cs">
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
// </copyright>
// -----------------------------------------------------------------------
namespace TriangleNet.Smoothing
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/// <summary>
/// Interface for mesh smoothers.
/// </summary>
public interface ISmoother
{
void Smooth();
}
}