Searched refs:lUpperSize (Results 1 – 1 of 1) sorted by relevance
162 int lUpperSize = 2; in hull() local165 lUpper[lUpperSize] = points[i]; in hull()166 lUpperSize++; in hull()168 while (lUpperSize > 2 && !ccw( in hull()169 lUpper[lUpperSize - 3].x, lUpper[lUpperSize - 3].y, in hull()170 lUpper[lUpperSize - 2].x, lUpper[lUpperSize - 2].y, in hull()171 lUpper[lUpperSize - 1].x, lUpper[lUpperSize - 1].y)) { in hull()173 lUpper[lUpperSize - 2].x = lUpper[lUpperSize - 1].x; in hull()174 lUpper[lUpperSize - 2].y = lUpper[lUpperSize - 1].y; in hull()175 lUpperSize--; in hull()[all …]