| 1302 | } |
| 1303 | |
| 1304 | void simplifyPaths(ClipperLib::Paths& paths) |
| 1305 | { |
| 1306 | ClipperLib::CleanPolygons(paths, 1.2f); |
| 1307 | ClipperLib::SimplifyPolygons(paths); |
| 1308 | ClipperLib::ReversePaths(paths); |
| 1309 | removeDegeneratePaths(paths); |
| 1310 | } |
| 1311 | |
| 1312 | // Returns the number of polygons outside of the clip area. |
| 1313 | void clipPolygons(const BPolygon* subject, const BPolygon* clip, std::vector<BPolygon>& outPoly, BoolMode boolMode) |
no test coverage detected