Update complted 3D system intro

This commit is contained in:
Lev
2021-07-18 19:05:19 -05:00
parent 6cc0e84bae
commit 6b51977c6c

View File

@ -1,7 +1,15 @@
function setup() {
createCanvas(500, 500, WEBGL);
angleMode(DEGREES);
}
function draw() {
background(125);
rectMode(CENTER);
//rotateX(frameCount);
rotateY(frameCount);
translate(200, 0, 0);
//rotateZ(frameCount);
rect(0, 0, 100, 100);
box(75);
}