diff options
author | Christian Hodgden <chrhodgden@gmail.com> | 2024-07-30 14:27:54 -0500 |
---|---|---|
committer | Christian Hodgden <chrhodgden@gmail.com> | 2024-07-30 14:27:54 -0500 |
commit | c3eb2450d1a6d277cfe7d1c5e3d316aa052dbad1 (patch) | |
tree | d18de86a8dd8c7495c9af189bf703b0f4006ede9 | |
parent | 213d689298e8469c490b8c9cd089a2d363e7a01d (diff) |
increased runner height
-rw-r--r-- | supports/runner.scad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/supports/runner.scad b/supports/runner.scad index 72a2751..bb1f54e 100644 --- a/supports/runner.scad +++ b/supports/runner.scad @@ -26,7 +26,7 @@ This file can also be copied, edited, and compiled with the desired arguments. */ // OpenSCAD's default unit is millimeter -module runner (length, width, spacing=10, thickness=1, height=0.1) { +module runner (length, width, spacing=10, thickness=1, height=0.2) { for (i = [0:spacing:width]) { translate([0, i, 0]) cube([length+thickness, thickness, height]); |