Searched refs:pointsLength (Results 1 – 2 of 2) sorted by relevance
46 static void xsort(Vector2* points, int pointsLength);47 static int hull(Vector2* points, int pointsLength, Vector2* retPoly);
143 void SpotShadow::xsort(Vector2* points, int pointsLength) { in xsort() argument144 quicksortX(points, 0, pointsLength - 1); in xsort()155 int SpotShadow::hull(Vector2* points, int pointsLength, Vector2* retPoly) { in hull() argument156 xsort(points, pointsLength); in hull()157 int n = pointsLength; in hull()