From 249022a2715803e6b0a23bd8bf8365e2820cf16a Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Fri, 15 Mar 2019 15:39:01 +0800 Subject: [PATCH] remove center parameter --- src/line2d.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/line2d.scad b/src/line2d.scad index 6b68147d..d1632480 100644 --- a/src/line2d.scad +++ b/src/line2d.scad @@ -33,7 +33,7 @@ module line2d(p1, p2, width, p1Style = "CAP_SQUARE", p2Style = "CAP_SQUARE") { module round_end(point) { translate(point) rotate(atan_angle) - circle(half_width, center = true, $fn = frags); + circle(half_width, $fn = frags); // hook for testing test_line2d_cap(point, "CAP_ROUND");