| 3182 | //------------------------------------------------------------------------------ |
| 3183 | |
| 3184 | int PointCount(OutPt *Pts) |
| 3185 | { |
| 3186 | if (!Pts) return 0; |
| 3187 | int result = 0; |
| 3188 | OutPt* p = Pts; |
| 3189 | do |
| 3190 | { |
| 3191 | result++; |
| 3192 | p = p->Next; |
| 3193 | } |
| 3194 | while (p != Pts); |
| 3195 | return result; |
| 3196 | } |
| 3197 | //------------------------------------------------------------------------------ |
| 3198 | |
| 3199 | void Clipper::BuildResult(Paths &polys) |
no outgoing calls
no test coverage detected