| 107 | } |
| 108 | |
| 109 | std::vector<cinder::PolyLine2f> calcRoundOffset( const std::vector<cinder::PolyLine2f> &poly, float offset, double arcTolerance ) |
| 110 | { |
| 111 | return calcOffsetOp( ClipperLib::jtRound, poly, offset, 0, arcTolerance ); |
| 112 | } |
| 113 | |
| 114 | std::vector<cinder::PolyLine2f> calcMiterOffset( const std::vector<cinder::PolyLine2f> &poly, float offset, double miterLimit ) |
| 115 | { |
no test coverage detected