RaspberryRocketeer/frontend/public/main.js
2023-01-20 08:15:07 +01:00

12 lines
No EOL
175 B
JavaScript

function setup() {
createCanvas(400, 400);
}
function draw() {
if (mouseIsPressed) {
fill(0);
} else {
fill(255);
}
ellipse(mouseX, mouseY, 80, 80);
}