X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=BenMorrow.pde;h=bde4ddb0fa92609c9aa785a1ff4fc3cdaadccd89;hb=a68abe8c9849804beaf4fd5ac2d346e7dc88f64d;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=3435850d2e315ebb2b1802af11d025fea865ebd1;p=SugarCubes.git diff --git a/BenMorrow.pde b/BenMorrow.pde index e69de29..bde4ddb 100644 --- a/BenMorrow.pde +++ b/BenMorrow.pde @@ -0,0 +1,35 @@ +class Sandbox extends SCPattern +{ + + LetsTry(GLucose glucose) { + super(glucose); + } + int c=0; + int huerange=255; + int cuberange = 74; + + int counter=0; + public void run(int deltaMs) { + Cube cube = model.cubes.get((int) c); + println("face length "+cube.faces.size()); + if(cube.faces.size()!=4) + { + for(Face f : cube.faces) + { + double col = Math.random()*255; + for(Point p: f.points) + { + colors[p.index] = color(Math.round(col),255,255); + } + } + + + } + if(counter% 3 ==0) + { + c = (c+1) % cuberange; + } + counter++; + println(c); + } +} \ No newline at end of file