PO/Library/PackageCache/com.unity.2d.animation@5.0.7/Runtime/Triangle/Smoothing/ISmoother.cs

21 lines
583 B
C#
Raw Normal View History

2022-01-12 10:06:03 +03:00
// -----------------------------------------------------------------------
// <copyright file="ISmoother.cs">
// Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
// </copyright>
// -----------------------------------------------------------------------
namespace UnityEngine.U2D.Animation.TriangleNet
.Smoothing
{
using Animation.TriangleNet.Meshing;
/// <summary>
/// Interface for mesh smoothers.
/// </summary>
internal interface ISmoother
{
void Smooth(IMesh mesh);
void Smooth(IMesh mesh, int limit);
}
}