function setup() { //Use the sizeMultiplier to adjust the size of the image. The multiplier 5.76 creates a 20 inch X 20 inch picture sizeMultiplier = 1; // 5.76; createCanvas(1000 * sizeMultiplier, 1000 * sizeMultiplier); //change the background color if you want to see the size of the canvas background(250) //Use random seeds to generate different versions of the art, then pick the one you like best and lock it in ourSeed = round(random(10000)) //Final Choice: 7337 randomSeed(ourSeed); noiseSeed(ourSeed); /* //Uncomment the following line to display the seed number on the canvas fill(0) textSize(30) text(ourSeed, 10, 10, 300, 300) */ //If you want to see the art grow over time, play with the frameRate otherwise give an iteration number animated = true; //Final choice: 476, 747, 1657 iterationNumber = 100; // 1657 strokeWeight(3); // 3 increment = .005; //.005 bezierMagnifier = 1; // 1 frameRate(60) if(animated) { iterationNumber = 0; } else { noLoop(); } stroke(0, 25); // 0, 18 noFill(); t = 0; // Loops if not animated for (i=0; i