| 754 | //------------------------------------------------------------------------------ |
| 755 | |
| 756 | inline void ReverseHorizontal(TEdge &e) |
| 757 | { |
| 758 | //swap horizontal edges' Top and Bottom x's so they follow the natural |
| 759 | //progression of the bounds - ie so their xbots will align with the |
| 760 | //adjoining lower edge. [Helpful in the ProcessHorizontal() method.] |
| 761 | std::swap(e.Top.X, e.Bot.X); |
| 762 | #ifdef use_xyz |
| 763 | std::swap(e.Top.Z, e.Bot.Z); |
| 764 | #endif |
| 765 | } |
| 766 | //------------------------------------------------------------------------------ |
| 767 | |
| 768 | void SwapPoints(IntPoint &pt1, IntPoint &pt2) |
no test coverage detected