[csharp] Reduce access to internal methods.

This commit is contained in:
pharan 2017-08-23 18:49:27 +08:00
parent f796d15f31
commit 4abea9e4ad
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ namespace Spine {
return clipped; return clipped;
} }
public static void MakeClockwise (ExposedList<float> polygon) { static void MakeClockwise (ExposedList<float> polygon) {
float[] vertices = polygon.Items; float[] vertices = polygon.Items;
int verticeslength = polygon.Count; int verticeslength = polygon.Count;

View File

@ -31,7 +31,7 @@
using System; using System;
namespace Spine { namespace Spine {
public class Triangulator { internal class Triangulator {
private readonly ExposedList<ExposedList<float>> convexPolygons = new ExposedList<ExposedList<float>>(); private readonly ExposedList<ExposedList<float>> convexPolygons = new ExposedList<ExposedList<float>>();
private readonly ExposedList<ExposedList<int>> convexPolygonsIndices = new ExposedList<ExposedList<int>>(); private readonly ExposedList<ExposedList<int>> convexPolygonsIndices = new ExposedList<ExposedList<int>>();