| 4287 | //------------------------------------------------------------------------------ |
| 4288 | |
| 4289 | void ReversePaths(Paths& p) |
| 4290 | { |
| 4291 | for (Paths::size_type i = 0; i < p.size(); ++i) |
| 4292 | ReversePath(p[i]); |
| 4293 | } |
| 4294 | //------------------------------------------------------------------------------ |
| 4295 | |
| 4296 | void SimplifyPolygon(const Path &in_poly, Paths &out_polys, PolyFillType fillType) |
no test coverage detected