fluencyCAD/fluency.py
2023-12-30 16:55:01 +01:00

8 lines
138 B
Python

from sdf import *
f = sphere(1) & box(0.9)
c = cylinder(0.3)
f -= c.orient(X) | c.orient(Y) | c.orient(Z)
f.save('out.stl', step=0.001)