Files
UoL/CM2030 Graphics Programming/Topic 1/1.1.5/sketch.js
2021-04-17 16:48:53 -05:00

11 lines
147 B
JavaScript

function setup() {
createCanvas(900, 600);
background(0);
}
function draw() {
background(0);
fill(255);
ellipse(mouseX, mouseY, 255);
}