| 4303 | //------------------------------------------------------------------------------ |
| 4304 | |
| 4305 | void SimplifyPolygons(const Paths &in_polys, Paths &out_polys, PolyFillType fillType) |
| 4306 | { |
| 4307 | Clipper c; |
| 4308 | c.StrictlySimple(true); |
| 4309 | c.AddPaths(in_polys, ptSubject, true); |
| 4310 | c.Execute(ctUnion, out_polys, fillType, fillType); |
| 4311 | } |
| 4312 | //------------------------------------------------------------------------------ |
| 4313 | |
| 4314 | void SimplifyPolygons(Paths &polys, PolyFillType fillType) |
no test coverage detected