summaryrefslogtreecommitdiffstats
path: root/test.py
blob: 5a0de458dd117695416d1bd5a258e974e7547ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3

from solid import *
from solid.utils import *

d = difference()(
    cube(10),
    sphere(15)
)

scad_render_to_file(d, 'test.scad')