summaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/test.py b/test.py
new file mode 100644
index 0000000..5a0de45
--- /dev/null
+++ b/test.py
@@ -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')