| 439 | } |
| 440 | |
| 441 | inline bool IsVerySmallTriangle(const OutPt& op) |
| 442 | { |
| 443 | return op.next->next == op.prev && |
| 444 | (PtsReallyClose(op.prev->pt, op.next->pt) || |
| 445 | PtsReallyClose(op.pt, op.next->pt) || |
| 446 | PtsReallyClose(op.pt, op.prev->pt)); |
| 447 | } |
| 448 | |
| 449 | inline bool IsValidClosedPath(const OutPt* op) |
| 450 | { |
no test coverage detected