Guest User

Untitled

a guest
Nov 16th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. double an = Vector(vertices[i1], vertices[i1 + 1]).vec(Vector(pol2[i2], pol2[i2 + 1]));
  2.                 if (abs(an) < EPS)
  3.                     ++i1, ++i2;
  4.                 else if (an > 0)
  5.                     ++i1;
  6.                 else
  7.                     ++i2;
Advertisement
Add Comment
Please, Sign In to add comment