5 lines
121 B
Python
5 lines
121 B
Python
from sdf import *
|
|
f = box(1).translate((1,1,-0.2))
|
|
c = hexagon(1).extrude(1).orient([0,0,-1])
|
|
c = f & c
|
|
f.save("out.stl") |