Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 1284 of file monoTriangulation.cc.
Referenced by findNeck(), sampleCompLeft(), and sampleCompRight().
{ Int i; if(startIndex > endIndex) return startIndex-1; else if(array[startIndex][1] < v) return startIndex-1; else //now array[startIndex][1] >= v { for(i=startIndex+1; i<=endIndex; i++) { if(array[i][1] < v) break; } return i-1; } }