summaryrefslogtreecommitdiffstats
path: root/cad/assembly.py
blob: 32c820259d4cdbb802911f5d5211010525738124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!venv/bin/python3

from solid import *
from solid.utils import *

def main():
    d = difference()(
        cube(10),
        sphere(15)
    )

    scad_render_to_file(d, 'test.scad')