| 101 | ///////////////////////////////////////////////////////////////////////////// |
| 102 | |
| 103 | static bool VertexListSort(const Vertex2* a, const Vertex2* b) |
| 104 | { |
| 105 | return (a->pt.y == b->pt.y) ? (a->pt.x < b->pt.x) : (a->pt.y > b->pt.y); |
| 106 | } |
| 107 | |
| 108 | static bool EdgeListSort(const Edge* a, const Edge* b) |
| 109 | { |
nothing calls this directly
no outgoing calls
no test coverage detected