Example #1
0
 void Sort() {
   
   if(!needToSort)
     return;
 
   topLefts.sort(TopToBottomLeftToRightSort());
   
   needToSort = false;
 }