From a634594a135269f0ade26fa867bc08091afae10f Mon Sep 17 00:00:00 2001 From: Alexandre B A Villares Date: Tue, 28 Jan 2020 23:01:50 -0200 Subject: [PATCH] Update sketch_2020_01_28a.pyde --- 2020/sketch_2020_01_28a/sketch_2020_01_28a.pyde | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2020/sketch_2020_01_28a/sketch_2020_01_28a.pyde b/2020/sketch_2020_01_28a/sketch_2020_01_28a.pyde index a9c1c261..e95a070b 100644 --- a/2020/sketch_2020_01_28a/sketch_2020_01_28a.pyde +++ b/2020/sketch_2020_01_28a/sketch_2020_01_28a.pyde @@ -18,7 +18,7 @@ def setup(): global radius size(720, 720, P3D) - radius = int(height * .65) + radius = int(height * .60) colorMode(HSB) strokeWeight(3) @@ -34,7 +34,7 @@ def draw(): translate(width / 2, height / 2) rotation += 0.02 # simple rotation on Y axis rotateY(rotation) - noise_offset += 0.03 # walks on noise space! + noise_offset += 0.02 # walks on noise space! for Point in points: Point.plot(noise_offset, noise_scale)