fcb6057f3d
git-svn-id: https://triangle.svn.codeplex.com/svn@68260 0e2699bc-83d4-4a8f-98e7-55e24ab8c7a5
21 lines
579 B
C#
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();
|
|
}
|
|
} |