osbm.dev/public/scripts/hello-world.js
2024-10-31 19:47:36 +03:00

9 lines
No EOL
190 B
JavaScript

function setup() {
let mycanvas = createCanvas(400, 400);
mycanvas.parent('hello-world');
background(0);
}
function draw() {
fill(255);
ellipse(mouseX, mouseY, 80, 80);
}