12 lines
No EOL
191 B
JavaScript
12 lines
No EOL
191 B
JavaScript
function setup() {
|
|
createCanvas(400, 400);
|
|
}
|
|
|
|
function draw() {
|
|
if (mouseIsPressed) {
|
|
fill(0);
|
|
} else {
|
|
fill(255);
|
|
}
|
|
ellipse(mouseX, mouseY, 80, 80);
|
|
} |