Path: use verbose mode for fromShapes() to get relative arc centers

This commit is contained in:
sliptonic
2017-04-24 09:07:27 -05:00
committed by wmayer
parent ac9a05368b
commit c7acb2db3d

View File

@@ -158,9 +158,9 @@ class ObjectContour:
lshapes.append(c)
if start is None:
pp = Path.fromShapes(lshapes)
pp = Path.fromShapes(lshapes, verbose=False)
else:
pp = Path.fromShapes(lshapes, start)
pp = Path.fromShapes(lshapes, start, verbose=False)
return pp