diff options
author | VG <vg@devys.org> | 2016-12-04 16:01:40 +0100 |
---|---|---|
committer | VG <vg@devys.org> | 2016-12-04 16:01:40 +0100 |
commit | bd20b12b5030415c9567ae4266897e71fd8eba93 (patch) | |
tree | 447297c2e38f552d3641be1c4d7802d375095cbf /test.py | |
download | catcad-bd20b12b5030415c9567ae4266897e71fd8eba93.tar.gz catcad-bd20b12b5030415c9567ae4266897e71fd8eba93.tar.bz2 catcad-bd20b12b5030415c9567ae4266897e71fd8eba93.zip |
first commit
Diffstat (limited to 'test.py')
-rw-r--r-- | test.py | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#!/usr/bin/python3 + +from solid import * +from solid.utils import * + +d = difference()( + cube(10), + sphere(15) +) + +scad_render_to_file(d, 'test.scad') |