Make large parts separate paths
This commit is contained in:
parent
14c6ca1a31
commit
ecb2dd9751
3
boxes.py
3
boxes.py
|
@ -870,6 +870,7 @@ class Boxes:
|
||||||
self.hexHolesPlate(x-2*holesMargin, y-2*holesMargin, r,
|
self.hexHolesPlate(x-2*holesMargin, y-2*holesMargin, r,
|
||||||
settings=holesSettings)
|
settings=holesSettings)
|
||||||
self.ctx.restore()
|
self.ctx.restore()
|
||||||
|
self.ctx.stroke()
|
||||||
self.move(overallwidth, overallheight, move)
|
self.move(overallwidth, overallheight, move)
|
||||||
|
|
||||||
def surroundingWall(self, x, y, r, h,
|
def surroundingWall(self, x, y, r, h,
|
||||||
|
@ -933,6 +934,7 @@ class Boxes:
|
||||||
self.corner(90)
|
self.corner(90)
|
||||||
|
|
||||||
self.ctx.restore()
|
self.ctx.restore()
|
||||||
|
self.ctx.stroke()
|
||||||
|
|
||||||
self.move(overallwidth, overallheight, move)
|
self.move(overallwidth, overallheight, move)
|
||||||
|
|
||||||
|
@ -969,6 +971,7 @@ class Boxes:
|
||||||
holesMargin+edges[0].width())
|
holesMargin+edges[0].width())
|
||||||
self.hexHolesRectangle(x-2*holesMargin, y-2*holesMargin)
|
self.hexHolesRectangle(x-2*holesMargin, y-2*holesMargin)
|
||||||
self.ctx.restore()
|
self.ctx.restore()
|
||||||
|
self.ctx.stroke()
|
||||||
|
|
||||||
self.move(overallwidth, overallheight, move)
|
self.move(overallwidth, overallheight, move)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue