aboutsummaryrefslogtreecommitdiff
path: root/supports/runner.scad
diff options
context:
space:
mode:
Diffstat (limited to 'supports/runner.scad')
-rw-r--r--supports/runner.scad10
1 files changed, 5 insertions, 5 deletions
diff --git a/supports/runner.scad b/supports/runner.scad
index b621a8e..72a2751 100644
--- a/supports/runner.scad
+++ b/supports/runner.scad
@@ -26,12 +26,12 @@ This file can also be copied, edited, and compiled with the desired arguments.
*/
// OpenSCAD's default unit is millimeter
-module runner (length, width, frequency=10, thickness=1, height=0.1) {
- for (i = [0:frequency:width]) {
+module runner (length, width, spacing=10, thickness=1, height=0.1) {
+ for (i = [0:spacing:width]) {
translate([0, i, 0])
cube([length+thickness, thickness, height]);
}
- for (i = [0:frequency:length]) {
+ for (i = [0:spacing:length]) {
translate([i, 0, 0])
cube([thickness, width+thickness, height]);
}
@@ -43,14 +43,14 @@ module runner (length, width, frequency=10, thickness=1, height=0.1) {
length = 150;
width = 100;
-frequency = 10;
+spacing = 10;
thickness = 1;
height = 0.1;
runner(
length = length,
width = width,
- frequency = frequency,
+ spacing = spacing,
thickness = thickness,
height = height
);