From 9f44991ccf1ddfb1c7757d443bdecf6244c6cf1a Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 15 Jun 2021 20:36:57 +0800 Subject: [PATCH] change params --- examples/spiral_polygons/fidget_polygon.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/spiral_polygons/fidget_polygon.scad b/examples/spiral_polygons/fidget_polygon.scad index b7d34cb5..21f3469f 100644 --- a/examples/spiral_polygons/fidget_polygon.scad +++ b/examples/spiral_polygons/fidget_polygon.scad @@ -3,9 +3,9 @@ beginning_radius = 7.5; fn = 4; number_of_polygons = 10; height = 20; -thickness = 1.5; -spacing = 0.5 * thickness; -slope = 1.2; +thickness = 1; +spacing = thickness; +slope = 0.825; base_height = height * 1.75; fidget_polygon(model, beginning_radius, fn, number_of_polygons, height, thickness, spacing, slope, base_height);