Guest User

Untitled

a guest
Jun 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1.         for (; i != enumerated.end(); ++i) {
  2.             if (**i < **j) {
  3.                 painter.drawPoint(**i);
  4.             } else {
  5.                 while (**i > **j) {
  6.                     notInRect.push_back(*j);
  7.                     ++j;
  8.                 }
  9.                 while (**i == **j)
  10.                     ++j;
  11.             }
  12.         }
Add Comment
Please, Sign In to add comment