| 1291 | } |
| 1292 | |
| 1293 | struct CmpEdges |
| 1294 | { |
| 1295 | bool operator ()(const PolyEdge& e1, const PolyEdge& e2) |
| 1296 | { |
| 1297 | return e1.y0 - e2.y0 ? e1.y0 < e2.y0 : |
| 1298 | e1.x - e2.x ? e1.x < e2.x : e1.dx < e2.dx; |
| 1299 | } |
| 1300 | }; |
| 1301 | |
| 1302 | /**************** helper macros and functions for sequence/contour processing ***********/ |
| 1303 |
no outgoing calls
no test coverage detected