From df720b99de9defdef29f94181ffdd1a838a69692 Mon Sep 17 00:00:00 2001 From: Alex Matulich Date: Tue, 10 Dec 2024 09:13:00 -0800 Subject: [PATCH] Removed another trailing comma in let() --- shapes2d.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shapes2d.scad b/shapes2d.scad index 1977070..a5a647f 100644 --- a/shapes2d.scad +++ b/shapes2d.scad @@ -2096,7 +2096,7 @@ function _squircle_se(size, squareness) = [ theta = a + fgsq*sin(4*a)*30/PI, // tighter angle steps at corners x = cos(theta), y = sin(theta), - r = (abs(x)^n + abs(y)^n)^(1/n), // superellipse + r = (abs(x)^n + abs(y)^n)^(1/n) // superellipse //r = _superformula(theta=theta, m1=4,m2=4,n1=n,n2=n,n3=n,a=1,b=1) ) [ra*x, rb*y] / r ];