Click on the screen to change the color, drag the mouse around the canvas to create more sketches.
xxxxxxxxxx
function setup(){
createCanvas(1000,1000)
noFill()
stroke(255,50)
background(0)
}
function draw(){
// i, j, k, l, m
for (r = 0; r < mouseX; r+=100){
for (z = 0; z < mouseY; z+=100){
square(mouseX,mouseY + z/2,r)
}
}
}
function mousePressed(){
stroke(random(255),random(255),random(255),random(100))
}