xxxxxxxxxx
22
//---------------\\
//face rec thingy\\
//rotating world\\
//floor plan thingy\\
//---------------\\
let m,t;
function setup() {
createCanvas(windowWidth, windowHeight);
background(220);
m = new Matrix(0,3*height/4,width/2,height);
t = new Triangulation(width/2,3*height/4,width,height);
}
function draw() {
m.run();
t.run();
}