Fixed Perl bindings of Clipper after Clipper was adapted to Slic3r::Point

This commit is contained in:
Vojtech Bubnik 2021-04-23 11:02:16 +02:00
parent ea26581959
commit 1d588dad90
4 changed files with 13 additions and 13 deletions

View file

@ -79,9 +79,9 @@ Polyline::rotate(angle, center_sv)
THIS->rotate(angle, center);
Polygons
Polyline::grow(delta, joinType = ClipperLib::jtSquare, miterLimit = 3)
Polyline::grow(delta, joinType = Slic3r::ClipperLib::jtSquare, miterLimit = 3)
const float delta
ClipperLib::JoinType joinType
Slic3r::ClipperLib::JoinType joinType
double miterLimit
CODE:
RETVAL = offset(*THIS, delta, joinType, miterLimit);