xxxxxxxxxx
80
var outline = [];
let number;
let a = 0.0;
function setup() {
//createCanvas(300, 300, WEBGL);
createCanvas(windowWidth, windowHeight, WEBGL);
translate(windowWidth/2-windowHeight/2.5, windowHeight/2-windowHeight/2.5,);
ortho(-width / 2, width / 2, height / 2, -height / 2, 0, 1000);
//perspective(PI / 3.0, width / height, 0.1, (windowHeight+windowWidth)*0.5);
}
function preload(){
number = loadModel('73.obj');
}
function draw() {
//background((mouseX*0.01)*50);
background(0);
let locX = mouseX - (windowHeight / 2);
let locY = mouseY - (windowWidth / 2);
pointLight(250, 250, 250, 100,155,locX*.7);
pointLight(250, 250, 250, -100,-155,locX*.7);
//pointLight(200, 200, 200, locX, locY,(sin(frameCount * 0.01)*(PI*10)));
// //orbitControl();
rotateY(sin(frameCount * 0.015)*(HALF_PI*.5));
//rotateZ(millis() / 1500);
rotateX(2.9);
//rotateZ(windowHeight - mouseY * 0.017);
//rotateX(0.3);
// rotateY(windowWidth + mouseX * 0.007);
// //scale(1);
scale((windowHeight/300)+(windowWidth/300)*(mouseX*.0001));
model(number);
translate(0,0,20);
model(number);
translate(0,0,20);
model(number);
translate(0,0,20);
model(number);
translate(0,0,20);
model(number);
translate(0,0,20);
model(number);
noStroke();
//fill(200,255)
//emissiveMaterial(20, 25, 25,);
//specularMaterial(255);
//ambientMaterial(200);
shininess(0);
//blendMode(SUBTRACT);
//tint(255, 10); // Display at half opacity
//shininess(1);
//normalMaterial();
//shininess(1);
//ambientMaterial(0);
//specularMaterial(0);
}