From c79608737236b18de747623ce4f767ab451a36b5 Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Mon, 17 Jan 2022 00:19:11 -0800 Subject: [PATCH] Bugfix for teardrop changes to cuboid() --- shapes3d.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shapes3d.scad b/shapes3d.scad index 603e8d2..a80a81c 100644 --- a/shapes3d.scad +++ b/shapes3d.scad @@ -386,8 +386,8 @@ module cuboid( tsphere(r=rounding, $fn=sides); } else { intersection() { - xtcyl(r=rounding, h=rounding*2, $fn=sides); - ytcyl(r=rounding, h=rounding*2, $fn=sides); + xtcyl(r=rounding, l=rounding*2, $fn=sides); + ytcyl(r=rounding, l=rounding*2, $fn=sides); cyl(r=rounding, h=rounding*2, $fn=sides); } }