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

12 lines
157 B
JavaScript

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