xxxxxxxxxx
45
/*
Author: Juan Carlos Ponce Campuzano
25-jul-2020
3D object made in GeoGebra:
Hyperbolic Helicoid:
https://www.geogebra.org/m/uz3ukzsf
*/
let obj;
function preload() {
obj = loadModel('model.obj');
}
function setup() {
createCanvas(windowWidth, windowHeight, WEBGL);
}
function draw() {
background(0);
let s = 0.003;
rotateZ(frameCount * s);
rotateX(frameCount * s);
rotateY(frameCount * s);
//rotateX(1.3);
//rotateZ(-frameCount * s);
scale(width * 0.015); // Scaled to make model fit into canvas
let locX = mouseX - height / 2;
let locY = mouseY - width / 2;
normalMaterial(); // For effect
model(obj);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}