| 4185 | //------------------------------------------------------------------------------ |
| 4186 | |
| 4187 | void SimplifyPolygon(const Path& in_poly, Paths& out_polys, PolyFillType fillType) |
| 4188 | { |
| 4189 | Clipper c; |
| 4190 | c.StrictlySimple(true); |
| 4191 | c.AddPath(in_poly, ptSubject, true); |
| 4192 | c.Execute(ctUnion, out_polys, fillType, fillType); |
| 4193 | } |
| 4194 | //------------------------------------------------------------------------------ |
| 4195 | |
| 4196 | void SimplifyPolygons(const Paths& in_polys, Paths& out_polys, PolyFillType fillType) |
no test coverage detected