Removed sequences from operations

This commit is contained in:
Roger Maitland 2023-03-30 10:33:14 -04:00
parent 4ac722feea
commit d3dc0e0b15
106 changed files with 3653 additions and 3566 deletions

View file

@ -10,7 +10,7 @@ for plane in [Plane(f) for f in pipes.faces()]:
last = pipes.edges()
pipes += extrude(pipe, amount=10)
pipes = fillet(*pipes.edges() - last, radius=0.2)
pipes = fillet(pipes.edges() - last, 0.2)
if "show_object" in locals():
show_object(pipes, name="intersecting pipes")