| 320 | |
| 321 | |
| 322 | bool IntersectListSort(const IntersectNode& a, const IntersectNode& b) |
| 323 | { |
| 324 | //note different inequality tests ... |
| 325 | return (a.pt.y == b.pt.y) ? (a.pt.x < b.pt.x) : (a.pt.y > b.pt.y); |
| 326 | } |
| 327 | |
| 328 | |
| 329 | inline void SetSides(OutRec& outrec, Active& start_edge, Active& end_edge) |
nothing calls this directly
no outgoing calls
no test coverage detected