xxxxxxxxxx
31
//follow on video
//https://www.youtube.com/watch?v=FUI7HEEz9B0&t=300s
let angle = 0;
let toilet;
let toilet3D;
function preload() {
toilet = loadImage("toilet.png");
//NOT WORKING
toilet3D = loadModel("hsdc00.obj", true);
}
function setup() {
createCanvas(400, 400, WEBGL);
}
function draw() {
background(220);
noStroke();
directionalLight(220, 0, 100, mouseX, mouseY, -500);
// texture(toilet);
normalMaterial();
plane(200, 200);
// NOT WORKING
// scale(800);
model(toilet3D);
}