From 78f7b0b4aaef60c2b33eeedf0dc94a47671d9893 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Thu, 26 Sep 2019 08:17:30 +0800 Subject: [PATCH] format --- src/line3d.scad | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/line3d.scad b/src/line3d.scad index ae5f9cbf..a1a7eee0 100644 --- a/src/line3d.scad +++ b/src/line3d.scad @@ -29,8 +29,8 @@ module line3d(p1, p2, thickness, p1Style = "CAP_CIRCLE", p2Style = "CAP_CIRCLE") module cap_with(p) { translate(p) - rotate(angles) - children(); + rotate(angles) + children(); } module cap_butt() { @@ -46,8 +46,8 @@ module line3d(p1, p2, thickness, p1Style = "CAP_CIRCLE", p2Style = "CAP_CIRCLE") if(style == "CAP_CIRCLE") { cap_leng = r / 1.414; cap_with(p) - linear_extrude(cap_leng * 2, center = true) - circle(r, $fn = frags); + linear_extrude(cap_leng * 2, center = true) + circle(r, $fn = frags); // hook for testing test_line3d_cap(p, r, frags, cap_leng, angles);