From 0f5fb100cce9ff251195c030380d2518f8fc63ea Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 15 Jun 2021 20:32:49 +0800 Subject: [PATCH] change params --- examples/spiral_polygons/fidget_star.scad | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/spiral_polygons/fidget_star.scad b/examples/spiral_polygons/fidget_star.scad index 34a68b7c..99079fe7 100644 --- a/examples/spiral_polygons/fidget_star.scad +++ b/examples/spiral_polygons/fidget_star.scad @@ -3,11 +3,11 @@ use ; r1 = 12; r2 = 8; n = 6; -number_of_stars = 10; +number_of_stars = 2; height = 20; -thickness = 1.5; -spacing = 0.5 * thickness; -slope = 0.375; +thickness = 1; +spacing = thickness; +slope = 0.35; /* r1 = 12; @@ -15,9 +15,9 @@ r2 = 9.55; n = 8; number_of_stars = 10; height = 20; -thickness = 1.5; -spacing = 0.5 * thickness; -slope = 0.25; +thickness = 1; +spacing = thickness; +slope = 0.26; */ fidget_star(r1, r2, n, number_of_stars, height, thickness, spacing, slope);