From 11ebe2225db09bdd45089e4ebf5c1037243bf45c Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Tue, 18 May 2021 23:14:34 +0100 Subject: [PATCH] Removed spurious convexity in difference from rounded_polygon(). --- utils/rounded_polygon.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/rounded_polygon.scad b/utils/rounded_polygon.scad index dd4b756..b6e519e 100644 --- a/utils/rounded_polygon.scad +++ b/utils/rounded_polygon.scad @@ -77,7 +77,7 @@ module rounded_polygon(points, _tangents = undef) { //! Draw the rounded polygon indices = [0 : len - 1]; tangents = [ for (t = _tangents ? _tangents : rounded_polygon_tangents(points)) each [t.x, t.y] ]; - difference(convexity = points) { + difference() { union() { for(i = indices) if(points[i][2] > 0)