Add Initial commit

This commit is contained in:
Lev
2021-04-17 17:28:22 -05:00
parent 698c4951ca
commit 4154645cb4
5 changed files with 15993 additions and 0 deletions

View File

@ -0,0 +1,36 @@
function setup() {
createCanvas(720, 400);
rectMode(CENTER);
}
function draw()
{
background(220);
fill(0);
translate(200, 200);
rotate(radians(45));
rect(0, 0, 200, 200);
fill('red');
push()
translate(100, 100);
ellipse(0, 0, 30, 30);
pop();
push();
translate(-100, -100);
ellipse(0, 0, 30, 30);
pop();
push();
translate(100, -100);
ellipse(0, 0, 30, 30);
pop();
push();
translate(-100, 100);
ellipse(0, 0, 30, 30);
pop();
}