Advertisement
vilmosnagy

Untitled

Oct 10th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1.  while((!isEqual(nextPoint.x,minimum.x)) &&(!isEqual(nextPoint.y,minimum.y)))
  2. {
  3. Point temp = nextPoint;
  4. nextPoint = nextPointSelect(notToLookIndex,nextPoint,last);
  5. convexPoints[convexSize++] = nextPoint;
  6. last = temp;
  7.  
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement