From: Mark Slee Date: Thu, 22 Aug 2013 07:56:30 +0000 (-0700) Subject: Fix indenation thing, OCD X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=d429ada50e531ffe966c377a4b3c8702181d12b6;p=SugarCubes.git Fix indenation thing, OCD --- 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; } } }