aboutsummaryrefslogtreecommitdiff
path: root/supports
diff options
context:
space:
mode:
authorChristian Hodgden <chrhodgden@gmail.com>2024-07-27 21:28:30 +0000
committerChristian Hodgden <chrhodgden@gmail.com>2024-07-27 21:28:30 +0000
commit2a566ef3e0a31254a12586e7828e5ca90f4bc3fd (patch)
tree02bf6aeb1c70ee7b986818bba01517e5d5044a13 /supports
parent96c0e7f656173cf59ade86138de0d7cb6c271353 (diff)
added runner
Diffstat (limited to 'supports')
-rw-r--r--supports/runner_generator.scad18
1 files changed, 18 insertions, 0 deletions
diff --git a/supports/runner_generator.scad b/supports/runner_generator.scad
new file mode 100644
index 0000000..c33f680
--- /dev/null
+++ b/supports/runner_generator.scad
@@ -0,0 +1,18 @@
+
+use <../lib/runner.scad>;
+
+// OpenSCAD's default unit is millimeter
+
+length = 100;
+width = 150;
+frequency = 10;
+thickness = 1;
+height = 0.1;
+
+runner(
+ length = length,
+ width = width,
+ frequency = frequency,
+ thickness = thickness,
+ height = height
+);