basic_proto

This commit is contained in:
bklronin
2024-05-09 19:27:42 +02:00
parent 690b0a3880
commit b391e871d6
16 changed files with 701 additions and 4 deletions

8
meshtest.py Normal file
View File

@@ -0,0 +1,8 @@
from sdf import *
f = sphere(1) & box(0.9)
c = cylinder(0.3)
f -= c.orient(X) | c.orient(Y) | c.orient(Z)
stl_object = None
f.save("out.stl", step=0.05)