// ----------------------------------------------------------------------- // // Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/ // // ----------------------------------------------------------------------- namespace UnityEngine.U2D.Animation.TriangleNet .Smoothing { using Animation.TriangleNet.Meshing; /// /// Interface for mesh smoothers. /// internal interface ISmoother { void Smooth(IMesh mesh); void Smooth(IMesh mesh, int limit); } }