From e312c034141d910d5f6ef433d4f5b71f2b1d6ae5 Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Tue, 20 Jul 2021 16:20:11 +0800 Subject: [PATCH] fix CG error --- examples/spiral/dragon.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/spiral/dragon.scad b/examples/spiral/dragon.scad index e2a8fcf1..01aa866b 100644 --- a/examples/spiral/dragon.scad +++ b/examples/spiral/dragon.scad @@ -211,7 +211,7 @@ module dragon() { } module flame_mountain(beginning_radius, fn, amplitude,curve_step, smoothness) { - seed = rand() * 1000; + seed = 1000; section = shape_circle(radius = beginning_radius, $fn = fn); pt = [beginning_radius, 0, 0]; @@ -253,7 +253,7 @@ rotate(60) flame_mountain( beginning_radius = 26, fn = 18, - amplitude = 8, + amplitude = 7, curve_step = 0.04, smoothness = 10 );