From 179804d9362c089a43186d2eb324f0e9a6c6bf21 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Wed, 16 Jun 2021 11:59:33 +0800 Subject: [PATCH] remove base ring --- examples/spiral_polygons/fidget_star.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/spiral_polygons/fidget_star.scad b/examples/spiral_polygons/fidget_star.scad index b9a1823e..9b7e86ca 100644 --- a/examples/spiral_polygons/fidget_star.scad +++ b/examples/spiral_polygons/fidget_star.scad @@ -105,7 +105,7 @@ module fidget_star(model, r1, r2, n, number_of_stars, height, thickness, spacing mirror([0, 0, 1]) base_ring(); - translate([0, 0, -base_height + ring_thickness]) + *translate([0, 0, -base_height + ring_thickness]) mirror([0, 0, 1]) scale([1, 1, 1.5]) base_ring(); @@ -114,11 +114,11 @@ module fidget_star(model, r1, r2, n, number_of_stars, height, thickness, spacing d = rs1[number_of_stars] * s[number_of_stars]; off_h = -base_height + ring_thickness; a = 180 / n; - stick_r = thickness * 2; + stick_r = thickness * 5; stick_h = base_height - ring_thickness; for(i = [0:n - 1]) { rotate(360 / n * i) - translate([d, 0, off_h]) + translate([d + thickness * 1.25, 0, off_h]) rotate(a) { linear_extrude(stick_h) circle(stick_r, $fn = n);