From 5e0bdc068ba8b687ee50602cc1e0aac9c03bba0c Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Fri, 27 Sep 2019 08:42:12 +0800 Subject: [PATCH] format --- examples/stereographic_chars.scad | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/stereographic_chars.scad b/examples/stereographic_chars.scad index 5f10973b..ad33b339 100644 --- a/examples/stereographic_chars.scad +++ b/examples/stereographic_chars.scad @@ -16,7 +16,8 @@ module stereographic_projection_chars(txt, square_size, font_name, font_size) { offset_y = square_size * 0.8 * (i == 0 || i == 1 ? 1 : -1) + frame_width / 2 * (i == 0 || i == 1 ? -1 : 1); - translate([offset_x, offset_y, 0]) intersection() { + translate([offset_x, offset_y, 0]) + intersection() { union() { rotate(-135 - 90 * i) scale([1.15, 1, 1]) text(txt[i], size = font_size, font = font_name, valign = "center", halign = "center");