| 4294 | //------------------------------------------------------------------------------ |
| 4295 | |
| 4296 | void SimplifyPolygon(const Path &in_poly, Paths &out_polys, PolyFillType fillType) |
| 4297 | { |
| 4298 | Clipper c; |
| 4299 | c.StrictlySimple(true); |
| 4300 | c.AddPath(in_poly, ptSubject, true); |
| 4301 | c.Execute(ctUnion, out_polys, fillType, fillType); |
| 4302 | } |
| 4303 | //------------------------------------------------------------------------------ |
| 4304 | |
| 4305 | void SimplifyPolygons(const Paths &in_polys, Paths &out_polys, PolyFillType fillType) |
no test coverage detected