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

from solid import *
from solid.utils import *

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

scad_render_to_file(d, 'test.scad')