| 447 | } |
| 448 | |
| 449 | inline bool IsValidClosedPath(const OutPt* op) |
| 450 | { |
| 451 | return op && (op->next != op) && (op->next != op->prev) && |
| 452 | !IsVerySmallTriangle(*op); |
| 453 | } |
| 454 | |
| 455 | inline bool OutrecIsAscending(const Active* hotEdge) |
| 456 | { |
no test coverage detected