xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
/*
function draw() {
background(255);
for (let x=0; x<width; x=x+20){
strokeWeight(5);
stroke(255,map(x,0,width,0,208),122);
line(mouseX,mouseY,x,0);
line(mouseX,mouseY,x,height);
}
}
*/
function draw() {
background(255);
for (let x=0; x<width; x=x+3){
strokeWeight (5);
stroke(255,map(x,0,width,0,208),122);
circle (width/2, height/2,x);
}
}