File size: 178 Bytes
cc3741b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// PARAMS are embedded here

function setup() {
    createCanvas(WIDTH, HEIGHT);
}

function draw() {
    background(BACKGROUND_COLOR);
    circle(mouseX, mouseY, CIRCLE_SIZE);
}