From f5402b8246b15fcf7b9c536f77257416aafd99ac Mon Sep 17 00:00:00 2001 From: Adrian Mariano Date: Mon, 3 Mar 2025 20:15:39 -0500 Subject: [PATCH] bugfix --- shapes3d.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapes3d.scad b/shapes3d.scad index 50e7dc07..b014fe28 100644 --- a/shapes3d.scad +++ b/shapes3d.scad @@ -1946,7 +1946,7 @@ function _cyl_path( assert(is_finite(round1), "rounding1 must be a number if given.") assert(is_finite(round2), "rounding2 must be a number if given.") assert(chamf1r <= r1, "chamfer1 is larger than the r1 radius of the cylinder.") - assert(chamf2r <= r2, "chamfer2 is larger than the r2 radius of the cylinder.",chamf2r) + assert(chamf2r <= r2, "chamfer2 is larger than the r2 radius of the cylinder.") assert(roundlen1 <= r1, "size of rounding1 is larger than the r1 radius of the cylinder.") assert(roundlen2 <= r2, "size of rounding2 is larger than the r2 radius of the cylinder.") assert(dy1+dy2 <= facelen, "Chamfers/roundings don't fit on the cylinder/cone. They exceed the length of the cylinder/cone face.")