xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(100,2);
// noFill();
// if((20+frameCount*5)<=400){
// ellipse(width/2, height/2, 100+frameCount*5, 100+frameCount*5);
// }
ellipse(width/2,height/2,50,50);
rectMode(CENTER);
noFill();
strokeWeight(mouseY);
stroke(mouseX);
rect(width/2,height/2,100+frameCount*2);
// textSize(50);
// text(int(mouseX)+","+int(mouseY),50,50);
// fill(mouseX,mouseY,50)
// triangle(440,140,160,600,mouseX,mouseY);
}