From 8c483f6c8befd64c9d074b157f951e02e2f21bdd Mon Sep 17 00:00:00 2001 From: Justin Lin Date: Fri, 6 May 2022 14:55:45 +0800 Subject: [PATCH] use param --- examples/voronoi/ripple_sphere.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/voronoi/ripple_sphere.scad b/examples/voronoi/ripple_sphere.scad index fbce351e..ad1b70ba 100644 --- a/examples/voronoi/ripple_sphere.scad +++ b/examples/voronoi/ripple_sphere.scad @@ -22,7 +22,7 @@ module ripple_sphere(radius, detail, amplitude, dist = "border", grid_w, seed) { f1 = 2; f2 = amplitude / 75; noises = [ - for(p = points / 2) + for(p = points / f1) let( pnz = (p + p * nz_worley3(p.x * f1, p.y * f1, p.z * f1, seed, grid_w, dist)[3] * f2) )