クリックしたときに円の内側の長方形を再描画したいと思います。誰でもアイデアを提案できますか?
function setup() {
createCanvas(700, 500);
// Starts in the middle
x = width / 2;
y = height / 2;
}
function draw() {
background(10);
stroke(1000);
fill(10);
ellipse(x, y, 300, 300);
rect(80, 80, 100, 50);
rect(550, 180, 100, 50);
rect(150, 400, 100, 50);
}
function mousePressed() {
//question
}
remove() はキャンバス全体を消去します。