xxxxxxxxxx
38
let x, y, r;
let c;
function setup() {
createCanvas(400, 400);
x = width/2;
y = height/2;
r = 50;
c = 'red';
}
function draw() {
background(220);
let d = dist(x, y, mouseX, mouseY);
fill(c);
strokeWeight(1);
circle(x, y, r);
// if(d < r/2){
// c = 'blue';
// } else {
// c = 'red';
// }
if(d < 200){
strokeWeight(1);
line(x, y, mouseX, mouseY)
}
if(d < 100){
strokeWeight(3);
line(x, y, mouseX, mouseY)
}
}