removed alg123d

This commit is contained in:
Bernhard 2023-03-21 20:36:39 +01:00
parent 7903e4f640
commit 2c652ff978
11 changed files with 19 additions and 29 deletions

View file

@ -1,6 +1,4 @@
from build123d import *
from build123d.part_operations import *
import alg123d as ad
pipes = Rot(10, 20, 30) * Box(10, 10, 10)
@ -12,7 +10,7 @@ for plane in [Plane(f) for f in pipes.faces()]:
last = pipes.edges()
pipes += extrude(pipe, amount=10)
pipes = ad.fillet(pipes, pipes.edges() - last, radius=0.2)
pipes = fillet(pipes, pipes.edges() - last, radius=0.2)
if "show_object" in locals():
show_object(pipes, name="intersecting pipes")