Add Initial commit
This commit is contained in:
11
CM2030 Graphics Programming/Topic 1/1.1.5/sketch.js
Normal file
11
CM2030 Graphics Programming/Topic 1/1.1.5/sketch.js
Normal file
@ -0,0 +1,11 @@
|
||||
function setup() {
|
||||
createCanvas(900, 600);
|
||||
background(0);
|
||||
}
|
||||
|
||||
function draw()
|
||||
{
|
||||
background(0);
|
||||
fill(255);
|
||||
ellipse(mouseX, mouseY, 255);
|
||||
}
|
||||
Reference in New Issue
Block a user