import toxi.geom.*; import toxi.math.*; Curver[] curvers; int NUMCURVERS=10 ; int NUMCENTERS=10; int[][] grid; color[][] colorGrid; int count; void setup(){ size(800,800); smooth(); noStroke(); reset(); } void draw(){ boolean resetNeeded=true; for(int i=0;i10) noLoop(); } } void reset(){ background(255); count=0; loop(); grid = new int[width][height]; colorGrid = new color[width][height]; color cul = color(random(256f),random(256f),random(256f)); color cur = color(random(256f),random(256f),random(256f)); color cll = color(random(256f),random(256f),random(256f)); color clr = color(random(256f),random(256f),random(256f)); for(int w=0;w