Add Initial commit

This commit is contained in:
Lev
2021-04-17 16:55:41 -05:00
parent d8549f4ab7
commit e2eb1a89bc
5 changed files with 15972 additions and 0 deletions

View File

@ -0,0 +1,15 @@
function setup() {
createCanvas(720, 400);
}
function draw()
{
background(220);
fill(0);
translate(60, 60);
rect(10, 10, 100, 100);
ellipse(0, 0, 20, 20);
ellipse(-60, -60, 20, 20);
}