Lines Matching refs:lLowerSize
189 int lLowerSize = 2; in hull() local
192 lLower[lLowerSize] = points[i]; in hull()
193 lLowerSize++; in hull()
195 while (lLowerSize > 2 && !ccw( in hull()
196 lLower[lLowerSize - 3].x, lLower[lLowerSize - 3].y, in hull()
197 lLower[lLowerSize - 2].x, lLower[lLowerSize - 2].y, in hull()
198 lLower[lLowerSize - 1].x, lLower[lLowerSize - 1].y)) { in hull()
200 lLower[lLowerSize - 2] = lLower[lLowerSize - 1]; in hull()
201 lLowerSize--; in hull()
206 const int total = lUpperSize + lLowerSize - 2; in hull()
213 for (int i = 1; i < lLowerSize - 1; i++) { in hull()