From 892aa245dac902844717fb72a15a031685e93e14 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Mon, 18 Apr 2022 10:38:49 +0800 Subject: [PATCH] format --- src/shape_ellipse.scad | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/shape_ellipse.scad b/src/shape_ellipse.scad index 92e6248a..5a6c6271 100644 --- a/src/shape_ellipse.scad +++ b/src/shape_ellipse.scad @@ -13,10 +13,10 @@ use <__comm__/__frags.scad>; function shape_ellipse(axes) = let( frags = __frags(axes[0]), - step_a = 360 / frags, - shape_pts = [ - for(i = [0:frags - 1]) - let(a = i * step_a) - [axes[0] * cos(a), axes[1] * sin(a)] - ] - ) shape_pts; \ No newline at end of file + step_a = 360 / frags + ) + [ + for(i = [0:frags - 1]) + let(a = i * step_a) + [axes[0] * cos(a), axes[1] * sin(a)] + ]; \ No newline at end of file