mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
added clean=False to avoid crashes
This commit is contained in:
parent
bb2a6d20b6
commit
20edd2de84
1 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ ex26_target = ex26_target + mirror(ex26_target, about=Plane.XZ)
|
|||
|
||||
rect = Rectangle(rad, rev)
|
||||
|
||||
ex26 = extrude(rect, until=Until.LAST, target=ex26_target)
|
||||
ex26 = extrude(rect, until=Until.LAST, target=ex26_target, clean=False)
|
||||
|
||||
# Extrude next
|
||||
circle = Pos(0, rev) * Circle(rad)
|
||||
|
|
@ -46,7 +46,7 @@ extrusion27 = extrude(rect, until=Until.NEXT, target=ex27, mode=Mode.ADD)
|
|||
# Extrude next both
|
||||
ex28 = Rot(0, 90, 0) * Torus(25, 5)
|
||||
rect = Rectangle(rad, rev)
|
||||
extrusion28 = extrude(rect, until=Until.NEXT, target=ex28, both=True)
|
||||
extrusion28 = extrude(rect, until=Until.NEXT, target=ex28, both=True, clean=False)
|
||||
|
||||
if "show_object" in locals():
|
||||
show_object(simple.translate((-15, 0, 0)), name="simple pending extrude")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue