| 86 | } |
| 87 | |
| 88 | vector<PolyLine2f> calcDifference( const vector<PolyLine2f> &subject, vector<PolyLine2f> &clip ) |
| 89 | { |
| 90 | return calcClipOp( ClipperLib::ctDifference, subject, clip ); |
| 91 | } |
| 92 | |
| 93 | vector<PolyLine2f> calcXor( const vector<PolyLine2f> &a, vector<PolyLine2f> &b ) |
| 94 | { |
no test coverage detected