From bb4175587bea88ea1002d5e1bc09f8244f0f2f6b Mon Sep 17 00:00:00 2001 From: Christian Hodgden Date: Mon, 29 Jul 2024 09:06:38 -0500 Subject: supports>runner: changed argument name to spacing --- supports/runner.scad | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'supports') 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 ); -- cgit v1.2.3