| 112 | } |
| 113 | |
| 114 | std::vector<cinder::PolyLine2f> calcMiterOffset( const std::vector<cinder::PolyLine2f> &poly, float offset, double miterLimit ) |
| 115 | { |
| 116 | return calcOffsetOp( ClipperLib::jtMiter, poly, offset, miterLimit, 0 ); |
| 117 | } |
| 118 | |
| 119 | std::vector<cinder::PolyLine2f> calcSquareOffset( const std::vector<cinder::PolyLine2f> &poly, float offset ) |
| 120 | { |
no test coverage detected