From a01c2cab0a265de862a3c80688625c58ab5ae30a Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Fri, 10 Mar 2023 16:59:14 -0800 Subject: [PATCH] Fixed consecutive commas error. --- shapes2d.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapes2d.scad b/shapes2d.scad index 75b3429..5fd455f 100644 --- a/shapes2d.scad +++ b/shapes2d.scad @@ -914,7 +914,7 @@ module right_triangle(size=[1,1], center, anchor, spin=0) { // trapezoid(h=30, w1=100, ang=[66,44],rounding=-5, atype="perim",flip=true) show_anchors(); // Example(2D): Called as Function // stroke(closed=true, trapezoid(h=30, w1=40, w2=20)); -function trapezoid(h, w1, w2, ang, shift, chamfer=0, rounding=0, flip=false, anchor=CENTER, spin=0, ,atype="box", _return_override, angle) = +function trapezoid(h, w1, w2, ang, shift, chamfer=0, rounding=0, flip=false, anchor=CENTER, spin=0,atype="box", _return_override, angle) = assert(is_undef(angle), "The angle parameter has been replaced by ang, which specifies trapezoid interior angle") assert(is_undef(h) || is_finite(h)) assert(is_undef(w1) || is_finite(w1))