From 8a2667b8f15bcf107b7f85e51ccfa68ed967b636 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Thu, 26 Sep 2019 08:19:42 +0800 Subject: [PATCH] format --- src/rounded_extrude.scad | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/rounded_extrude.scad b/src/rounded_extrude.scad index ed8093d2..18e6f3f6 100644 --- a/src/rounded_extrude.scad +++ b/src/rounded_extrude.scad @@ -33,15 +33,16 @@ module rounded_extrude(size, round_r, angle = 90, twist = 0, convexity = 10) { sy = (d_leng * 2 + wy) / wy; translate([0, 0, pre_h]) - rotate(-twist_step * (i - 1)) - linear_extrude( - h, - slices = 1, - scale = [sx, sy], - convexity = convexity, - twist = twist_step - ) scale([wx / x, wy / y]) - children(); + rotate(-twist_step * (i - 1)) + linear_extrude( + h, + slices = 1, + scale = [sx, sy], + convexity = convexity, + twist = twist_step + ) + scale([wx / x, wy / y]) + children(); test_rounded_extrude_data(i, wx, wy, pre_h, sx, sy);