ISmoother.cs 583 B

1234567891011121314151617181920
  1. // -----------------------------------------------------------------------
  2. // <copyright file="ISmoother.cs">
  3. // Triangle.NET code by Christian Woltering, http://triangle.codeplex.com/
  4. // </copyright>
  5. // -----------------------------------------------------------------------
  6. namespace UnityEngine.U2D.Animation.TriangleNet
  7. .Smoothing
  8. {
  9. using Animation.TriangleNet.Meshing;
  10. /// <summary>
  11. /// Interface for mesh smoothers.
  12. /// </summary>
  13. internal interface ISmoother
  14. {
  15. void Smooth(IMesh mesh);
  16. void Smooth(IMesh mesh, int limit);
  17. }
  18. }