| 605 | //------------------------------------------------------------------------------ |
| 606 | |
| 607 | inline void SwapPolyIndexes(TEdge &Edge1, TEdge &Edge2) |
| 608 | { |
| 609 | int OutIdx = Edge1.OutIdx; |
| 610 | Edge1.OutIdx = Edge2.OutIdx; |
| 611 | Edge2.OutIdx = OutIdx; |
| 612 | } |
| 613 | //------------------------------------------------------------------------------ |
| 614 | |
| 615 | inline cInt TopX(TEdge &edge, const cInt currentY) |