X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=MarkSlee.pde;h=8c42a8c0aabac6a0ce82a7952b1f2a556b133803;hb=cfc57fca840a0cdd820ec1a1e820aedea663d589;hp=5a15993dfd2d6f187b0bf8c346ca21568183a290;hpb=3e8e60d84efa9e4c376574186635aa05f0f36f5f;p=SugarCubes.git 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.);