From: Mark Slee Date: Tue, 20 Aug 2013 10:01:24 +0000 (-0700) Subject: Strips are now like cube strips on the bass bins X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=cfc57fca840a0cdd820ec1a1e820aedea663d589;p=SugarCubes.git Strips are now like cube strips on the bass bins --- diff --git a/MarkSlee.pde b/MarkSlee.pde index 5a15993..8c42a8c 100644 --- a/MarkSlee.pde +++ b/MarkSlee.pde @@ -37,7 +37,7 @@ class SpaceTime extends SCPattern { float fVal = falloff.getValuef(); int s = 0; - for (Strip strip : model.allBoxStrips) { + for (Strip strip : model.strips) { int i = 0; for (Point p : strip.points) { colors[p.index] = color( @@ -86,7 +86,7 @@ class Swarm extends SCPattern { void run(int deltaMs) { float s = 0; - for (Strip strip : model.allBoxStrips) { + for (Strip strip : model.strips ) { int i = 0; for (Point p : strip.points) { float fV = max(-1, 1 - dist(p.fx/2., p.fy, fX.getValuef()/2., fY.getValuef()) / 64.); diff --git a/code/GLucose.jar b/code/GLucose.jar index 32509b6..1dc3928 100644 Binary files a/code/GLucose.jar and b/code/GLucose.jar differ