diff options
author | Christian Hodgden <chrhodgden@gmail.com> | 2024-07-29 09:06:38 -0500 |
---|---|---|
committer | Christian Hodgden <chrhodgden@gmail.com> | 2024-07-29 09:06:38 -0500 |
commit | bb4175587bea88ea1002d5e1bc09f8244f0f2f6b (patch) | |
tree | 807542f6a4854b83ced971b9e4336bd5c9368273 /supports | |
parent | 52427a6c39e4eebcc71888a8e4aa9d628eea7a3f (diff) |
supports>runner: changed argument name to spacing
Diffstat (limited to 'supports')
-rw-r--r-- | supports/runner.scad | 10 |
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 ); |