| # | Line 53 | Line 53 | polySnip(const Vert2_list *contour, int u, int v, int | |
|---|---|---|
| 53 | ||
| 54 | cross = ((Bx - Ax)*(Cy - Ay)) - ((By - Ay)*(Cx - Ax)); | |
| 55 | if (cross < EPSILON) | |
| 56 | < | return cross < -EPSILON ? -1 : false; /* Negative if colinear points */ |
| 56 | > | return cross > -EPSILON ? -1 : false; /* Negative if colinear points */ |
| 57 | ||
| 58 | for (p=0;p<n;p++) | |
| 59 | { | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |