| 101 | //------------------------------------------------------------------------------ |
| 102 | |
| 103 | bool PointIsVertex(const IntPoint &pt, PolyPt *pp) |
| 104 | { |
| 105 | PolyPt *pp2 = pp; |
| 106 | do |
| 107 | { |
| 108 | if (PointsEqual(pp2->pt, pt)) return true; |
| 109 | pp2 = pp2->next; |
| 110 | } |
| 111 | while (pp2 != pp); |
| 112 | return false; |
| 113 | } |
| 114 | //------------------------------------------------------------------------------ |
| 115 | |
| 116 | bool PointInPolygon(const IntPoint &pt, PolyPt *pp) |
no test coverage detected