xxxxxxxxxx
// Exercise 3_Loops_Natasha Jorge-Moore
// The way this sketch turned out makes me think of energy flowing.
// When you press the button and it turns yellow it is like an electric shock.
function setup() {
createCanvas(600, 600);
frameRate (2);
strokeWeight(0);
}
function draw() {
background (200);
for (let i=0; i<1000; i=i+15){
colour =random(255);
fill (colour,20,200);
ellipse (i,i,50,50);
}
let y=600
for (let x=0 ; x<1000; x=x+15){
colour =random(255);
fill (colour,20,200);
ellipse (x,y,50,50);
y=y-15
}
fill (255);
ellipse (300,300,100,100);
textAlign(CENTER);
fill (0);
textFont ("Courier New");
textSize (24);
text ("PRESS", 300,308);
}
function mousePressed (){
for (let i=0; i<1000; i=i+15){
fill (colour,200,20);
ellipse (i,i,50,50);
let y=600
for (let x=0 ; x<1000; x=x+15){
colour =random(255);
fill (colour,200,20);
ellipse (x,y,50,50);
y=y-15
}
fill (255);
ellipse (300,300,100,100);
}
}