| 3123 | //------------------------------------------------------------------------------ |
| 3124 | |
| 3125 | int PointCount(OutPt* Pts) |
| 3126 | { |
| 3127 | if (!Pts) |
| 3128 | return 0; |
| 3129 | int result = 0; |
| 3130 | OutPt* p = Pts; |
| 3131 | do { |
| 3132 | result++; |
| 3133 | p = p->Next; |
| 3134 | } while (p != Pts); |
| 3135 | return result; |
| 3136 | } |
| 3137 | //------------------------------------------------------------------------------ |
| 3138 | |
| 3139 | void Clipper::BuildResult(Paths& polys) |
no outgoing calls
no test coverage detected