| 76 | } |
| 77 | |
| 78 | vector<PolyLine2f> calcIntersection( const vector<PolyLine2f> &a, vector<PolyLine2f> &b ) |
| 79 | { |
| 80 | return calcClipOp( ClipperLib::ctIntersection, a, b ); |
| 81 | } |
| 82 | |
| 83 | vector<PolyLine2f> calcUnion( const vector<PolyLine2f> &a, vector<PolyLine2f> &b ) |
| 84 | { |
no test coverage detected