From d429ada50e531ffe966c377a4b3c8702181d12b6 Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Thu, 22 Aug 2013 00:56:30 -0700 Subject: [PATCH] Fix indenation thing, OCD --- TestPatterns.pde | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TestPatterns.pde b/TestPatterns.pde index 706626d..b2e49f1 100644 --- a/TestPatterns.pde +++ b/TestPatterns.pde @@ -16,10 +16,10 @@ class TestSpeakerMapping extends TestPattern { for (Strip strip : speaker.strips) { float b = 100; for (Point p : strip.points) { - colors[p.index] = color(h % 360, 100, b); - b = max(0, b - 10); - } - h += 70; + colors[p.index] = color(h % 360, 100, b); + b = max(0, b - 10); + } + h += 70; } } } -- 2.34.1