Add Initial commit

This commit is contained in:
Lev
2021-04-17 17:18:32 -05:00
parent 6fd96ebf5f
commit 698c4951ca
5 changed files with 15998 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>randomDot</title>
<script src="libraries/p5.min.js" type="text/javascript"></script>
<script src="libraries/p5.dom.js" type="text/javascript"></script>
<script src="libraries/p5.sound.js" type="text/javascript"></script>
<script src="sketch.js" type="text/javascript"></script>
<style> body {padding: 0; margin: 0;} canvas {vertical-align: top;} </style>
</head>
<body>
</body>
</html>

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,41 @@
function setup() {
createCanvas(900, 600);
background(0);
}
function draw()
{
background(220);
fill(0);
rect(200, 100, 100, 100);
fill(125);
push();
rotate(radians(45));
translate(200, 100);
rect(0, 0, 100, 100);
pop();
push();
translate(200, 100);
rotate(radians(45));
rect(0, 0, 100, 100);
pop();
push();
rectMode(CENTER);
translate(200 + 100/2, 100 + 100/2);
rotate(radians(45));
rect(0, 0, 100, 100);
pop();
push();
rectMode(CENTER);
translate(200 + 100/2, 100 + 100/2);
rotate(radians(45));
fill('blue');
scale(0.5, 0.5);
rect(0, 0, 100, 100);
pop();
}