// Three.js r41/ROME - http://github.com/mrdoob/three.js var THREE=THREE||{};if(!window.Int32Array)window.Int32Array=Array,window.Float32Array=Array;THREE.Color=function(b){this.setHex(b)}; THREE.Color.prototype={copy:function(b){this.r=b.r;this.g=b.g;this.b=b.b;this.hex=b.hex},setHex:function(b){this.hex=~~b&16777215;this.updateRGB()},setRGB:function(b,c,d){this.r=b;this.g=c;this.b=d;this.updateHex()},setHSV:function(b,c,d){var e,f,h,j,k,m;if(d==0)e=f=h=0;else switch(j=Math.floor(b*6),k=b*6-j,b=d*(1-c),m=d*(1-c*k),c=d*(1-c*(1-k)),j){case 1:e=m;f=d;h=b;break;case 2:e=b;f=d;h=c;break;case 3:e=b;f=m;h=d;break;case 4:e=c;f=b;h=d;break;case 5:e=d;f=b;h=m;break;case 6:case 0:e=d,f=c,h=b}this.setRGB(e, f,h)},updateHex:function(){this.hex=~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},updateRGB:function(){this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},clone:function(){return new THREE.Color(this.hex)}};THREE.Vector2=function(b,c){this.set(b||0,c||0)}; THREE.Vector2.prototype={set:function(b,c){this.x=b;this.y=c;return this},copy:function(b){this.x=b.x;this.y=b.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},add:function(b,c){this.x=b.x+c.x;this.y=b.y+c.y;return this},addSelf:function(b){this.x+=b.x;this.y+=b.y;return this},sub:function(b,c){this.x=b.x-c.x;this.y=b.y-c.y;return this},subSelf:function(b){this.x-=b.x;this.y-=b.y;return this},multiplyScalar:function(b){this.x*=b;this.y*=b;return this},divideScalar:function(b){b? (this.x/=b,this.y/=b):this.set(0,0);return this},negate:function(){return this.multiplyScalar(-1)},dot:function(b){return this.x*b.x+this.y*b.y},lengthSq:function(){return this.x*this.x+this.y*this.y},length:function(){return Math.sqrt(this.lengthSq())},normalize:function(){return this.divideScalar(this.length())},setLength:function(b){return this.normalize().multiplyScalar(b)},unit:function(){return this.normalize()}};THREE.Vector3=function(b,c,d){this.set(b||0,c||0,d||0)}; THREE.Vector3.prototype={set:function(b,c,d){this.x=b;this.y=c;this.z=d;return this},copy:function(b){this.x=b.x;this.y=b.y;this.z=b.z;return this},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)},add:function(b,c){this.x=b.x+c.x;this.y=b.y+c.y;this.z=b.z+c.z;return this},addSelf:function(b){this.x+=b.x;this.y+=b.y;this.z+=b.z;return this},addScalar:function(b){this.x+=b;this.y+=b;this.z+=b;return this},sub:function(b,c){this.x=b.x-c.x;this.y=b.y-c.y;this.z=b.z-c.z;return this},subSelf:function(b){this.x-= b.x;this.y-=b.y;this.z-=b.z;return this},multiply:function(b,c){this.x=b.x*c.x;this.y=b.y*c.y;this.z=b.z*c.z;return this},multiplySelf:function(b){this.x*=b.x;this.y*=b.y;this.z*=b.y;return this},multiplyScalar:function(b){this.x*=b;this.y*=b;this.z*=b;return this},divideSelf:function(b){return this.divide(this,b)},divideScalar:function(b){b?(this.x/=b,this.y/=b,this.z/=b):this.set(0,0,0);return this},negate:function(){return this.multiplyScalar(-1)},dot:function(b){return this.x*b.x+this.y*b.y+this.z* b.z},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},length:function(){return Math.sqrt(this.lengthSq())},lengthManhattan:function(){return this.x+this.y+this.z},normalize:function(){return this.divideScalar(this.length())},setLength:function(b){return this.normalize().multiplyScalar(b)},cross:function(b,c){this.x=b.y*c.z-b.z*c.y;this.y=b.z*c.x-b.x*c.z;this.z=b.x*c.y-b.y*c.x;return this},crossSelf:function(b){return this.set(this.y*b.z-this.z*b.y,this.z*b.x-this.x*b.z,this.x* b.y-this.y*b.x)},distanceTo:function(b){return Math.sqrt(this.distanceToSquared(b))},distanceToSquared:function(b){return(new THREE.Vector3).sub(this,b).lengthSq()},setPositionFromMatrix:function(b){this.x=b.n14;this.y=b.n24;this.z=b.n34},setRotationFromMatrix:function(b){var c=Math.cos(this.y);this.y=Math.asin(b.n13);Math.abs(c)>1.0E-5?(this.x=Math.atan2(-b.n23/c,b.n33/c),this.z=Math.atan2(-b.n12/c,b.n11/c)):(this.x=0,this.z=Math.atan2(b.n21,b.n22))},isZero:function(){return this.lengthSq()<1.0E-4}}; THREE.Vector4=function(b,c,d,e){this.set(b||0,c||0,d||0,e||1)}; THREE.Vector4.prototype={set:function(b,c,d,e){this.x=b;this.y=c;this.z=d;this.w=e;return this},copy:function(b){return this.set(b.x,b.y,b.z,b.w||1)},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)},add:function(b,c){this.x=b.x+c.x;this.y=b.y+c.y;this.z=b.z+c.z;this.w=b.w+c.w;return this},addSelf:function(b){this.x+=b.x;this.y+=b.y;this.z+=b.z;this.w+=b.w;return this},sub:function(b,c){this.x=b.x-c.x;this.y=b.y-c.y;this.z=b.z-c.z;this.w=b.w-c.w;return this},subSelf:function(b){this.x-= b.x;this.y-=b.y;this.z-=b.z;this.w-=b.w;return this},multiplyScalar:function(b){this.x*=b;this.y*=b;this.z*=b;this.w*=b;return this},divideScalar:function(b){b?(this.x/=b,this.y/=b,this.z/=b,this.w/=b):this.set(0,0,0,1);return this},negate:function(){return this.multiplyScalar(-1)},dot:function(b){return this.x*b.x+this.y*b.y+this.z*b.z+this.w*b.w},lengthSq:function(){return this.dot(this)},length:function(){return Math.sqrt(this.lengthSq())},normalize:function(){return this.divideScalar(this.length())}, setLength:function(b){return this.normalize().multiplyScalar(b)},lerpSelf:function(b,c){this.x+=(b.x-this.x)*c;this.y+=(b.y-this.y)*c;this.z+=(b.z-this.z)*c;this.w+=(b.w-this.w)*c;return this}};THREE.Ray=function(b,c){this.origin=b||new THREE.Vector3;this.direction=c||new THREE.Vector3}; THREE.Ray.prototype={intersectScene:function(b){return this.intersectObjects(b.objects)},intersectObjects:function(b){var c,d,e=[];c=0;for(d=b.length;c0&&b>0&&h+b<1}if(b instanceof THREE.Particle){var e=c(this.origin,this.direction,b);if(!e||e>b.scale.x)return[];return[{distance:e,point:b.position,face:null,object:b}]}else if(b instanceof THREE.Mesh){e=c(this.origin,this.direction,b);if(!e||e>b.geometry.boundingSphere.radius*Math.max(b.scale.x,Math.max(b.scale.y,b.scale.z)))return[];var f,h,j,k,m,n,o,p,t,u,v=b.geometry, C=v.vertices,E=[],e=0;for(f=v.faces.length;e0:p<0))if(o=o.dot((new THREE.Vector3).sub(j,t))/p,t=t.addSelf(u.multiplyScalar(o)), h instanceof THREE.Face3)d(t,j,k,m)&&(h={distance:this.origin.distanceTo(t),point:t,face:h,object:b},E.push(h));else if(h instanceof THREE.Face4&&(d(t,j,k,n)||d(t,k,m,n)))h={distance:this.origin.distanceTo(t),point:t,face:h,object:b},E.push(h);return E}else return[]}}; THREE.Rectangle=function(){function b(){h=e-c;j=f-d}var c,d,e,f,h,j,k=!0;this.getX=function(){return c};this.getY=function(){return d};this.getWidth=function(){return h};this.getHeight=function(){return j};this.getLeft=function(){return c};this.getTop=function(){return d};this.getRight=function(){return e};this.getBottom=function(){return f};this.set=function(h,j,o,p){k=!1;c=h;d=j;e=o;f=p;b()};this.addPoint=function(h,j){k?(k=!1,c=h,d=j,e=h,f=j):(c=ch?e:h,f=f>j?f:j);b()};this.add3Points= function(h,j,o,p,t,u){k?(k=!1,c=ho?h>t?h:t:o>t?o:t,f=j>p?j>u?j:u:p>u?p:u):(c=ho?h>t?h>e?h:e:t>e?t:e:o>t?o>e?o:e:t>e?t:e,f=j>p?j>u?j>f?j:f:u>f?u:f:p>u?p>f?p:f:u>f?u:f);b()};this.addRectangle=function(h){k?(k=!1,c=h.getLeft(),d=h.getTop(),e=h.getRight(),f=h.getBottom()):(c=ch.getRight()?e:h.getRight(),f=f> h.getBottom()?f:h.getBottom());b()};this.inflate=function(h){c-=h;d-=h;e+=h;f+=h;b()};this.minSelf=function(h){c=c>h.getLeft()?c:h.getLeft();d=d>h.getTop()?d:h.getTop();e=e=0&&Math.min(f,b.getBottom())-Math.max(d,b.getTop())>=0};this.empty=function(){k=!0;f=e=d=c=0;b()};this.isEmpty=function(){return k}};THREE.Matrix3=function(){this.m=[]}; THREE.Matrix3.prototype={transpose:function(){var b,c=this.m;b=c[1];c[1]=c[3];c[3]=b;b=c[2];c[2]=c[6];c[6]=b;b=c[5];c[5]=c[7];c[7]=b;return this},transposeIntoArray:function(b){var c=this.m;b[0]=c[0];b[1]=c[3];b[2]=c[6];b[3]=c[1];b[4]=c[4];b[5]=c[7];b[6]=c[2];b[7]=c[5];b[8]=c[8];return this}};THREE.Matrix4=function(b,c,d,e,f,h,j,k,m,n,o,p,t,u,v,C){this.set(b||1,c||0,d||0,e||0,f||0,h||1,j||0,k||0,m||0,n||0,o||1,p||0,t||0,u||0,v||0,C||1);this.flat=Array(16);this.m33=new THREE.Matrix3}; THREE.Matrix4.prototype={set:function(b,c,d,e,f,h,j,k,m,n,o,p,t,u,v,C){this.n11=b;this.n12=c;this.n13=d;this.n14=e;this.n21=f;this.n22=h;this.n23=j;this.n24=k;this.n31=m;this.n32=n;this.n33=o;this.n34=p;this.n41=t;this.n42=u;this.n43=v;this.n44=C;return this},identity:function(){this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1);return this},copy:function(b){this.set(b.n11,b.n12,b.n13,b.n14,b.n21,b.n22,b.n23,b.n24,b.n31,b.n32,b.n33,b.n34,b.n41,b.n42,b.n43,b.n44);return this},lookAt:function(b,c,d){var e=THREE.Matrix4.__v1, f=THREE.Matrix4.__v2,h=THREE.Matrix4.__v3;h.sub(b,c).normalize();if(h.length()===0)h.z=1;e.cross(d,h).normalize();e.length()===0&&(h.x+=1.0E-4,e.cross(d,h).normalize());f.cross(h,e).normalize();this.n11=e.x;this.n12=f.x;this.n13=h.x;this.n21=e.y;this.n22=f.y;this.n23=h.y;this.n31=e.z;this.n32=f.z;this.n33=h.z;return this},multiplyVector3:function(b){var c=b.x,d=b.y,e=b.z,f=1/(this.n41*c+this.n42*d+this.n43*e+this.n44);b.x=(this.n11*c+this.n12*d+this.n13*e+this.n14)*f;b.y=(this.n21*c+this.n22*d+this.n23* e+this.n24)*f;b.z=(this.n31*c+this.n32*d+this.n33*e+this.n34)*f;return b},multiplyVector4:function(b){var c=b.x,d=b.y,e=b.z,f=b.w;b.x=this.n11*c+this.n12*d+this.n13*e+this.n14*f;b.y=this.n21*c+this.n22*d+this.n23*e+this.n24*f;b.z=this.n31*c+this.n32*d+this.n33*e+this.n34*f;b.w=this.n41*c+this.n42*d+this.n43*e+this.n44*f;return b},rotateAxis:function(b){var c=b.x,d=b.y,e=b.z;b.x=c*this.n11+d*this.n12+e*this.n13;b.y=c*this.n21+d*this.n22+e*this.n23;b.z=c*this.n31+d*this.n32+e*this.n33;b.normalize(); return b},crossVector:function(b){var c=new THREE.Vector4;c.x=this.n11*b.x+this.n12*b.y+this.n13*b.z+this.n14*b.w;c.y=this.n21*b.x+this.n22*b.y+this.n23*b.z+this.n24*b.w;c.z=this.n31*b.x+this.n32*b.y+this.n33*b.z+this.n34*b.w;c.w=b.w?this.n41*b.x+this.n42*b.y+this.n43*b.z+this.n44*b.w:1;return c},multiply:function(b,c){var d=b.n11,e=b.n12,f=b.n13,h=b.n14,j=b.n21,k=b.n22,m=b.n23,n=b.n24,o=b.n31,p=b.n32,t=b.n33,u=b.n34,v=b.n41,C=b.n42,E=b.n43,y=b.n44,D=c.n11,x=c.n12,I=c.n13,A=c.n14,z=c.n21,S=c.n22, G=c.n23,M=c.n24,F=c.n31,N=c.n32,g=c.n33,Y=c.n34;this.n11=d*D+e*z+f*F;this.n12=d*x+e*S+f*N;this.n13=d*I+e*G+f*g;this.n14=d*A+e*M+f*Y+h;this.n21=j*D+k*z+m*F;this.n22=j*x+k*S+m*N;this.n23=j*I+k*G+m*g;this.n24=j*A+k*M+m*Y+n;this.n31=o*D+p*z+t*F;this.n32=o*x+p*S+t*N;this.n33=o*I+p*G+t*g;this.n34=o*A+p*M+t*Y+u;this.n41=v*D+C*z+E*F;this.n42=v*x+C*S+E*N;this.n43=v*I+C*G+E*g;this.n44=v*A+C*M+E*Y+y;return this},multiplyToArray:function(b,c,d){this.multiply(b,c);d[0]=this.n11;d[1]=this.n21;d[2]=this.n31;d[3]= this.n41;d[4]=this.n12;d[5]=this.n22;d[6]=this.n32;d[7]=this.n42;d[8]=this.n13;d[9]=this.n23;d[10]=this.n33;d[11]=this.n43;d[12]=this.n14;d[13]=this.n24;d[14]=this.n34;d[15]=this.n44;return this},multiplySelf:function(b){this.multiply(this,b);return this},multiplyScalar:function(b){this.n11*=b;this.n12*=b;this.n13*=b;this.n14*=b;this.n21*=b;this.n22*=b;this.n23*=b;this.n24*=b;this.n31*=b;this.n32*=b;this.n33*=b;this.n34*=b;this.n41*=b;this.n42*=b;this.n43*=b;this.n44*=b;return this},determinant:function(){var b= this.n11,c=this.n12,d=this.n13,e=this.n14,f=this.n21,h=this.n22,j=this.n23,k=this.n24,m=this.n31,n=this.n32,o=this.n33,p=this.n34,t=this.n41,u=this.n42,v=this.n43,C=this.n44;return e*j*n*t-d*k*n*t-e*h*o*t+c*k*o*t+d*h*p*t-c*j*p*t-e*j*m*u+d*k*m*u+e*f*o*u-b*k*o*u-d*f*p*u+b*j*p*u+e*h*m*v-c*k*m*v-e*f*n*v+b*k*n*v+c*f*p*v-b*h*p*v-d*h*m*C+c*j*m*C+d*f*n*C-b*j*n*C-c*f*o*C+b*h*o*C},transpose:function(){var b;b=this.n21;this.n21=this.n12;this.n12=b;b=this.n31;this.n31=this.n13;this.n13=b;b=this.n32;this.n32= this.n23;this.n23=b;b=this.n41;this.n41=this.n14;this.n14=b;b=this.n42;this.n42=this.n24;this.n24=b;b=this.n43;this.n43=this.n34;this.n43=b;return this},clone:function(){var b=new THREE.Matrix4;b.n11=this.n11;b.n12=this.n12;b.n13=this.n13;b.n14=this.n14;b.n21=this.n21;b.n22=this.n22;b.n23=this.n23;b.n24=this.n24;b.n31=this.n31;b.n32=this.n32;b.n33=this.n33;b.n34=this.n34;b.n41=this.n41;b.n42=this.n42;b.n43=this.n43;b.n44=this.n44;return b},flatten:function(){this.flat[0]=this.n11;this.flat[1]=this.n21; this.flat[2]=this.n31;this.flat[3]=this.n41;this.flat[4]=this.n12;this.flat[5]=this.n22;this.flat[6]=this.n32;this.flat[7]=this.n42;this.flat[8]=this.n13;this.flat[9]=this.n23;this.flat[10]=this.n33;this.flat[11]=this.n43;this.flat[12]=this.n14;this.flat[13]=this.n24;this.flat[14]=this.n34;this.flat[15]=this.n44;return this.flat},flattenToArray:function(b){b[0]=this.n11;b[1]=this.n21;b[2]=this.n31;b[3]=this.n41;b[4]=this.n12;b[5]=this.n22;b[6]=this.n32;b[7]=this.n42;b[8]=this.n13;b[9]=this.n23;b[10]= this.n33;b[11]=this.n43;b[12]=this.n14;b[13]=this.n24;b[14]=this.n34;b[15]=this.n44;return b},flattenToArrayOffset:function(b,c){b[c]=this.n11;b[c+1]=this.n21;b[c+2]=this.n31;b[c+3]=this.n41;b[c+4]=this.n12;b[c+5]=this.n22;b[c+6]=this.n32;b[c+7]=this.n42;b[c+8]=this.n13;b[c+9]=this.n23;b[c+10]=this.n33;b[c+11]=this.n43;b[c+12]=this.n14;b[c+13]=this.n24;b[c+14]=this.n34;b[c+15]=this.n44;return b},setTranslation:function(b,c,d){this.set(1,0,0,b,0,1,0,c,0,0,1,d,0,0,0,1);return this},setScale:function(b, c,d){this.set(b,0,0,0,0,c,0,0,0,0,d,0,0,0,0,1);return this},setRotationX:function(b){var c=Math.cos(b),b=Math.sin(b);this.set(1,0,0,0,0,c,-b,0,0,b,c,0,0,0,0,1);return this},setRotationY:function(b){var c=Math.cos(b),b=Math.sin(b);this.set(c,0,b,0,0,1,0,0,-b,0,c,0,0,0,0,1);return this},setRotationZ:function(b){var c=Math.cos(b),b=Math.sin(b);this.set(c,-b,0,0,b,c,0,0,0,0,1,0,0,0,0,1);return this},setRotationAxis:function(b,c){var d=Math.cos(c),e=Math.sin(c),f=1-d,h=b.x,j=b.y,k=b.z,m=f*h,n=f*j;this.set(m* h+d,m*j-e*k,m*k+e*j,0,m*j+e*k,n*j+d,n*k-e*h,0,m*k-e*j,n*k+e*h,f*k*k+d,0,0,0,0,1);return this},setPosition:function(b){this.n14=b.x;this.n24=b.y;this.n34=b.z;return this},getPosition:function(){if(!this.position)this.position=new THREE.Vector3;this.position.set(this.n14,this.n24,this.n34);return this.position},getColumnX:function(){if(!this.columnX)this.columnX=new THREE.Vector3;this.columnX.set(this.n11,this.n21,this.n31);return this.columnX},getColumnY:function(){if(!this.columnY)this.columnY=new THREE.Vector3; this.columnY.set(this.n12,this.n22,this.n32);return this.columnY},getColumnZ:function(){if(!this.columnZ)this.columnZ=new THREE.Vector3;this.columnZ.set(this.n13,this.n23,this.n33);return this.columnZ},setRotationFromEuler:function(b){var c=b.x,d=b.y,e=b.z,b=Math.cos(c),c=Math.sin(c),f=Math.cos(d),d=Math.sin(d),h=Math.cos(e),e=Math.sin(e),j=b*d,k=c*d;this.n11=f*h;this.n12=-f*e;this.n13=d;this.n21=k*h+b*e;this.n22=-k*e+b*h;this.n23=-c*f;this.n31=-j*h+c*e;this.n32=j*e+c*h;this.n33=b*f;return this}, setRotationFromQuaternion:function(b){var c=b.x,d=b.y,e=b.z,f=b.w,h=c+c,j=d+d,k=e+e,b=c*h,m=c*j;c*=k;var n=d*j;d*=k;e*=k;h*=f;j*=f;f*=k;this.n11=1-(n+e);this.n12=m-f;this.n13=c+j;this.n21=m+f;this.n22=1-(b+e);this.n23=d-h;this.n31=c-j;this.n32=d+h;this.n33=1-(b+n);return this},scale:function(b){var c=b.x,d=b.y,b=b.z;this.n11*=c;this.n12*=d;this.n13*=b;this.n21*=c;this.n22*=d;this.n23*=b;this.n31*=c;this.n32*=d;this.n33*=b;this.n41*=c;this.n42*=d;this.n43*=b;return this},extractPosition:function(b){this.n14= b.n14;this.n24=b.n24;this.n34=b.n34},extractRotation:function(b,c){var d=1/c.x,e=1/c.y,f=1/c.z;this.n11=b.n11*d;this.n21=b.n21*d;this.n31=b.n31*d;this.n12=b.n12*e;this.n22=b.n22*e;this.n32=b.n32*e;this.n13=b.n13*f;this.n23=b.n23*f;this.n33=b.n33*f}}; THREE.Matrix4.makeInvert=function(b,c){var d=b.n11,e=b.n12,f=b.n13,h=b.n14,j=b.n21,k=b.n22,m=b.n23,n=b.n24,o=b.n31,p=b.n32,t=b.n33,u=b.n34,v=b.n41,C=b.n42,E=b.n43,y=b.n44;c===void 0&&(c=new THREE.Matrix4);c.n11=m*u*C-n*t*C+n*p*E-k*u*E-m*p*y+k*t*y;c.n12=h*t*C-f*u*C-h*p*E+e*u*E+f*p*y-e*t*y;c.n13=f*n*C-h*m*C+h*k*E-e*n*E-f*k*y+e*m*y;c.n14=h*m*p-f*n*p-h*k*t+e*n*t+f*k*u-e*m*u;c.n21=n*t*v-m*u*v-n*o*E+j*u*E+m*o*y-j*t*y;c.n22=f*u*v-h*t*v+h*o*E-d*u*E-f*o*y+d*t*y;c.n23=h*m*v-f*n*v-h*j*E+d*n*E+f*j*y-d*m*y;c.n24= f*n*o-h*m*o+h*j*t-d*n*t-f*j*u+d*m*u;c.n31=k*u*v-n*p*v+n*o*C-j*u*C-k*o*y+j*p*y;c.n32=h*p*v-e*u*v-h*o*C+d*u*C+e*o*y-d*p*y;c.n33=f*n*v-h*k*v+h*j*C-d*n*C-e*j*y+d*k*y;c.n34=h*k*o-e*n*o-h*j*p+d*n*p+e*j*u-d*k*u;c.n41=m*p*v-k*t*v-m*o*C+j*t*C+k*o*E-j*p*E;c.n42=e*t*v-f*p*v+f*o*C-d*t*C-e*o*E+d*p*E;c.n43=f*k*v-e*m*v-f*j*C+d*m*C+e*j*E-d*k*E;c.n44=e*m*o-f*k*o+f*j*p-d*m*p-e*j*t+d*k*t;c.multiplyScalar(1/b.determinant());return c}; THREE.Matrix4.makeInvert3x3=function(b){var c=b.m33,d=c.m,e=b.n33*b.n22-b.n32*b.n23,f=-b.n33*b.n21+b.n31*b.n23,h=b.n32*b.n21-b.n31*b.n22,j=-b.n33*b.n12+b.n32*b.n13,k=b.n33*b.n11-b.n31*b.n13,m=-b.n32*b.n11+b.n31*b.n12,n=b.n23*b.n12-b.n22*b.n13,o=-b.n23*b.n11+b.n21*b.n13,p=b.n22*b.n11-b.n21*b.n12,b=b.n11*e+b.n21*j+b.n31*n;b==0&&console.error("THREE.Matrix4.makeInvert3x3: Matrix not invertible.");b=1/b;d[0]=b*e;d[1]=b*f;d[2]=b*h;d[3]=b*j;d[4]=b*k;d[5]=b*m;d[6]=b*n;d[7]=b*o;d[8]=b*p;return c}; THREE.Matrix4.makeFrustum=function(b,c,d,e,f,h){var j;j=new THREE.Matrix4;j.n11=2*f/(c-b);j.n12=0;j.n13=(c+b)/(c-b);j.n14=0;j.n21=0;j.n22=2*f/(e-d);j.n23=(e+d)/(e-d);j.n24=0;j.n31=0;j.n32=0;j.n33=-(h+f)/(h-f);j.n34=-2*h*f/(h-f);j.n41=0;j.n42=0;j.n43=-1;j.n44=0;return j};THREE.Matrix4.makePerspective=function(b,c,d,e){var f,b=d*Math.tan(b*Math.PI/360);f=-b;return THREE.Matrix4.makeFrustum(f*c,b*c,f,b,d,e)}; THREE.Matrix4.makeOrtho=function(b,c,d,e,f,h){var j,k,m,n;j=new THREE.Matrix4;k=c-b;m=d-e;n=h-f;j.n11=2/k;j.n12=0;j.n13=0;j.n14=-((c+b)/k);j.n21=0;j.n22=2/m;j.n23=0;j.n24=-((d+e)/m);j.n31=0;j.n32=0;j.n33=-2/n;j.n34=-((h+f)/n);j.n41=0;j.n42=0;j.n43=0;j.n44=1;return j};THREE.Matrix4.__v1=new THREE.Vector3;THREE.Matrix4.__v2=new THREE.Vector3;THREE.Matrix4.__v3=new THREE.Vector3; THREE.Object3D=function(){this.parent=void 0;this.children=[];this.up=new THREE.Vector3(0,1,0);this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.dynamic=!1;this.rotationAutoUpdate=!0;this.matrix=new THREE.Matrix4;this.matrixWorld=new THREE.Matrix4;this.matrixRotationWorld=new THREE.Matrix4;this.matrixWorldNeedsUpdate=this.matrixAutoUpdate=!0;this.quaternion=new THREE.Quaternion;this.useQuaternion=!1;this.boundRadius=0;this.boundRadiusScale=1; this.visible=!0;this._vector=new THREE.Vector3;this.name=""}; THREE.Object3D.prototype={translate:function(b,c){this.matrix.rotateAxis(c);this.position.addSelf(c.multiplyScalar(b))},translateX:function(b){this.translate(b,this._vector.set(1,0,0))},translateY:function(b){this.translate(b,this._vector.set(0,1,0))},translateZ:function(b){this.translate(b,this._vector.set(0,0,1))},lookAt:function(b){this.matrix.lookAt(b,this.position,this.up);this.rotationAutoUpdate&&this.rotation.setRotationFromMatrix(this.matrix)},addChild:function(b){if(this.children.indexOf(b)=== -1){b.parent!==void 0&&b.parent.removeChild(b);b.parent=this;this.children.push(b);for(var c=this;c.parent!==void 0;)c=c.parent;c!==void 0&&c instanceof THREE.Scene&&c.addChildRecurse(b)}},removeChild:function(b){var c=this.children.indexOf(b);if(c!==-1)b.parent=void 0,this.children.splice(c,1)},getChildByName:function(b,c){var d,e,f;d=0;for(e=this.children.length;d=1)return d.w=b.w,d.x=b.x,d.y=b.y,d.z=b.z,d;var h=Math.acos(f),j=Math.sqrt(1-f*f);if(Math.abs(j)<0.0010)return d.w=0.5*(b.w+c.w),d.x=0.5*(b.x+c.x),d.y=0.5*(b.y+c.y),d.z=0.5*(b.z+c.z),d;f=Math.sin((1-e)*h)/j;e=Math.sin(e*h)/j;d.w=b.w*f+c.w*e;d.x=b.x*f+c.x*e;d.y=b.y*f+c.y*e;d.z=b.z*f+c.z*e;return d};THREE.Vertex=function(b){this.position=b||new THREE.Vector3}; THREE.Face3=function(b,c,d,e,f,h){this.a=b;this.b=c;this.c=d;this.normal=e instanceof THREE.Vector3?e:new THREE.Vector3;this.vertexNormals=e instanceof Array?e:[];this.color=f instanceof THREE.Color?f:new THREE.Color;this.vertexColors=f instanceof Array?f:[];this.vertexTangents=[];this.materials=h instanceof Array?h:[h];this.centroid=new THREE.Vector3}; THREE.Face4=function(b,c,d,e,f,h,j){this.a=b;this.b=c;this.c=d;this.d=e;this.normal=f instanceof THREE.Vector3?f:new THREE.Vector3;this.vertexNormals=f instanceof Array?f:[];this.color=h instanceof THREE.Color?h:new THREE.Color;this.vertexColors=h instanceof Array?h:[];this.vertexTangents=[];this.materials=j instanceof Array?j:[j];this.centroid=new THREE.Vector3};THREE.UV=function(b,c){this.set(b||0,c||0)}; THREE.UV.prototype={set:function(b,c){this.u=b;this.v=c;return this},copy:function(b){this.set(b.u,b.v);return this}};THREE.Geometry=function(){this.id="Geometry"+THREE.GeometryIdCounter++;this.vertices=[];this.colors=[];this.faces=[];this.edges=[];this.faceUvs=[[]];this.faceVertexUvs=[[]];this.morphTargets=[];this.morphColors=[];this.skinWeights=[];this.skinIndices=[];this.boundingSphere=this.boundingBox=null;this.hasTangents=!1}; THREE.Geometry.prototype={computeCentroids:function(){var b,c,d;b=0;for(c=this.faces.length;b0){this.boundingBox={x:[this.vertices[0].position.x,this.vertices[0].position.x],y:[this.vertices[0].position.y,this.vertices[0].position.y],z:[this.vertices[0].position.z,this.vertices[0].position.z]};for(var c=1,d=this.vertices.length;cthis.boundingBox.x[1])this.boundingBox.x[1]=b.position.x;if(b.position.ythis.boundingBox.y[1])this.boundingBox.y[1]=b.position.y;if(b.position.zthis.boundingBox.z[1])this.boundingBox.z[1]=b.position.z}}},computeBoundingSphere:function(){for(var b=0,c=0,d=this.vertices.length;cthis.points.length-2?h:h+1;d[3]=h>this.points.length-3?h:h+2;n=this.points[d[0]];o=this.points[d[1]]; p=this.points[d[2]];t=this.points[d[3]];k=j*j;m=j*k;e.x=c(n.x,o.x,p.x,t.x,j,k,m);e.y=c(n.y,o.y,p.y,t.y,j,k,m);e.z=c(n.z,o.z,p.z,t.z,j,k,m);return e};this.getControlPointsArray=function(){var b,d,c=this.points.length,e=[];for(b=0;b1){b=d.matrixWorldInverse;b=-(b.n31*this.position.x+b.n32*this.position.y+b.n33*this.position.z+b.n34);this.LODs[0].object3D.visible=!0;for(var e=1;e=this.LODs[e].visibleAtDistance)this.LODs[e-1].object3D.visible=!1, this.LODs[e].object3D.visible=!0;else break;for(;ep&&(d=o,o=p,p=d):ou&&(d=t,t=u,u=d):t=0&&f>=0&&j>=0&&k>=0?!0:h<0&&f<0||j<0&&k<0?!1:(h<0?c=Math.max(c,h/(h-f)):f<0&&(e=Math.min(e,h/(h-f))),j<0?c=Math.max(c,j/(j-k)):k<0&&(e=Math.min(e,j/(j-k))),eI&&j.positionScreen.z0&&A.z<1))P=x[D]=x[D]||new THREE.RenderableParticle,D++,y=P,y.x=A.x/A.w,y.y=A.y/A.w,y.z=A.z,y.rotation=R.rotation.z,y.scale.x=R.scale.x*Math.abs(y.x-(A.x+g.projectionMatrix.n11)/(A.w+ g.projectionMatrix.n14)),y.scale.y=R.scale.y*Math.abs(y.y-(A.y+g.projectionMatrix.n22)/(A.w+g.projectionMatrix.n24)),y.materials=R.materials,f.push(y);h&&f.sort(c);return f}}; THREE.DOMRenderer=function(){THREE.Renderer.call(this);var b=null,c=new THREE.Projector,d,e,f,h;this.domElement=document.createElement("div");this.setSize=function(b,c){d=b;e=c;f=d/2;h=e/2};this.render=function(d,e){var m,n,o,p,t,u,v,C;b=c.projectScene(d,e);m=0;for(n=b.length;m>1,p=m.height>>1, h=g.scale.x*t,ia=g.scale.y*u,j=h*n,k=ia*p,pa.set(b.x-j,b.y-k,b.x+j,b.y+k),qa.instersects(pa)&&(v.save(),v.translate(b.x,b.y),v.rotate(-g.rotation),v.scale(h,-ia),v.translate(-n,-p),v.drawImage(m,0,0),v.restore())}else h instanceof THREE.ParticleCanvasMaterial&&(j=g.scale.x*t,k=g.scale.y*u,pa.set(b.x-j,b.y-k,b.x+j,b.y+k),qa.instersects(pa)&&(e(h.color),f(h.color),v.save(),v.translate(b.x,b.y),v.rotate(-g.rotation),v.scale(j,k),h.program(v),v.restore()))}function y(b,g,h,f){c(f.opacity);d(f.blending); v.beginPath();v.moveTo(b.positionScreen.x,b.positionScreen.y);v.lineTo(g.positionScreen.x,g.positionScreen.y);v.closePath();if(f instanceof THREE.LineBasicMaterial){b=f.linewidth;if(A!=b)v.lineWidth=A=b;b=f.linecap;if(z!=b)v.lineCap=z=b;b=f.linejoin;if(S!=b)v.lineJoin=S=b;e(f.color);v.stroke();pa.inflate(f.linewidth*2)}}function x(b,g,e,f,k,ia,m,n,o){j.data.vertices+=3;j.data.faces++;c(n.opacity);d(n.blending);O=b.positionScreen.x;V=b.positionScreen.y;L=g.positionScreen.x;$=g.positionScreen.y;T=e.positionScreen.x; Q=e.positionScreen.y;E(O,V,L,$,T,Q);if(n instanceof THREE.MeshBasicMaterial)if(n.map)n.map.mapping instanceof THREE.UVMapping&&(la=m.uvs[0],w(O,V,L,$,T,Q,n.map.image,la[f].u,la[f].v,la[k].u,la[k].v,la[ia].u,la[ia].v));else if(n.envMap){if(n.envMap.mapping instanceof THREE.SphericalReflectionMapping)b=h.matrixWorldInverse,na.copy(m.vertexNormalsWorld[0]),ma=(na.x*b.n11+na.y*b.n12+na.z*b.n13)*0.5+0.5,ya=-(na.x*b.n21+na.y*b.n22+na.z*b.n23)*0.5+0.5,na.copy(m.vertexNormalsWorld[1]),va=(na.x*b.n11+na.y* b.n12+na.z*b.n13)*0.5+0.5,Z=-(na.x*b.n21+na.y*b.n22+na.z*b.n23)*0.5+0.5,na.copy(m.vertexNormalsWorld[2]),K=(na.x*b.n11+na.y*b.n12+na.z*b.n13)*0.5+0.5,wa=-(na.x*b.n21+na.y*b.n22+na.z*b.n23)*0.5+0.5,w(O,V,L,$,T,Q,n.envMap.image,ma,ya,va,Z,K,wa)}else n.wireframe?B(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):D(n.color);else if(n instanceof THREE.MeshLambertMaterial)n.map&&!n.wireframe&&(n.map.mapping instanceof THREE.UVMapping&&(la=m.uvs[0],w(O,V,L,$,T,Q,n.map.image,la[f].u,la[f].v, la[k].u,la[k].v,la[ia].u,la[ia].v)),d(THREE.SubtractiveBlending)),Sa?!n.wireframe&&n.shading==THREE.SmoothShading&&m.vertexNormalsWorld.length==3?(P.r=W.r=X.r=ra.r,P.g=W.g=X.g=ra.g,P.b=W.b=X.b=ra.b,p(o,m.v1.positionWorld,m.vertexNormalsWorld[0],P),p(o,m.v2.positionWorld,m.vertexNormalsWorld[1],W),p(o,m.v3.positionWorld,m.vertexNormalsWorld[2],X),ea.r=(W.r+X.r)*0.5,ea.g=(W.g+X.g)*0.5,ea.b=(W.b+X.b)*0.5,da=Pa(P,W,X,ea),w(O,V,L,$,T,Q,da,0,0,1,0,0,1)):(sa.r=ra.r,sa.g=ra.g,sa.b=ra.b,p(o,m.centroidWorld, m.normalWorld,sa),R.r=Math.max(0,Math.min(n.color.r*sa.r,1)),R.g=Math.max(0,Math.min(n.color.g*sa.g,1)),R.b=Math.max(0,Math.min(n.color.b*sa.b,1)),R.updateHex(),n.wireframe?B(R,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):D(R)):n.wireframe?B(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):D(n.color);else if(n instanceof THREE.MeshDepthMaterial)ha=h.near,J=h.far,P.r=P.g=P.b=1-Ca(b.positionScreen.z,ha,J),W.r=W.g=W.b=1-Ca(g.positionScreen.z,ha,J),X.r=X.g=X.b=1-Ca(e.positionScreen.z, ha,J),ea.r=(W.r+X.r)*0.5,ea.g=(W.g+X.g)*0.5,ea.b=(W.b+X.b)*0.5,da=Pa(P,W,X,ea),w(O,V,L,$,T,Q,da,0,0,1,0,0,1);else if(n instanceof THREE.MeshNormalMaterial)R.r=Ha(m.normalWorld.x),R.g=Ha(m.normalWorld.y),R.b=Ha(m.normalWorld.z),R.updateHex(),n.wireframe?B(R,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):D(R)}function C(b,g,e,f,k,ia,m,n,o){j.data.vertices+=4;j.data.faces++;c(n.opacity);d(n.blending);if(n.map||n.envMap)x(b,g,f,0,1,3,m,n,o),x(k,e,ia,1,2,3,m,n,o);else if(O=b.positionScreen.x, V=b.positionScreen.y,L=g.positionScreen.x,$=g.positionScreen.y,T=e.positionScreen.x,Q=e.positionScreen.y,fa=f.positionScreen.x,U=f.positionScreen.y,ka=k.positionScreen.x,ga=k.positionScreen.y,ca=ia.positionScreen.x,aa=ia.positionScreen.y,n instanceof THREE.MeshBasicMaterial)I(O,V,L,$,T,Q,fa,U),n.wireframe?B(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):D(n.color);else if(n instanceof THREE.MeshLambertMaterial)Sa?!n.wireframe&&n.shading==THREE.SmoothShading&&m.vertexNormalsWorld.length== 4?(P.r=W.r=X.r=ea.r=ra.r,P.g=W.g=X.g=ea.g=ra.g,P.b=W.b=X.b=ea.b=ra.b,p(o,m.v1.positionWorld,m.vertexNormalsWorld[0],P),p(o,m.v2.positionWorld,m.vertexNormalsWorld[1],W),p(o,m.v4.positionWorld,m.vertexNormalsWorld[3],X),p(o,m.v3.positionWorld,m.vertexNormalsWorld[2],ea),da=Pa(P,W,X,ea),E(O,V,L,$,fa,U),w(O,V,L,$,fa,U,da,0,0,1,0,0,1),E(ka,ga,T,Q,ca,aa),w(ka,ga,T,Q,ca,aa,da,1,0,1,1,0,1)):(sa.r=ra.r,sa.g=ra.g,sa.b=ra.b,p(o,m.centroidWorld,m.normalWorld,sa),R.r=Math.max(0,Math.min(n.color.r*sa.r,1)),R.g= Math.max(0,Math.min(n.color.g*sa.g,1)),R.b=Math.max(0,Math.min(n.color.b*sa.b,1)),R.updateHex(),I(O,V,L,$,T,Q,fa,U),n.wireframe?B(R,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):D(R)):(I(O,V,L,$,T,Q,fa,U),n.wireframe?B(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):D(n.color));else if(n instanceof THREE.MeshNormalMaterial)R.r=Ha(m.normalWorld.x),R.g=Ha(m.normalWorld.y),R.b=Ha(m.normalWorld.z),R.updateHex(),I(O,V,L,$,T,Q,fa,U),n.wireframe?B(R,n.wireframeLinewidth, n.wireframeLinecap,n.wireframeLinejoin):D(R);else if(n instanceof THREE.MeshDepthMaterial)ha=h.near,J=h.far,P.r=P.g=P.b=1-Ca(b.positionScreen.z,ha,J),W.r=W.g=W.b=1-Ca(g.positionScreen.z,ha,J),X.r=X.g=X.b=1-Ca(f.positionScreen.z,ha,J),ea.r=ea.g=ea.b=1-Ca(e.positionScreen.z,ha,J),da=Pa(P,W,X,ea),E(O,V,L,$,fa,U),w(O,V,L,$,fa,U,da,0,0,1,0,0,1),E(ka,ga,T,Q,ca,aa),w(ka,ga,T,Q,ca,aa,da,1,0,1,1,0,1)}function E(b,d,c,g,e,h){v.beginPath();v.moveTo(b,d);v.lineTo(c,g);v.lineTo(e,h);v.lineTo(b,d);v.closePath()} function I(b,d,c,g,e,h,f,j){v.beginPath();v.moveTo(b,d);v.lineTo(c,g);v.lineTo(e,h);v.lineTo(f,j);v.lineTo(b,d);v.closePath()}function B(b,d,c,g){if(A!=d)v.lineWidth=A=d;if(z!=c)v.lineCap=z=c;if(S!=g)v.lineJoin=S=g;e(b);v.stroke();pa.inflate(d*2)}function D(b){f(b);v.fill()}function w(b,d,c,g,e,h,f,j,k,ia,n,m,p){var o,t;o=f.width-1;t=f.height-1;j*=o;k*=t;ia*=o;n*=t;m*=o;p*=t;c-=b;g-=d;e-=b;h-=d;ia-=j;n-=k;m-=j;p-=k;o=ia*p-m*n;o!=0&&(t=1/o,o=(p*c-n*e)*t,n=(p*g-n*h)*t,c=(ia*e-m*c)*t,g=(ia*h-m*g)*t, b=b-o*j-c*k,d=d-n*j-g*k,v.save(),v.transform(o,n,c,g,b,d),v.clip(),v.drawImage(f,0,0),v.restore())}function Pa(b,d,c,g){var e=~~(b.r*255),h=~~(b.g*255),b=~~(b.b*255),f=~~(d.r*255),j=~~(d.g*255),d=~~(d.b*255),k=~~(c.r*255),ia=~~(c.g*255),c=~~(c.b*255),n=~~(g.r*255),m=~~(g.g*255),g=~~(g.b*255);ta[0]=e<0?0:e>255?255:e;ta[1]=h<0?0:h>255?255:h;ta[2]=b<0?0:b>255?255:b;ta[4]=f<0?0:f>255?255:f;ta[5]=j<0?0:j>255?255:j;ta[6]=d<0?0:d>255?255:d;ta[8]=k<0?0:k>255?255:k;ta[9]=ia<0?0:ia>255?255:ia;ta[10]=c<0?0: c>255?255:c;ta[12]=n<0?0:n>255?255:n;ta[13]=m<0?0:m>255?255:m;ta[14]=g<0?0:g>255?255:g;Ka.putImageData(Ta,0,0);Oa.drawImage(Ja,0,0);return La}function Ca(b,d,c){b=(b-d)/(c-d);return b*b*(3-2*b)}function Ha(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}function za(b,d){var c=d.x-b.x,g=d.y-b.y,e=1/Math.sqrt(c*c+g*g);c*=e;g*=e;d.x+=c;d.y+=g;b.x-=c;b.y-=g}var Qa,Ya,ja,ua,Aa,Ia,Ra,H;this.autoClear?this.clear():v.setTransform(1,0,0,-1,t,u);j.data.vertices=0;j.data.faces=0;k=m.projectScene(b,h,this.sortElements); (Sa=b.lights.length>0)&&n(b);Qa=0;for(Ya=k.length;Qa0&&(c.r+=h.color.r*f,c.g+=h.color.g*f,c.b+=h.color.b*f)):h instanceof THREE.PointLight&&(N.sub(h.position,d.centroidWorld),N.normalize(),f=d.normalWorld.dot(N)*h.intensity,f>0&&(c.r+=h.color.r*f,c.g+=h.color.g*f,c.b+=h.color.b*f))}function c(d,c,g,k,m,p){j.data.vertices+=3;j.data.faces++;O=e(V++);O.setAttribute("d", "M "+d.positionScreen.x+" "+d.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+g.positionScreen.x+","+g.positionScreen.y+"z");m instanceof THREE.MeshBasicMaterial?A.hex=m.color.hex:m instanceof THREE.MeshLambertMaterial?I?(z.r=S.r,z.g=S.g,z.b=S.b,b(p,k,z),A.r=Math.max(0,Math.min(m.color.r*z.r,1)),A.g=Math.max(0,Math.min(m.color.g*z.g,1)),A.b=Math.max(0,Math.min(m.color.b*z.b,1)),A.updateHex()):A.hex=m.color.hex:m instanceof THREE.MeshDepthMaterial?(F=1-m.__2near/(m.__farPlusNear- k.z*m.__farMinusNear),A.setRGB(F,F,F)):m instanceof THREE.MeshNormalMaterial&&A.setRGB(f(k.normalWorld.x),f(k.normalWorld.y),f(k.normalWorld.z));m.wireframe?O.setAttribute("style","fill: none; stroke: #"+h(A.hex.toString(16))+"; stroke-width: "+m.wireframeLinewidth+"; stroke-opacity: "+m.opacity+"; stroke-linecap: "+m.wireframeLinecap+"; stroke-linejoin: "+m.wireframeLinejoin):O.setAttribute("style","fill: #"+h(A.hex.toString(16))+"; fill-opacity: "+m.opacity);n.appendChild(O)}function d(d,c,g,k, m,p,o){j.data.vertices+=4;j.data.faces++;O=e(V++);O.setAttribute("d","M "+d.positionScreen.x+" "+d.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+g.positionScreen.x+","+g.positionScreen.y+" L "+k.positionScreen.x+","+k.positionScreen.y+"z");p instanceof THREE.MeshBasicMaterial?A.hex=p.color.hex:p instanceof THREE.MeshLambertMaterial?I?(z.r=S.r,z.g=S.g,z.b=S.b,b(o,m,z),A.r=Math.max(0,Math.min(p.color.r*z.r,1)),A.g=Math.max(0,Math.min(p.color.g*z.g,1)),A.b=Math.max(0,Math.min(p.color.b* z.b,1)),A.updateHex()):A.hex=p.color.hex:p instanceof THREE.MeshDepthMaterial?(F=1-p.__2near/(p.__farPlusNear-m.z*p.__farMinusNear),A.setRGB(F,F,F)):p instanceof THREE.MeshNormalMaterial&&A.setRGB(f(m.normalWorld.x),f(m.normalWorld.y),f(m.normalWorld.z));p.wireframe?O.setAttribute("style","fill: none; stroke: #"+h(A.hex.toString(16))+"; stroke-width: "+p.wireframeLinewidth+"; stroke-opacity: "+p.opacity+"; stroke-linecap: "+p.wireframeLinecap+"; stroke-linejoin: "+p.wireframeLinejoin):O.setAttribute("style", "fill: #"+h(A.hex.toString(16))+"; fill-opacity: "+p.opacity);n.appendChild(O)}function e(b){g[b]==null&&(g[b]=document.createElementNS("http://www.w3.org/2000/svg","path"),$==0&&g[b].setAttribute("shape-rendering","crispEdges"));return g[b]}function f(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}function h(b){for(;b.length<6;)b="0"+b;return b}var j=this,k=null,m=new THREE.Projector,n=document.createElementNS("http://www.w3.org/2000/svg","svg"),o,p,t,u,v,C,E,y,D=new THREE.Rectangle,x=new THREE.Rectangle,I= !1,A=new THREE.Color(16777215),z=new THREE.Color(16777215),S=new THREE.Color(0),G=new THREE.Color(0),M=new THREE.Color(0),F,N=new THREE.Vector3,g=[],Y=[],O,V,L,$=1;this.domElement=n;this.sortElements=this.sortObjects=this.autoClear=!0;this.data={vertices:0,faces:0};this.setQuality=function(b){switch(b){case "high":$=1;break;case "low":$=0}};this.setSize=function(b,d){o=b;p=d;t=o/2;u=p/2;n.setAttribute("viewBox",-t+" "+-u+" "+o+" "+p);n.setAttribute("width",o);n.setAttribute("height",p);D.set(-t,-u, t,u)};this.clear=function(){for(;n.childNodes.length>0;)n.removeChild(n.childNodes[0])};this.render=function(b,g){var e,f,p,o,z,A,F,P;this.autoClear&&this.clear();j.data.vertices=0;j.data.faces=0;k=m.projectScene(b,g,this.sortElements);L=V=0;if(I=b.lights.length>0){F=b.lights;S.setRGB(0,0,0);G.setRGB(0,0,0);M.setRGB(0,0,0);e=0;for(f=F.length;e 0\nuniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];\nuniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];\n#endif\n#if MAX_POINT_LIGHTS > 0\nuniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];\nuniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];\nuniform float pointLightDistance[ MAX_POINT_LIGHTS ];\n#ifdef PHONG\nvarying vec4 vPointLight[ MAX_POINT_LIGHTS ];\n#endif\n#endif", lights_vertex:"if ( !enableLighting ) {\nvLightWeighting = vec3( 1.0 );\n} else {\nvLightWeighting = ambientLightColor;\n#if MAX_DIR_LIGHTS > 0\nfor( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {\nvec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );\nfloat directionalLightWeighting = max( dot( transformedNormal, normalize( lDirection.xyz ) ), 0.0 );\nvLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;\n}\n#endif\n#if MAX_POINT_LIGHTS > 0\nfor( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {\nvec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );\nvec3 lVector = lPosition.xyz - mvPosition.xyz;\nfloat lDistance = 1.0;\nif ( pointLightDistance[ i ] > 0.0 )\nlDistance = 1.0 - min( ( length( lVector ) / pointLightDistance[ i ] ), 1.0 );\nlVector = normalize( lVector );\nfloat pointLightWeighting = max( dot( transformedNormal, lVector ), 0.0 );\nvLightWeighting += pointLightColor[ i ] * pointLightWeighting * lDistance;\n#ifdef PHONG\nvPointLight[ i ] = vec4( lVector, lDistance );\n#endif\n}\n#endif\n}", lights_pars_fragment:"#if MAX_DIR_LIGHTS > 0\nuniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];\n#endif\n#if MAX_POINT_LIGHTS > 0\nvarying vec4 vPointLight[ MAX_POINT_LIGHTS ];\n#endif\nvarying vec3 vViewPosition;\nvarying vec3 vNormal;",lights_fragment:"vec3 normal = normalize( vNormal );\nvec3 viewPosition = normalize( vViewPosition );\nvec4 mColor = vec4( diffuse, opacity );\nvec4 mSpecular = vec4( specular, opacity );\n#if MAX_POINT_LIGHTS > 0\nvec4 pointDiffuse = vec4( 0.0 );\nvec4 pointSpecular = vec4( 0.0 );\nfor ( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {\nvec3 pointVector = normalize( vPointLight[ i ].xyz );\nvec3 pointHalfVector = normalize( vPointLight[ i ].xyz + vViewPosition );\nfloat pointDistance = vPointLight[ i ].w;\nfloat pointDotNormalHalf = dot( normal, pointHalfVector );\nfloat pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );\nfloat pointSpecularWeight = 0.0;\nif ( pointDotNormalHalf >= 0.0 )\npointSpecularWeight = pow( pointDotNormalHalf, shininess );\npointDiffuse += mColor * pointDiffuseWeight * pointDistance;\npointSpecular += mSpecular * pointSpecularWeight * pointDistance;\n}\n#endif\n#if MAX_DIR_LIGHTS > 0\nvec4 dirDiffuse = vec4( 0.0 );\nvec4 dirSpecular = vec4( 0.0 );\nfor( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {\nvec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );\nvec3 dirVector = normalize( lDirection.xyz );\nvec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );\nfloat dirDotNormalHalf = dot( normal, dirHalfVector );\nfloat dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );\nfloat dirSpecularWeight = 0.0;\nif ( dirDotNormalHalf >= 0.0 )\ndirSpecularWeight = pow( dirDotNormalHalf, shininess );\ndirDiffuse += mColor * dirDiffuseWeight;\ndirSpecular += mSpecular * dirSpecularWeight;\n}\n#endif\nvec4 totalLight = vec4( ambient, opacity );\n#if MAX_DIR_LIGHTS > 0\ntotalLight += dirDiffuse + dirSpecular;\n#endif\n#if MAX_POINT_LIGHTS > 0\ntotalLight += pointDiffuse + pointSpecular;\n#endif\ngl_FragColor = gl_FragColor * totalLight;", color_pars_fragment:"#ifdef USE_COLOR\nvarying vec3 vColor;\n#endif",color_fragment:"#ifdef USE_COLOR\ngl_FragColor = gl_FragColor * vec4( vColor, opacity );\n#endif",color_pars_vertex:"#ifdef USE_COLOR\nvarying vec3 vColor;\n#endif",color_vertex:"#ifdef USE_COLOR\nvColor = color;\n#endif",skinning_pars_vertex:"#ifdef USE_SKINNING\nuniform mat4 boneGlobalMatrices[ MAX_BONES ];\n#endif",skinning_vertex:"#ifdef USE_SKINNING\ngl_Position = ( boneGlobalMatrices[ int( skinIndex.x ) ] * skinVertexA ) * skinWeight.x;\ngl_Position += ( boneGlobalMatrices[ int( skinIndex.y ) ] * skinVertexB ) * skinWeight.y;\ngl_Position = projectionMatrix * viewMatrix * objectMatrix * gl_Position;\n#endif", morphtarget_pars_vertex:"#ifdef USE_MORPHTARGETS\nuniform float morphTargetInfluences[ 8 ];\n#endif",morphtarget_vertex:"#ifdef USE_MORPHTARGETS\nvec3 morphed = vec3( 0.0, 0.0, 0.0 );\nmorphed += ( morphTarget0 - position ) * morphTargetInfluences[ 0 ];\nmorphed += ( morphTarget1 - position ) * morphTargetInfluences[ 1 ];\nmorphed += ( morphTarget2 - position ) * morphTargetInfluences[ 2 ];\nmorphed += ( morphTarget3 - position ) * morphTargetInfluences[ 3 ];\nmorphed += ( morphTarget4 - position ) * morphTargetInfluences[ 4 ];\nmorphed += ( morphTarget5 - position ) * morphTargetInfluences[ 5 ];\nmorphed += ( morphTarget6 - position ) * morphTargetInfluences[ 6 ];\nmorphed += ( morphTarget7 - position ) * morphTargetInfluences[ 7 ];\nmorphed += position;\ngl_Position = projectionMatrix * modelViewMatrix * vec4( morphed, 1.0 );\n#endif", default_vertex:"#ifndef USE_MORPHTARGETS\n#ifndef USE_SKINNING\ngl_Position = projectionMatrix * mvPosition;\n#endif\n#endif"};THREE.UniformsUtils={merge:function(b){var c,d,e,f={};for(c=0;c=0)g.bindBuffer(g.ARRAY_BUFFER,f.__webglVertexBuffer),g.vertexAttribPointer(b.position,3,g.FLOAT,!1,0,0);else{c=h.program.attributes;j.morphTargetBase!==-1?(g.bindBuffer(g.ARRAY_BUFFER,f.__webglMorphTargetsBuffers[j.morphTargetBase]),g.vertexAttribPointer(c.position,3,g.FLOAT,!1,0,0)):c.position>=0&&(g.bindBuffer(g.ARRAY_BUFFER, f.__webglVertexBuffer),g.vertexAttribPointer(c.position,3,g.FLOAT,!1,0,0));if(j.morphTargetForcedOrder.length)for(var e=0,m=j.morphTargetForcedOrder,n=j.morphTargetInfluences;ep&&(o=t,p=n[o]);g.bindBuffer(g.ARRAY_BUFFER,f.__webglMorphTargetsBuffers[o]);g.vertexAttribPointer(c["morphTarget"+e],3,g.FLOAT,!1,0,0);j.__webglMorphTargetInfluences[e]=p;m[o]=1;p=-1;e++}}h.program.uniforms.morphTargetInfluences!==null&&g.uniform1fv(h.program.uniforms.morphTargetInfluences,j.__webglMorphTargetInfluences)}if(f.__webglCustomAttributes)for(k in f.__webglCustomAttributes)b[k]>=0&&(c=f.__webglCustomAttributes[k],g.bindBuffer(g.ARRAY_BUFFER, c.buffer),g.vertexAttribPointer(b[k],c.size,g.FLOAT,!1,0,0));b.color>=0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglColorBuffer),g.vertexAttribPointer(b.color,3,g.FLOAT,!1,0,0));b.normal>=0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglNormalBuffer),g.vertexAttribPointer(b.normal,3,g.FLOAT,!1,0,0));b.tangent>=0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglTangentBuffer),g.vertexAttribPointer(b.tangent,4,g.FLOAT,!1,0,0));b.uv>=0&&(f.__webglUVBuffer?(g.bindBuffer(g.ARRAY_BUFFER,f.__webglUVBuffer),g.vertexAttribPointer(b.uv, 2,g.FLOAT,!1,0,0),g.enableVertexAttribArray(b.uv)):g.disableVertexAttribArray(b.uv));b.uv2>=0&&(f.__webglUV2Buffer?(g.bindBuffer(g.ARRAY_BUFFER,f.__webglUV2Buffer),g.vertexAttribPointer(b.uv2,2,g.FLOAT,!1,0,0),g.enableVertexAttribArray(b.uv2)):g.disableVertexAttribArray(b.uv2));h.skinning&&b.skinVertexA>=0&&b.skinVertexB>=0&&b.skinIndex>=0&&b.skinWeight>=0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglSkinVertexABuffer),g.vertexAttribPointer(b.skinVertexA,4,g.FLOAT,!1,0,0),g.bindBuffer(g.ARRAY_BUFFER,f.__webglSkinVertexBBuffer), g.vertexAttribPointer(b.skinVertexB,4,g.FLOAT,!1,0,0),g.bindBuffer(g.ARRAY_BUFFER,f.__webglSkinIndicesBuffer),g.vertexAttribPointer(b.skinIndex,4,g.FLOAT,!1,0,0),g.bindBuffer(g.ARRAY_BUFFER,f.__webglSkinWeightsBuffer),g.vertexAttribPointer(b.skinWeight,4,g.FLOAT,!1,0,0));j instanceof THREE.Mesh?(h.wireframe?(g.lineWidth(h.wireframeLinewidth),g.bindBuffer(g.ELEMENT_ARRAY_BUFFER,f.__webglLineBuffer),g.drawElements(g.LINES,f.__webglLineCount,g.UNSIGNED_SHORT,0)):(g.bindBuffer(g.ELEMENT_ARRAY_BUFFER, f.__webglFaceBuffer),g.drawElements(g.TRIANGLES,f.__webglFaceCount,g.UNSIGNED_SHORT,0)),N.data.vertices+=f.__webglFaceCount,N.data.faces+=f.__webglFaceCount/3,N.data.drawCalls++):j instanceof THREE.Line?(j=j.type==THREE.LineStrip?g.LINE_STRIP:g.LINES,g.lineWidth(h.linewidth),g.drawArrays(j,0,f.__webglLineCount),N.data.drawCalls++):j instanceof THREE.ParticleSystem?(g.drawArrays(g.POINTS,0,f.__webglParticleCount),N.data.drawCalls++):j instanceof THREE.Ribbon&&(g.drawArrays(g.TRIANGLE_STRIP,0,f.__webglVertexCount), N.data.drawCalls++)}}function f(b,d,c){if(!b.__webglVertexBuffer)b.__webglVertexBuffer=g.createBuffer();if(!b.__webglNormalBuffer)b.__webglNormalBuffer=g.createBuffer();b.hasPos&&(g.bindBuffer(g.ARRAY_BUFFER,b.__webglVertexBuffer),g.bufferData(g.ARRAY_BUFFER,b.positionArray,g.DYNAMIC_DRAW),g.enableVertexAttribArray(d.attributes.position),g.vertexAttribPointer(d.attributes.position,3,g.FLOAT,!1,0,0));if(b.hasNormal){g.bindBuffer(g.ARRAY_BUFFER,b.__webglNormalBuffer);if(c==THREE.FlatShading){var e, f,h,j,k,m,n,p,o,t,u=b.count*3;for(t=0;t0&&y[0]0&&y[1]0.0010&&k.scale>0.0010)v[0]=k.x,v[1]=k.y,v[2]=k.z,t=k.size*k.scale/ca,u[0]=t*n,u[1]=t,g.uniform3fv(x.screenPosition,v),g.uniform2fv(x.scale,u),g.uniform1f(x.rotation,k.rotation),g.uniform1f(x.opacity,k.opacity),I(k.blending),z(k.texture,1),g.drawElements(g.TRIANGLES,6,g.UNSIGNED_SHORT,0)}g.enable(g.CULL_FACE);g.enable(g.DEPTH_TEST);g.depthMask(L)}function E(b,d){b._modelViewMatrix.multiplyToArray(d.matrixWorldInverse,b.matrixWorld,b._modelViewMatrixArray);THREE.Matrix4.makeInvert3x3(b._modelViewMatrix).transposeIntoArray(b._normalMatrixArray)} function y(b){var d,e,f,h,j;if(b instanceof THREE.Mesh){e=b.geometry;for(d in e.geometryGroups){f=e.geometryGroups[d];j=!1;for(h in f.__webglCustomAttributes)if(f.__webglCustomAttributes[h].needsUpdate){j=!0;break}if(e.__dirtyVertices||e.__dirtyMorphTargets||e.__dirtyElements||e.__dirtyUvs||e.__dirtyNormals||e.__dirtyColors||e.__dirtyTangents||j){j=b;var k=g.DYNAMIC_DRAW;if(f.__inittedArrays){var m=void 0,n=void 0,p=void 0,o=void 0,t=p=void 0,u=void 0,v=void 0,y=void 0,x=void 0,E=void 0,C=void 0, F=void 0,ha=void 0,z=void 0,A=void 0,D=void 0,I=void 0,B=o=y=o=v=u=void 0,J=void 0,w=J=B=u=void 0,G=void 0,M=w=J=B=p=p=t=y=o=w=J=B=G=w=J=B=G=w=J=B=void 0,da=0,K=0,la=0,L=0,P=0,S=0,N=0,R=0,O=0,H=0,Q=0,J=B=0,U=f.__vertexArray,Z=f.__uvArray,$=f.__uv2Array,fa=f.__normalArray,T=f.__tangentArray,ma=f.__colorArray,V=f.__skinVertexAArray,W=f.__skinVertexBArray,X=f.__skinIndexArray,Y=f.__skinWeightArray,ga=f.__morphTargetsArrays,ca=f.__webglCustomAttributes,w=void 0,aa=f.__faceArray,ea=f.__lineArray,ka=f.__needsSmoothNormals, E=f.__vertexColorType,x=f.__uvType,C=f.__normalType,oa=j.geometry,ya=oa.__dirtyVertices,va=oa.__dirtyElements,qa=oa.__dirtyUvs,wa=oa.__dirtyNormals,Ua=oa.__dirtyTangents,Va=oa.__dirtyColors,Wa=oa.__dirtyMorphTargets,Da=oa.vertices,Za=f.faces,bb=oa.faces,$a=oa.faceVertexUvs[0],ab=oa.faceVertexUvs[1],Ea=oa.skinVerticesA,Fa=oa.skinVerticesB,Ga=oa.skinIndices,xa=oa.skinWeights,Ba=j instanceof THREE.ShadowVolume?oa.edgeFaces:void 0;morphTargets=oa.morphTargets;if(ca)for(M in ca)ca[M].offset=0,ca[M].offsetSrc= 0;m=0;for(n=Za.length;m0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglColorBuffer),g.bufferData(g.ARRAY_BUFFER,ma,k));wa&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglNormalBuffer),g.bufferData(g.ARRAY_BUFFER,fa,k));Ua&&oa.hasTangents&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglTangentBuffer),g.bufferData(g.ARRAY_BUFFER,T,k));qa&&la>0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglUVBuffer),g.bufferData(g.ARRAY_BUFFER,Z,k));qa&&L>0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglUV2Buffer),g.bufferData(g.ARRAY_BUFFER, $,k));va&&(g.bindBuffer(g.ELEMENT_ARRAY_BUFFER,f.__webglFaceBuffer),g.bufferData(g.ELEMENT_ARRAY_BUFFER,aa,k),g.bindBuffer(g.ELEMENT_ARRAY_BUFFER,f.__webglLineBuffer),g.bufferData(g.ELEMENT_ARRAY_BUFFER,ea,k));H>0&&(g.bindBuffer(g.ARRAY_BUFFER,f.__webglSkinVertexABuffer),g.bufferData(g.ARRAY_BUFFER,V,k),g.bindBuffer(g.ARRAY_BUFFER,f.__webglSkinVertexBBuffer),g.bufferData(g.ARRAY_BUFFER,W,k),g.bindBuffer(g.ARRAY_BUFFER,f.__webglSkinIndicesBuffer),g.bufferData(g.ARRAY_BUFFER,X,k),g.bindBuffer(g.ARRAY_BUFFER, f.__webglSkinWeightsBuffer),g.bufferData(g.ARRAY_BUFFER,Y,k));j.dynamic||(delete f.__inittedArrays,delete f.__colorArray,delete f.__normalArray,delete f.__tangentArray,delete f.__uvArray,delete f.__uv2Array,delete f.__faceArray,delete f.__vertexArray,delete f.__lineArray,delete f.__skinVertexAArray,delete f.__skinVertexBArray,delete f.__skinIndexArray,delete f.__skinWeightArray)}}}e.__dirtyVertices=!1;e.__dirtyMorphTargets=!1;e.__dirtyElements=!1;e.__dirtyUvs=!1;e.__dirtyNormals=!1;e.__dirtyTangents= !1;e.__dirtyColors=!1}else if(b instanceof THREE.Ribbon){e=b.geometry;if(e.__dirtyVertices||e.__dirtyColors){b=e;d=g.DYNAMIC_DRAW;x=b.vertices;f=b.colors;E=x.length;j=f.length;C=b.__vertexArray;k=b.__colorArray;F=b.__dirtyColors;if(b.__dirtyVertices){for(m=0;m65535&&(o[k].counter+=1,m=o[k].hash+"_"+o[k].counter,b.geometryGroups[m]==void 0&&(b.geometryGroups[m]={faces:[],materials:j, vertices:0,numMorphTargets:n})),b.geometryGroups[m].faces.push(g),b.geometryGroups[m].vertices+=h}function x(b,d,c){b.push({buffer:d,object:c,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function I(b){if(b!=Q){switch(b){case THREE.AdditiveBlending:g.blendEquation(g.FUNC_ADD);g.blendFunc(g.SRC_ALPHA,g.ONE);break;case THREE.SubtractiveBlending:g.blendEquation(g.FUNC_ADD);g.blendFunc(g.ZERO,g.ONE_MINUS_SRC_COLOR);break;case THREE.MultiplyBlending:g.blendEquation(g.FUNC_ADD);g.blendFunc(g.ZERO, g.SRC_COLOR);break;default:g.blendEquationSeparate(g.FUNC_ADD,g.FUNC_ADD),g.blendFuncSeparate(g.SRC_ALPHA,g.ONE_MINUS_SRC_ALPHA,g.ONE,g.ONE_MINUS_SRC_ALPHA)}Q=b}}function A(b,d,c){(c.width&c.width-1)==0&&(c.height&c.height-1)==0?(g.texParameteri(b,g.TEXTURE_WRAP_S,F(d.wrapS)),g.texParameteri(b,g.TEXTURE_WRAP_T,F(d.wrapT)),g.texParameteri(b,g.TEXTURE_MAG_FILTER,F(d.magFilter)),g.texParameteri(b,g.TEXTURE_MIN_FILTER,F(d.minFilter)),g.generateMipmap(b)):(g.texParameteri(b,g.TEXTURE_WRAP_S,g.CLAMP_TO_EDGE), g.texParameteri(b,g.TEXTURE_WRAP_T,g.CLAMP_TO_EDGE),g.texParameteri(b,g.TEXTURE_MAG_FILTER,M(d.magFilter)),g.texParameteri(b,g.TEXTURE_MIN_FILTER,M(d.minFilter)))}function z(b,d){if(b.needsUpdate){if(b.__webglTexture)b.__webglTexture=g.deleteTexture(b.__webglTexture);b.__webglTexture=g.createTexture();g.bindTexture(g.TEXTURE_2D,b.__webglTexture);g.texImage2D(g.TEXTURE_2D,0,g.RGBA,g.RGBA,g.UNSIGNED_BYTE,b.image);A(g.TEXTURE_2D,b,b.image);g.bindTexture(g.TEXTURE_2D,null);b.needsUpdate=!1}g.activeTexture(g.TEXTURE0+ d);g.bindTexture(g.TEXTURE_2D,b.__webglTexture)}function S(b){if(b&&!b.__webglFramebuffer){if(b.depthBuffer===void 0)b.depthBuffer=!0;if(b.stencilBuffer===void 0)b.stencilBuffer=!0;b.__webglFramebuffer=g.createFramebuffer();b.__webglRenderbuffer=g.createRenderbuffer();b.__webglTexture=g.createTexture();g.bindTexture(g.TEXTURE_2D,b.__webglTexture);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_WRAP_S,F(b.wrapS));g.texParameteri(g.TEXTURE_2D,g.TEXTURE_WRAP_T,F(b.wrapT));g.texParameteri(g.TEXTURE_2D,g.TEXTURE_MAG_FILTER, F(b.magFilter));g.texParameteri(g.TEXTURE_2D,g.TEXTURE_MIN_FILTER,F(b.minFilter));g.texImage2D(g.TEXTURE_2D,0,F(b.format),b.width,b.height,0,F(b.format),F(b.type),null);g.bindRenderbuffer(g.RENDERBUFFER,b.__webglRenderbuffer);g.bindFramebuffer(g.FRAMEBUFFER,b.__webglFramebuffer);g.framebufferTexture2D(g.FRAMEBUFFER,g.COLOR_ATTACHMENT0,g.TEXTURE_2D,b.__webglTexture,0);b.depthBuffer&&!b.stencilBuffer?(g.renderbufferStorage(g.RENDERBUFFER,g.DEPTH_COMPONENT16,b.width,b.height),g.framebufferRenderbuffer(g.FRAMEBUFFER, g.DEPTH_ATTACHMENT,g.RENDERBUFFER,b.__webglRenderbuffer)):b.depthBuffer&&b.stencilBuffer?(g.renderbufferStorage(g.RENDERBUFFER,g.DEPTH_STENCIL,b.width,b.height),g.framebufferRenderbuffer(g.FRAMEBUFFER,g.DEPTH_STENCIL_ATTACHMENT,g.RENDERBUFFER,b.__webglRenderbuffer)):g.renderbufferStorage(g.RENDERBUFFER,g.RGBA4,b.width,b.height);g.bindTexture(g.TEXTURE_2D,null);g.bindRenderbuffer(g.RENDERBUFFER,null);g.bindFramebuffer(g.FRAMEBUFFER,null)}var d,c;b?(d=b.__webglFramebuffer,c=b.width,b=b.height):(d=null, c=ga,b=ca);d!=V&&(g.bindFramebuffer(g.FRAMEBUFFER,d),g.viewport(U,ka,c,b),V=d)}function G(b,d){var c;b=="fragment"?c=g.createShader(g.FRAGMENT_SHADER):b=="vertex"&&(c=g.createShader(g.VERTEX_SHADER));g.shaderSource(c,d);g.compileShader(c);if(!g.getShaderParameter(c,g.COMPILE_STATUS))return console.error(g.getShaderInfoLog(c)),console.error(d),null;return c}function M(b){switch(b){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return g.NEAREST;default:return g.LINEAR}} function F(b){switch(b){case THREE.RepeatWrapping:return g.REPEAT;case THREE.ClampToEdgeWrapping:return g.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return g.MIRRORED_REPEAT;case THREE.NearestFilter:return g.NEAREST;case THREE.NearestMipMapNearestFilter:return g.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return g.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return g.LINEAR;case THREE.LinearMipMapNearestFilter:return g.LINEAR_MIPMAP_NEAREST;case THREE.LinearMipMapLinearFilter:return g.LINEAR_MIPMAP_LINEAR; case THREE.ByteType:return g.BYTE;case THREE.UnsignedByteType:return g.UNSIGNED_BYTE;case THREE.ShortType:return g.SHORT;case THREE.UnsignedShortType:return g.UNSIGNED_SHORT;case THREE.IntType:return g.INT;case THREE.UnsignedShortType:return g.UNSIGNED_INT;case THREE.FloatType:return g.FLOAT;case THREE.AlphaFormat:return g.ALPHA;case THREE.RGBFormat:return g.RGB;case THREE.RGBAFormat:return g.RGBA;case THREE.LuminanceFormat:return g.LUMINANCE;case THREE.LuminanceAlphaFormat:return g.LUMINANCE_ALPHA}return 0} var N=this,g,Y=[],O=null,V=null,L=!0,$=null,T=null,Q=null,fa=null,U=0,ka=0,ga=0,ca=0,aa=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],R=new THREE.Matrix4,P=new Float32Array(16),W=new Float32Array(16),X=new THREE.Vector4,ea={ambient:[0,0,0],directional:{length:0,colors:[],positions:[]},point:{length:0,colors:[],positions:[],distances:[]}},b=b||{},ha=b.canvas!==void 0?b.canvas:document.createElement("canvas"),J=b.stencil!==void 0?b.stencil: !0,da=b.antialias!==void 0?b.antialias:!1,la=b.clearColor!==void 0?new THREE.Color(b.clearColor):new THREE.Color(0),ma=b.clearAlpha!==void 0?b.clearAlpha:0;this.data={vertices:0,faces:0,drawCalls:0};this.maxMorphTargets=8;this.domElement=ha;this.sortObjects=this.autoClear=!0;try{if(!(g=ha.getContext("experimental-webgl",{antialias:da,stencil:J})))throw"Error creating WebGL context.";}catch(ya){console.error(ya)}console.log(navigator.userAgent+" | "+g.getParameter(g.VERSION)+" | "+g.getParameter(g.VENDOR)+ " | "+g.getParameter(g.RENDERER)+" | "+g.getParameter(g.SHADING_LANGUAGE_VERSION));g.clearColor(0,0,0,1);g.clearDepth(1);g.enable(g.DEPTH_TEST);g.depthFunc(g.LEQUAL);g.frontFace(g.CCW);g.cullFace(g.BACK);g.enable(g.CULL_FACE);g.enable(g.BLEND);g.blendEquation(g.FUNC_ADD);g.blendFunc(g.SRC_ALPHA,g.ONE_MINUS_SRC_ALPHA);g.clearColor(la.r,la.g,la.b,ma);this.context=g;var va=g.getParameter(g.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0;if(J){var Z={};Z.vertices=new Float32Array(12);Z.faces=new Uint16Array(6);Z.darkness= 0.5;Z.vertices[0]=-20;Z.vertices[1]=-20;Z.vertices[2]=-1;Z.vertices[3]=20;Z.vertices[4]=-20;Z.vertices[5]=-1;Z.vertices[6]=20;Z.vertices[7]=20;Z.vertices[8]=-1;Z.vertices[9]=-20;Z.vertices[10]=20;Z.vertices[11]=-1;Z.faces[0]=0;Z.faces[1]=1;Z.faces[2]=2;Z.faces[3]=0;Z.faces[4]=2;Z.faces[5]=3;Z.vertexBuffer=g.createBuffer();Z.elementBuffer=g.createBuffer();g.bindBuffer(g.ARRAY_BUFFER,Z.vertexBuffer);g.bufferData(g.ARRAY_BUFFER,Z.vertices,g.STATIC_DRAW);g.bindBuffer(g.ELEMENT_ARRAY_BUFFER,Z.elementBuffer); g.bufferData(g.ELEMENT_ARRAY_BUFFER,Z.faces,g.STATIC_DRAW);Z.program=g.createProgram();g.attachShader(Z.program,G("fragment",THREE.ShaderLib.shadowPost.fragmentShader));g.attachShader(Z.program,G("vertex",THREE.ShaderLib.shadowPost.vertexShader));g.linkProgram(Z.program);Z.vertexLocation=g.getAttribLocation(Z.program,"position");Z.projectionLocation=g.getUniformLocation(Z.program,"projectionMatrix");Z.darknessLocation=g.getUniformLocation(Z.program,"darkness")}var K={};K.vertices=new Float32Array(16); K.faces=new Uint16Array(6);b=0;K.vertices[b++]=-1;K.vertices[b++]=-1;K.vertices[b++]=0;K.vertices[b++]=0;K.vertices[b++]=1;K.vertices[b++]=-1;K.vertices[b++]=1;K.vertices[b++]=0;K.vertices[b++]=1;K.vertices[b++]=1;K.vertices[b++]=1;K.vertices[b++]=1;K.vertices[b++]=-1;K.vertices[b++]=1;K.vertices[b++]=0;K.vertices[b++]=1;b=0;K.faces[b++]=0;K.faces[b++]=1;K.faces[b++]=2;K.faces[b++]=0;K.faces[b++]=2;K.faces[b++]=3;K.vertexBuffer=g.createBuffer();K.elementBuffer=g.createBuffer();K.tempTexture=g.createTexture(); K.occlusionTexture=g.createTexture();g.bindBuffer(g.ARRAY_BUFFER,K.vertexBuffer);g.bufferData(g.ARRAY_BUFFER,K.vertices,g.STATIC_DRAW);g.bindBuffer(g.ELEMENT_ARRAY_BUFFER,K.elementBuffer);g.bufferData(g.ELEMENT_ARRAY_BUFFER,K.faces,g.STATIC_DRAW);g.bindTexture(g.TEXTURE_2D,K.tempTexture);g.texImage2D(g.TEXTURE_2D,0,g.RGB,16,16,0,g.RGB,g.UNSIGNED_BYTE,null);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_WRAP_S,g.CLAMP_TO_EDGE);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_WRAP_T,g.CLAMP_TO_EDGE);g.texParameteri(g.TEXTURE_2D, g.TEXTURE_MAG_FILTER,g.NEAREST);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_MIN_FILTER,g.NEAREST);g.bindTexture(g.TEXTURE_2D,K.occlusionTexture);g.texImage2D(g.TEXTURE_2D,0,g.RGBA,16,16,0,g.RGBA,g.UNSIGNED_BYTE,null);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_WRAP_S,g.CLAMP_TO_EDGE);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_WRAP_T,g.CLAMP_TO_EDGE);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_MAG_FILTER,g.NEAREST);g.texParameteri(g.TEXTURE_2D,g.TEXTURE_MIN_FILTER,g.NEAREST);g.getParameter(g.MAX_VERTEX_TEXTURE_IMAGE_UNITS)<= 0?(K.hasVertexTexture=!1,K.program=g.createProgram(),g.attachShader(K.program,G("fragment",THREE.ShaderLib.lensFlare.fragmentShader)),g.attachShader(K.program,G("vertex",THREE.ShaderLib.lensFlare.vertexShader))):(K.hasVertexTexture=!0,K.program=g.createProgram(),g.attachShader(K.program,G("fragment",THREE.ShaderLib.lensFlareVertexTexture.fragmentShader)),g.attachShader(K.program,G("vertex",THREE.ShaderLib.lensFlareVertexTexture.vertexShader)));g.linkProgram(K.program);K.attributes={};K.uniforms={}; K.attributes.vertex=g.getAttribLocation(K.program,"position");K.attributes.uv=g.getAttribLocation(K.program,"UV");K.uniforms.renderType=g.getUniformLocation(K.program,"renderType");K.uniforms.map=g.getUniformLocation(K.program,"map");K.uniforms.occlusionMap=g.getUniformLocation(K.program,"occlusionMap");K.uniforms.opacity=g.getUniformLocation(K.program,"opacity");K.uniforms.scale=g.getUniformLocation(K.program,"scale");K.uniforms.rotation=g.getUniformLocation(K.program,"rotation");K.uniforms.screenPosition= g.getUniformLocation(K.program,"screenPosition");var wa=!1;_sprite={};_sprite.vertices=new Float32Array(16);_sprite.faces=new Uint16Array(6);b=0;_sprite.vertices[b++]=-1;_sprite.vertices[b++]=-1;_sprite.vertices[b++]=0;_sprite.vertices[b++]=0;_sprite.vertices[b++]=1;_sprite.vertices[b++]=-1;_sprite.vertices[b++]=1;_sprite.vertices[b++]=0;_sprite.vertices[b++]=1;_sprite.vertices[b++]=1;_sprite.vertices[b++]=1;_sprite.vertices[b++]=1;_sprite.vertices[b++]=-1;_sprite.vertices[b++]=1;_sprite.vertices[b++]= 0;_sprite.vertices[b++]=1;b=0;_sprite.faces[b++]=0;_sprite.faces[b++]=1;_sprite.faces[b++]=2;_sprite.faces[b++]=0;_sprite.faces[b++]=2;_sprite.faces[b++]=3;_sprite.vertexBuffer=g.createBuffer();_sprite.elementBuffer=g.createBuffer();g.bindBuffer(g.ARRAY_BUFFER,_sprite.vertexBuffer);g.bufferData(g.ARRAY_BUFFER,_sprite.vertices,g.STATIC_DRAW);g.bindBuffer(g.ELEMENT_ARRAY_BUFFER,_sprite.elementBuffer);g.bufferData(g.ELEMENT_ARRAY_BUFFER,_sprite.faces,g.STATIC_DRAW);_sprite.program=g.createProgram(); g.attachShader(_sprite.program,G("fragment",THREE.ShaderLib.sprite.fragmentShader));g.attachShader(_sprite.program,G("vertex",THREE.ShaderLib.sprite.vertexShader));g.linkProgram(_sprite.program);_sprite.attributes={};_sprite.uniforms={};_sprite.attributes.position=g.getAttribLocation(_sprite.program,"position");_sprite.attributes.uv=g.getAttribLocation(_sprite.program,"uv");_sprite.uniforms.uvOffset=g.getUniformLocation(_sprite.program,"uvOffset");_sprite.uniforms.uvScale=g.getUniformLocation(_sprite.program, "uvScale");_sprite.uniforms.rotation=g.getUniformLocation(_sprite.program,"rotation");_sprite.uniforms.scale=g.getUniformLocation(_sprite.program,"scale");_sprite.uniforms.alignment=g.getUniformLocation(_sprite.program,"alignment");_sprite.uniforms.map=g.getUniformLocation(_sprite.program,"map");_sprite.uniforms.opacity=g.getUniformLocation(_sprite.program,"opacity");_sprite.uniforms.useScreenCoordinates=g.getUniformLocation(_sprite.program,"useScreenCoordinates");_sprite.uniforms.affectedByDistance= g.getUniformLocation(_sprite.program,"affectedByDistance");_sprite.uniforms.screenPosition=g.getUniformLocation(_sprite.program,"screenPosition");_sprite.uniforms.modelViewMatrix=g.getUniformLocation(_sprite.program,"modelViewMatrix");_sprite.uniforms.projectionMatrix=g.getUniformLocation(_sprite.program,"projectionMatrix");var qa=!1;this.setSize=function(b,d){ha.width=b;ha.height=d;this.setViewport(0,0,ha.width,ha.height)};this.setViewport=function(b,d,c,e){U=b;ka=d;ga=c;ca=e;g.viewport(U,ka,ga, ca)};this.setScissor=function(b,d,c,e){g.scissor(b,d,c,e)};this.enableScissorTest=function(b){b?g.enable(g.SCISSOR_TEST):g.disable(g.SCISSOR_TEST)};this.enableDepthBufferWrite=function(b){L=b;g.depthMask(b)};this.setClearColorHex=function(b,d){la.setHex(b);ma=d;g.clearColor(la.r,la.g,la.b,ma)};this.setClearColor=function(b,d){la.copy(b);ma=d;g.clearColor(la.r,la.g,la.b,ma)};this.clear=function(){g.clear(g.COLOR_BUFFER_BIT|g.DEPTH_BUFFER_BIT|g.STENCIL_BUFFER_BIT)};this.setStencilShadowDarkness=function(b){Z.darkness= b};this.getContext=function(){return g};this.initMaterial=function(b,d,c,e){var f,h,j;b instanceof THREE.MeshDepthMaterial?j="depth":b instanceof THREE.ShadowVolumeDynamicMaterial?j="shadowVolumeDynamic":b instanceof THREE.MeshNormalMaterial?j="normal":b instanceof THREE.MeshBasicMaterial?j="basic":b instanceof THREE.MeshLambertMaterial?j="lambert":b instanceof THREE.MeshPhongMaterial?j="phong":b instanceof THREE.LineBasicMaterial?j="basic":b instanceof THREE.ParticleBasicMaterial&&(j="particle_basic"); if(j){var k=THREE.ShaderLib[j];b.uniforms=THREE.UniformsUtils.clone(k.uniforms);b.vertexShader=k.vertexShader;b.fragmentShader=k.fragmentShader}var m,o,n;m=n=k=0;for(o=d.length;m=0&&g.enableVertexAttribArray(p.position);p.color>=0&&g.enableVertexAttribArray(p.color); p.normal>=0&&g.enableVertexAttribArray(p.normal);p.tangent>=0&&g.enableVertexAttribArray(p.tangent);b.skinning&&p.skinVertexA>=0&&p.skinVertexB>=0&&p.skinIndex>=0&&p.skinWeight>=0&&(g.enableVertexAttribArray(p.skinVertexA),g.enableVertexAttribArray(p.skinVertexB),g.enableVertexAttribArray(p.skinIndex),g.enableVertexAttribArray(p.skinWeight));if(b.attributes)for(f in b.attributes)p[f]!==void 0&&p[f]>=0&&g.enableVertexAttribArray(p[f]);if(b.morphTargets){b.numSupportedMorphTargets=0;p.morphTarget0>= 0&&(g.enableVertexAttribArray(p.morphTarget0),b.numSupportedMorphTargets++);p.morphTarget1>=0&&(g.enableVertexAttribArray(p.morphTarget1),b.numSupportedMorphTargets++);p.morphTarget2>=0&&(g.enableVertexAttribArray(p.morphTarget2),b.numSupportedMorphTargets++);p.morphTarget3>=0&&(g.enableVertexAttribArray(p.morphTarget3),b.numSupportedMorphTargets++);p.morphTarget4>=0&&(g.enableVertexAttribArray(p.morphTarget4),b.numSupportedMorphTargets++);p.morphTarget5>=0&&(g.enableVertexAttribArray(p.morphTarget5), b.numSupportedMorphTargets++);p.morphTarget6>=0&&(g.enableVertexAttribArray(p.morphTarget6),b.numSupportedMorphTargets++);p.morphTarget7>=0&&(g.enableVertexAttribArray(p.morphTarget7),b.numSupportedMorphTargets++);e.__webglMorphTargetInfluences=new Float32Array(this.maxMorphTargets);b=0;for(f=this.maxMorphTargets;b0||t.faceVertexUvs.length>0)j.__uvArray=new Float32Array(m*2);if(t.faceUvs.length>1||t.faceVertexUvs.length>1)j.__uv2Array=new Float32Array(m*2)}if(k.geometry.skinWeights.length&&k.geometry.skinIndices.length)j.__skinVertexAArray=new Float32Array(m* 4),j.__skinVertexBArray=new Float32Array(m*4),j.__skinIndexArray=new Float32Array(m*4),j.__skinWeightArray=new Float32Array(m*4);j.__faceArray=new Uint16Array(v*3+(k.geometry.edgeFaces?k.geometry.edgeFaces.length*6:0));j.__lineArray=new Uint16Array(J*2);if(j.numMorphTargets){j.__morphTargetsArrays=[];t=0;for(u=j.numMorphTargets;t=0;f--){if(e=c.__webglObjects[f].object,d==e){c.__webglObjects.splice(f,1);break}}else if(d instanceof THREE.Sprite)for(f=c.__webglSprites.length-1;f>=0;f--)if(e=c.__webglSprites[f],d==e){c.__webglSprites.splice(f,1);break}b.__objectsRemoved.splice(0,1)}d= 0;for(c=b.__webglObjects.length;d1&&(d-=1)}c===void 0&&(c={h:0,s:0,v:0});c.h=d;c.s=j;c.v=h;return c}, clamp:function(b,c,d){return bd?d:b}};THREE.ColorUtils.__hsv={h:0,s:0,v:0}; var GeometryUtils={merge:function(b,c){var d=c instanceof THREE.Mesh,e=b.vertices.length,f=d?c.geometry:c,h=b.vertices,j=f.vertices,k=b.faces,m=f.faces,n=b.faceVertexUvs[0],f=f.faceVertexUvs[0];d&&c.matrixAutoUpdate&&c.updateMatrix();for(var o=0,p=j.length;o= 0.0 )\npointSpecularWeight = specularTex.r * pow( pointDotNormalHalf, uShininess );\npointDiffuse += vec4( uDiffuseColor, 1.0 ) * pointDiffuseWeight;\npointSpecular += vec4( uSpecularColor, 1.0 ) * pointSpecularWeight * pointDiffuseWeight;\nvec4 dirDiffuse = vec4( 0.0, 0.0, 0.0, 0.0 );\nvec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );\nvec4 lDirection = viewMatrix * vec4( uDirLightPos, 0.0 );\nvec3 dirVector = normalize( lDirection.xyz );\nvec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );\nfloat dirDotNormalHalf = dot( normal, dirHalfVector );\nfloat dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );\nfloat dirSpecularWeight = 0.0;\nif ( dirDotNormalHalf >= 0.0 )\ndirSpecularWeight = specularTex.r * pow( dirDotNormalHalf, uShininess );\ndirDiffuse += vec4( uDiffuseColor, 1.0 ) * dirDiffuseWeight;\ndirSpecular += vec4( uSpecularColor, 1.0 ) * dirSpecularWeight * dirDiffuseWeight;\nvec4 totalLight = vec4( uAmbientLightColor * uAmbientColor, 1.0 );\ntotalLight += vec4( uDirLightColor, 1.0 ) * ( dirDiffuse + dirSpecular );\ntotalLight += vec4( uPointLightColor, 1.0 ) * ( pointDiffuse + pointSpecular );\ngl_FragColor = vec4( totalLight.xyz * aoTex * diffuseTex, 1.0 );\n}", vertexShader:"attribute vec4 tangent;\nuniform vec3 uPointLightPos;\n#ifdef VERTEX_TEXTURES\nuniform sampler2D tDisplacement;\nuniform float uDisplacementScale;\nuniform float uDisplacementBias;\n#endif\nvarying vec3 vTangent;\nvarying vec3 vBinormal;\nvarying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vPointLightVector;\nvarying vec3 vViewPosition;\nvoid main() {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvViewPosition = cameraPosition - mPosition.xyz;\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvNormal = normalize( normalMatrix * normal );\nvTangent = normalize( normalMatrix * tangent.xyz );\nvBinormal = cross( vNormal, vTangent ) * tangent.w;\nvBinormal = normalize( vBinormal );\nvUv = uv;\nvec4 lPosition = viewMatrix * vec4( uPointLightPos, 1.0 );\nvPointLightVector = normalize( lPosition.xyz - mvPosition.xyz );\n#ifdef VERTEX_TEXTURES\nvec3 dv = texture2D( tDisplacement, uv ).xyz;\nfloat df = uDisplacementScale * dv.x + uDisplacementBias;\nvec4 displacedPosition = vec4( vNormal.xyz * df, 0.0 ) + mvPosition;\ngl_Position = projectionMatrix * displacedPosition;\n#else\ngl_Position = projectionMatrix * mvPosition;\n#endif\n}"}, cube:{uniforms:{tCube:{type:"t",value:1,texture:null}},vertexShader:"varying vec3 vViewPosition;\nvoid main() {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvViewPosition = cameraPosition - mPosition.xyz;\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"uniform samplerCube tCube;\nvarying vec3 vViewPosition;\nvoid main() {\nvec3 wPos = cameraPosition - vViewPosition;\ngl_FragColor = textureCube( tCube, vec3( - wPos.x, wPos.yz ) );\n}"},convolution:{uniforms:{tDiffuse:{type:"t", value:0,texture:null},uImageIncrement:{type:"v2",value:new THREE.Vector2(0.001953125,0)},cKernel:{type:"fv1",value:[]}},vertexShader:"varying vec2 vUv;\nuniform vec2 uImageIncrement;\nvoid main(void) {\nvUv = uv - ((KERNEL_SIZE - 1.0) / 2.0) * uImageIncrement;\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"varying vec2 vUv;\nuniform sampler2D tDiffuse;\nuniform vec2 uImageIncrement;\nuniform float cKernel[KERNEL_SIZE];\nvoid main(void) {\nvec2 imageCoord = vUv;\nvec4 sum = vec4( 0.0, 0.0, 0.0, 0.0 );\nfor( int i=0; i25&&(h=25);f=(h-1)*0.5;d=Array(h);for(c=e=0;c1)console.log("THREE.Animation.update: Warning! Scale out of bounds:"+e+" on bone "+u),e=e<0?0:1;if(d==="pos")if(d=b.position,this.interpolationType===THREE.AnimationHandler.LINEAR)d.x=f[0]+(h[0]-f[0])*e,d.y=f[1]+(h[1]-f[1])*e,d.z=f[2]+(h[2]-f[2])*e;else{if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)if(this.points[0]= this.getPrevKeyWith("pos",u,j.index-1).pos,this.points[1]=f,this.points[2]=h,this.points[3]=this.getNextKeyWith("pos",u,k.index+1).pos,e=e*0.33+0.33,f=this.interpolateCatmullRom(this.points,e),d.x=f[0],d.y=f[1],d.z=f[2],this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)e=this.interpolateCatmullRom(this.points,e*1.01),this.target.set(e[0],e[1],e[2]),this.target.subSelf(d),this.target.y=0,this.target.normalize(),e=Math.atan2(this.target.x,this.target.z),b.rotation.set(0,e,0)}else if(d=== "rot")THREE.Quaternion.slerp(f,h,b.quaternion,e);else if(d==="scl")d=b.scale,d.x=f[0]+(h[0]-f[0])*e,d.y=f[1]+(h[1]-f[1])*e,d.z=f[2]+(h[2]-f[2])*e}}if(this.JITCompile&&o[0][n]===void 0){this.hierarchy[0].update(void 0,!0);for(u=0;ub.length-2?h:h+1;d[3]=h>b.length-3?h:h+2;h=b[d[0]];k=b[d[1]];m=b[d[2]];n=b[d[3]];d=f*f;j=f*d;e[0]=this.interpolate(h[0],k[0],m[0],n[0],f,d,j);e[1]=this.interpolate(h[1],k[1],m[1],n[1],f,d,j);e[2]=this.interpolate(h[2],k[2],m[2],n[2],f,d,j);return e}; THREE.Animation.prototype.interpolate=function(b,c,d,e,f,h,j){b=(d-b)*0.5;e=(e-c)*0.5;return(2*(c-d)+b+e)*j+(-3*(c-d)-2*b-e)*h+b*f+c};THREE.Animation.prototype.getNextKeyWith=function(b,c,d){var e=this.data.hierarchy[c].keys;for(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD?d=d0?d:0:d>=0?d:d+e.length;d>=0;d--)if(e[d][b]!==void 0)return e[d];return this.data.hierarchy[c].keys[e.length-1]}; THREE.QuakeCamera=function(b){function c(b,c){return function(){c.apply(b,arguments)}}THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.movementSpeed=1;this.lookSpeed=0.0050;this.noFly=!1;this.lookVertical=!0;this.autoForward=!1;this.activeLook=!0;this.heightSpeed=!1;this.heightCoef=1;this.heightMin=0;this.constrainVertical=!1;this.verticalMin=0;this.verticalMax=3.14;this.domElement=document;this.lastUpdate=(new Date).getTime();this.tdiff=0;if(b){if(b.movementSpeed!==void 0)this.movementSpeed= b.movementSpeed;if(b.lookSpeed!==void 0)this.lookSpeed=b.lookSpeed;if(b.noFly!==void 0)this.noFly=b.noFly;if(b.lookVertical!==void 0)this.lookVertical=b.lookVertical;if(b.autoForward!==void 0)this.autoForward=b.autoForward;if(b.activeLook!==void 0)this.activeLook=b.activeLook;if(b.heightSpeed!==void 0)this.heightSpeed=b.heightSpeed;if(b.heightCoef!==void 0)this.heightCoef=b.heightCoef;if(b.heightMin!==void 0)this.heightMin=b.heightMin;if(b.heightMax!==void 0)this.heightMax=b.heightMax;if(b.constrainVertical!== void 0)this.constrainVertical=b.constrainVertical;if(b.verticalMin!==void 0)this.verticalMin=b.verticalMin;if(b.verticalMax!==void 0)this.verticalMax=b.verticalMax;if(b.domElement!==void 0)this.domElement=b.domElement}this.theta=this.phi=this.lon=this.lat=this.mouseY=this.mouseX=this.autoSpeedFactor=0;this.mouseDragOn=this.freeze=this.moveRight=this.moveLeft=this.moveBackward=this.moveForward=!1;this.windowHalfX=window.innerWidth/2;this.windowHalfY=window.innerHeight/2;this.onMouseDown=function(b){b.preventDefault(); b.stopPropagation();if(this.activeLook)switch(b.button){case 0:this.moveForward=!0;break;case 2:this.moveBackward=!0}this.mouseDragOn=!0};this.onMouseUp=function(b){b.preventDefault();b.stopPropagation();if(this.activeLook)switch(b.button){case 0:this.moveForward=!1;break;case 2:this.moveBackward=!1}this.mouseDragOn=!1};this.onMouseMove=function(b){this.mouseX=b.clientX-this.windowHalfX;this.mouseY=b.clientY-this.windowHalfY};this.onKeyDown=function(b){switch(b.keyCode){case 38:case 87:this.moveForward= !0;break;case 37:case 65:this.moveLeft=!0;break;case 40:case 83:this.moveBackward=!0;break;case 39:case 68:this.moveRight=!0;break;case 81:this.freeze=!this.freeze}};this.onKeyUp=function(b){switch(b.keyCode){case 38:case 87:this.moveForward=!1;break;case 37:case 65:this.moveLeft=!1;break;case 40:case 83:this.moveBackward=!1;break;case 39:case 68:this.moveRight=!1}};this.update=function(){var b=(new Date).getTime();this.tdiff=(b-this.lastUpdate)/1E3;this.lastUpdate=b;if(!this.freeze){this.autoSpeedFactor= this.heightSpeed?this.tdiff*((this.position.ythis.heightMax?this.heightMax:this.position.y)-this.heightMin)*this.heightCoef:0;var c=this.tdiff*this.movementSpeed;(this.moveForward||this.autoForward&&!this.moveBackward)&&this.translateZ(-(c+this.autoSpeedFactor));this.moveBackward&&this.translateZ(c);this.moveLeft&&this.translateX(-c);this.moveRight&&this.translateX(c);c=this.tdiff*this.lookSpeed;this.activeLook||(c=0);this.lon+=this.mouseX*c;this.lookVertical&& (this.lat-=this.mouseY*c);this.lat=Math.max(-85,Math.min(85,this.lat));this.phi=(90-this.lat)*Math.PI/180;this.theta=this.lon*Math.PI/180;var b=this.target.position,f=this.position;b.x=f.x+100*Math.sin(this.phi)*Math.cos(this.theta);b.y=f.y+100*Math.cos(this.phi);b.z=f.z+100*Math.sin(this.phi)*Math.sin(this.theta)}this.lon+=this.mouseX*c;this.lookVertical&&(this.lat-=this.mouseY*c);this.lat=Math.max(-85,Math.min(85,this.lat));this.phi=(90-this.lat)*Math.PI/180;this.theta=this.lon*Math.PI/180;if(this.constrainVertical)this.phi= (this.phi-0)*(this.verticalMax-this.verticalMin)/3.14+this.verticalMin;b=this.target.position;f=this.position;b.x=f.x+100*Math.sin(this.phi)*Math.cos(this.theta);b.y=f.y+100*Math.cos(this.phi);b.z=f.z+100*Math.sin(this.phi)*Math.sin(this.theta);this.supr.update.call(this)};this.domElement.addEventListener("contextmenu",function(b){b.preventDefault()},!1);this.domElement.addEventListener("mousemove",c(this,this.onMouseMove),!1);this.domElement.addEventListener("mousedown",c(this,this.onMouseDown), !1);this.domElement.addEventListener("mouseup",c(this,this.onMouseUp),!1);this.domElement.addEventListener("keydown",c(this,this.onKeyDown),!1);this.domElement.addEventListener("keyup",c(this,this.onKeyUp),!1)};THREE.QuakeCamera.prototype=new THREE.Camera;THREE.QuakeCamera.prototype.constructor=THREE.QuakeCamera;THREE.QuakeCamera.prototype.supr=THREE.Camera.prototype; THREE.QuakeCamera.prototype.translate=function(b,c){this.matrix.rotateAxis(c);if(this.noFly)c.y=0;this.position.addSelf(c.multiplyScalar(b));this.target.position.addSelf(c.multiplyScalar(b))}; THREE.PathCamera=function(b){function c(b,d,c,e){var f={name:c,fps:0.6,length:e,hierarchy:[]},h,j=d.getControlPointsArray(),k=d.getLength(),m=j.length,D=0;h=m-1;d={parent:-1,keys:[]};d.keys[0]={time:0,pos:j[0],rot:[0,0,0,1],scl:[1,1,1]};d.keys[h]={time:e,pos:j[h],rot:[0,0,0,1],scl:[1,1,1]};for(h=1;h=0?e:e+f;e=this.verticalAngleMap.srcRange;j=this.verticalAngleMap.dstRange;var k=j[1]-j[0];this.phi= TWEEN.Easing.Quadratic.EaseInOut(((this.phi-e[0])*(j[1]-j[0])/(e[1]-e[0])+j[0]-j[0])/k)*k+j[0];e=this.horizontalAngleMap.srcRange;j=this.horizontalAngleMap.dstRange;k=j[1]-j[0];this.theta=TWEEN.Easing.Quadratic.EaseInOut(((this.theta-e[0])*(j[1]-j[0])/(e[1]-e[0])+j[0]-j[0])/k)*k+j[0];e=this.target.position;e.x=100*Math.sin(this.phi)*Math.cos(this.theta);e.y=100*Math.cos(this.phi);e.z=100*Math.sin(this.phi)*Math.sin(this.theta);this.supr.update.call(this,b,d,c)};this.onMouseMove=function(b){this.mouseX= b.clientX-this.windowHalfX;this.mouseY=b.clientY-this.windowHalfY};this.spline=new THREE.Spline;this.spline.initFromArray(this.waypoints);this.useConstantSpeed&&this.spline.reparametrizeByArcLength(this.resamplingCoef);if(this.createDebugDummy){var b=new THREE.MeshLambertMaterial({color:30719}),j=new THREE.MeshLambertMaterial({color:65280}),k=new THREE.Cube(10,10,20),m=new THREE.Cube(2,2,10);this.animationParent=new THREE.Mesh(k,b);b=new THREE.Mesh(m,j);b.position.set(0,10,0);this.animation=c(this.animationParent, this.spline,this.id,this.duration);this.animationParent.addChild(this);this.animationParent.addChild(this.target);this.animationParent.addChild(b)}else this.animation=c(this.animationParent,this.spline,this.id,this.duration),this.animationParent.addChild(this.target),this.animationParent.addChild(this);this.createDebugPath&&e(this.debugPath,this.spline);this.domElement.addEventListener("mousemove",function(b,d){return function(){d.apply(b,arguments)}}(this,this.onMouseMove),!1)}; THREE.PathCamera.prototype=new THREE.Camera;THREE.PathCamera.prototype.constructor=THREE.PathCamera;THREE.PathCamera.prototype.supr=THREE.Camera.prototype;THREE.PathCameraIdCounter=0; THREE.FlyCamera=function(b){function c(b,c){return function(){c.apply(b,arguments)}}THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.tmpQuaternion=new THREE.Quaternion;this.movementSpeed=1;this.rollSpeed=0.0050;this.autoForward=this.dragToLook=!1;this.domElement=document;if(b){if(b.movementSpeed!==void 0)this.movementSpeed=b.movementSpeed;if(b.rollSpeed!==void 0)this.rollSpeed=b.rollSpeed;if(b.dragToLook!==void 0)this.dragToLook=b.dragToLook;if(b.autoForward!==void 0)this.autoForward= b.autoForward;if(b.domElement!==void 0)this.domElement=b.domElement}this.useTarget=!1;this.useQuaternion=!0;this.mouseStatus=0;this.moveState={up:0,down:0,left:0,right:0,forward:0,back:0,pitchUp:0,pitchDown:0,yawLeft:0,yawRight:0,rollLeft:0,rollRight:0};this.moveVector=new THREE.Vector3(0,0,0);this.rotationVector=new THREE.Vector3(0,0,0);this.lastUpdate=-1;this.tdiff=0;this.handleEvent=function(b){if(typeof this[b.type]=="function")this[b.type](b)};this.keydown=function(b){if(!b.altKey){switch(b.keyCode){case 16:this.movementSpeedMultiplier= 0.1;break;case 87:this.moveState.forward=1;break;case 83:this.moveState.back=1;break;case 65:this.moveState.left=1;break;case 68:this.moveState.right=1;break;case 82:this.moveState.up=1;break;case 70:this.moveState.down=1;break;case 38:this.moveState.pitchUp=1;break;case 40:this.moveState.pitchDown=1;break;case 37:this.moveState.yawLeft=1;break;case 39:this.moveState.yawRight=1;break;case 81:this.moveState.rollLeft=1;break;case 69:this.moveState.rollRight=1}this.updateMovementVector();this.updateRotationVector()}}; this.keyup=function(b){switch(b.keyCode){case 16:this.movementSpeedMultiplier=1;break;case 87:this.moveState.forward=0;break;case 83:this.moveState.back=0;break;case 65:this.moveState.left=0;break;case 68:this.moveState.right=0;break;case 82:this.moveState.up=0;break;case 70:this.moveState.down=0;break;case 38:this.moveState.pitchUp=0;break;case 40:this.moveState.pitchDown=0;break;case 37:this.moveState.yawLeft=0;break;case 39:this.moveState.yawRight=0;break;case 81:this.moveState.rollLeft=0;break; case 69:this.moveState.rollRight=0}this.updateMovementVector();this.updateRotationVector()};this.mousedown=function(b){b.preventDefault();b.stopPropagation();if(this.dragToLook)this.mouseStatus++;else switch(b.button){case 0:this.moveForward=!0;break;case 2:this.moveBackward=!0}};this.mousemove=function(b){if(!this.dragToLook||this.mouseStatus>0){var c=this.getContainerDimensions(),f=c.size[0]/2,h=c.size[1]/2;this.moveState.yawLeft=-(b.clientX-c.offset[0]-f)/f;this.moveState.pitchDown=(b.clientY- c.offset[1]-h)/h;this.updateRotationVector()}};this.mouseup=function(b){b.preventDefault();b.stopPropagation();if(this.dragToLook)this.mouseStatus--,this.moveState.yawLeft=this.moveState.pitchDown=0;else switch(b.button){case 0:this.moveForward=!1;break;case 2:this.moveBackward=!1}this.updateRotationVector()};this.update=function(){var b=(new Date).getTime();if(this.lastUpdate==-1)this.lastUpdate=b;this.tdiff=(b-this.lastUpdate)/1E3;this.lastUpdate=b;var b=this.tdiff*this.movementSpeed,c=this.tdiff* this.rollSpeed;this.translateX(this.moveVector.x*b);this.translateY(this.moveVector.y*b);this.translateZ(this.moveVector.z*b);this.tmpQuaternion.set(this.rotationVector.x*c,this.rotationVector.y*c,this.rotationVector.z*c,1).normalize();this.quaternion.multiplySelf(this.tmpQuaternion);this.matrix.setPosition(this.position);this.matrix.setRotationFromQuaternion(this.quaternion);this.matrixWorldNeedsUpdate=!0;this.supr.update.call(this)};this.updateMovementVector=function(){var b=this.moveState.forward|| this.autoForward&&!this.moveState.back?1:0;this.moveVector.x=-this.moveState.left+this.moveState.right;this.moveVector.y=-this.moveState.down+this.moveState.up;this.moveVector.z=-b+this.moveState.back};this.updateRotationVector=function(){this.rotationVector.x=-this.moveState.pitchDown+this.moveState.pitchUp;this.rotationVector.y=-this.moveState.yawRight+this.moveState.yawLeft;this.rotationVector.z=-this.moveState.rollRight+this.moveState.rollLeft};this.getContainerDimensions=function(){return this.domElement!= document?{size:[this.domElement.offsetWidth,this.domElement.offsetHeight],offset:[this.domElement.offsetLeft,this.domElement.offsetTop]}:{size:[window.innerWidth,window.innerHeight],offset:[0,0]}};this.domElement.addEventListener("mousemove",c(this,this.mousemove),!1);this.domElement.addEventListener("mousedown",c(this,this.mousedown),!1);this.domElement.addEventListener("mouseup",c(this,this.mouseup),!1);window.addEventListener("keydown",c(this,this.keydown),!1);window.addEventListener("keyup",c(this, this.keyup),!1);this.updateMovementVector();this.updateRotationVector()};THREE.FlyCamera.prototype=new THREE.Camera;THREE.FlyCamera.prototype.constructor=THREE.FlyCamera;THREE.FlyCamera.prototype.supr=THREE.Camera.prototype; THREE.RollCamera=function(b,c,d,e){THREE.Camera.call(this,b,c,d,e);this.mouseLook=!0;this.autoForward=!1;this.rollSpeed=this.movementSpeed=this.lookSpeed=1;this.constrainVertical=[-0.9,0.9];this.domElement=document;this.matrixAutoUpdate=this.useTarget=!1;this.forward=new THREE.Vector3(0,0,1);this.roll=0;this.lastUpdate=-1;this.delta=0;var f=new THREE.Vector3,h=new THREE.Vector3,j=new THREE.Vector3,k=new THREE.Matrix4,m=!1,n=1,o=0,p=0,t=0,u=0,v=0,C=window.innerWidth/2,E=window.innerHeight/2;this.update= function(){var b=(new Date).getTime();if(this.lastUpdate==-1)this.lastUpdate=b;this.delta=(b-this.lastUpdate)/1E3;this.lastUpdate=b;this.mouseLook&&(b=this.delta*this.lookSpeed,this.rotateHorizontally(b*u),this.rotateVertically(b*v));b=this.delta*this.movementSpeed;this.translateZ(b*(o>0||this.autoForward&&!(o<0)?1:o));this.translateX(b*p);this.translateY(b*t);m&&(this.roll+=this.rollSpeed*this.delta*n);if(this.forward.y>this.constrainVertical[1])this.forward.y=this.constrainVertical[1],this.forward.normalize(); else if(this.forward.y1?d.normalize():d.z=Math.sqrt(1-e*e);f=this.position.clone().subSelf(this.target.position);e=this.up.clone().setLength(d.y);e.addSelf(this.up.clone().crossSelf(f).setLength(d.x));e.addSelf(f.setLength(d.z));return e}; this.rotateCamera=function(){var b=Math.acos(h.dot(j)/h.length()/j.length());if(b){var c=(new THREE.Vector3).cross(h,j).normalize(),d=new THREE.Quaternion;b*=this.rotateSpeed;d.setFromAxisAngle(c,-b);d.multiplyVector3(f);d.multiplyVector3(this.up);d.multiplyVector3(j);this.staticMoving?h=j:(d.setFromAxisAngle(c,b*(this.dynamicDampingFactor-1)),d.multiplyVector3(h))}};this.zoomCamera=function(){var b=1+(m.y-k.y)*this.zoomSpeed;b!==1&&b>0&&(f.multiplyScalar(b),this.staticMoving?k=m:k.y+=(m.y-k.y)*this.dynamicDampingFactor)}; this.panCamera=function(){var b=o.clone().subSelf(n);if(b.lengthSq()){b.multiplyScalar(f.length()*this.panSpeed);var c=f.clone().crossSelf(this.up).setLength(b.x);c.addSelf(this.up.clone().setLength(b.y));this.position.addSelf(c);this.target.position.addSelf(c);this.staticMoving?n=o:n.addSelf(b.sub(o,n).multiplyScalar(this.dynamicDampingFactor))}};this.checkDistances=function(){if(!this.noZoom||!this.noPan)this.position.lengthSq()>this.maxDistance*this.maxDistance&&this.position.setLength(this.maxDistance), f.lengthSq()0){j(0,0,-o-(h||0));for(m=b;m0){j(0,0,o+(f||0)); for(m=b+b/2;m<2*b;m++)k.faces.push(new THREE.Face4(2*b+1,(2*m-2*b+2)%b+b,(2*m-2*b+1)%b+b,(2*m-2*b)%b+b))}m=0;for(b=this.faces.length;m0||(o=this.vertices.push(new THREE.Vertex(new THREE.Vector3(p,k,t)))-1);n.push(o)}c.push(n)}for(var u,v,C,f=c.length,d=0;d0)for(e=0;e1&&(u=this.vertices[j].position.clone(), v=this.vertices[m].position.clone(),C=this.vertices[n].position.clone(),u.normalize(),v.normalize(),C.normalize(),this.faces.push(new THREE.Face3(j,m,n,[new THREE.Vector3(u.x,u.y,u.z),new THREE.Vector3(v.x,v.y,v.z),new THREE.Vector3(C.x,C.y,C.z)])),this.faceVertexUvs[0].push([o,p,E]))}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals();this.boundingSphere={radius:b}};THREE.Sphere.prototype=new THREE.Geometry;THREE.Sphere.prototype.constructor=THREE.Sphere; THREE.Torus=function(b,c,d,e){THREE.Geometry.call(this);this.radius=b||100;this.tube=c||40;this.segmentsR=d||8;this.segmentsT=e||6;b=[];for(c=0;c<=this.segmentsR;++c)for(d=0;d<=this.segmentsT;++d){var e=d/this.segmentsT*2*Math.PI,f=c/this.segmentsR*2*Math.PI;this.vertices.push(new THREE.Vertex(new THREE.Vector3((this.radius+this.tube*Math.cos(f))*Math.cos(e),(this.radius+this.tube*Math.cos(f))*Math.sin(e),this.tube*Math.sin(f))));b.push([d/this.segmentsT,1-c/this.segmentsR])}for(c=1;c<=this.segmentsR;++c)for(d= 1;d<=this.segmentsT;++d){var e=(this.segmentsT+1)*c+d,f=(this.segmentsT+1)*c+d-1,h=(this.segmentsT+1)*(c-1)+d-1,j=(this.segmentsT+1)*(c-1)+d;this.faces.push(new THREE.Face4(e,f,h,j));this.faceVertexUvs[0].push([new THREE.UV(b[e][0],b[e][1]),new THREE.UV(b[f][0],b[f][1]),new THREE.UV(b[h][0],b[h][1]),new THREE.UV(b[j][0],b[j][1])])}delete b;this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};THREE.Torus.prototype=new THREE.Geometry;THREE.Torus.prototype.constructor=THREE.Torus; THREE.TorusKnot=function(b,c,d,e,f,h,j){function k(b,c,d,e,f,h){c=d/e*b;d=Math.cos(c);return new THREE.Vector3(f*(2+d)*0.5*Math.cos(b),f*(2+d)*Math.sin(b)*0.5,h*f*Math.sin(c)*0.5)}THREE.Geometry.call(this);this.radius=b||200;this.tube=c||40;this.segmentsR=d||64;this.segmentsT=e||8;this.p=f||2;this.q=h||3;this.heightScale=j||1;this.grid=Array(this.segmentsR);d=new THREE.Vector3;e=new THREE.Vector3;h=new THREE.Vector3;for(b=0;b>7)-127;e|=(g&127)<<16|f<<8;if(e==0&&j==-127)return 0;return(1-2*(h>>7))*(1+e*Math.pow(2,-23))*Math.pow(2,j)}function f(b,c){var d=o(b,c),e=o(b,c+1),g=o(b,c+2);return(o(b,c+3)<<24)+(g<<16)+(e<<8)+d}function m(b,c){var d=o(b,c);return(o(b,c+1)<<8)+d}function n(b,c){var d=o(b,c);return d>127?d-256:d}function o(b, c){return b.charCodeAt(c)&255}function p(c){var d,e,g;d=f(b,c);e=f(b,c+z);g=f(b,c+S);c=m(b,c+G);THREE.BinaryLoader.prototype.f3(y,d,e,g,c)}function t(c){var d,e,g,h,j,n;d=f(b,c);e=f(b,c+z);g=f(b,c+S);h=m(b,c+G);j=f(b,c+M);n=f(b,c+F);c=f(b,c+N);THREE.BinaryLoader.prototype.f3n(y,I,d,e,g,h,j,n,c)}function u(c){var d,e,h,j;d=f(b,c);e=f(b,c+g);h=f(b,c+Y);j=f(b,c+O);c=m(b,c+V);THREE.BinaryLoader.prototype.f4(y,d,e,h,j,c)}function v(c){var d,e,h,j,n,o,p,t;d=f(b,c);e=f(b,c+g);h=f(b,c+Y);j=f(b,c+O);n=m(b, c+V);o=f(b,c+L);p=f(b,c+$);t=f(b,c+T);c=f(b,c+Q);THREE.BinaryLoader.prototype.f4n(y,I,d,e,h,j,n,o,p,t,c)}function C(c){var d,e;d=f(b,c);e=f(b,c+fa);c=f(b,c+U);THREE.BinaryLoader.prototype.uv3(y.faceVertexUvs[0],A[d*2],A[d*2+1],A[e*2],A[e*2+1],A[c*2],A[c*2+1])}function E(c){var d,e,g;d=f(b,c);e=f(b,c+ka);g=f(b,c+ga);c=f(b,c+ca);THREE.BinaryLoader.prototype.uv4(y.faceVertexUvs[0],A[d*2],A[d*2+1],A[e*2],A[e*2+1],A[g*2],A[g*2+1],A[c*2],A[c*2+1])}var y=this,D=0,x,I=[],A=[],z,S,G,M,F,N,g,Y,O,V,L,$,T,Q, fa,U,ka,ga,ca,aa,R,P,W,X,ea;THREE.Geometry.call(this);THREE.Loader.prototype.init_materials(y,e,c);x={signature:b.substr(D,8),header_bytes:o(b,D+8),vertex_coordinate_bytes:o(b,D+9),normal_coordinate_bytes:o(b,D+10),uv_coordinate_bytes:o(b,D+11),vertex_index_bytes:o(b,D+12),normal_index_bytes:o(b,D+13),uv_index_bytes:o(b,D+14),material_index_bytes:o(b,D+15),nvertices:f(b,D+16),nnormals:f(b,D+16+4),nuvs:f(b,D+16+8),ntri_flat:f(b,D+16+12),ntri_smooth:f(b,D+16+16),ntri_flat_uv:f(b,D+16+20),ntri_smooth_uv:f(b, D+16+24),nquad_flat:f(b,D+16+28),nquad_smooth:f(b,D+16+32),nquad_flat_uv:f(b,D+16+36),nquad_smooth_uv:f(b,D+16+40)};D+=x.header_bytes;z=x.vertex_index_bytes;S=x.vertex_index_bytes*2;G=x.vertex_index_bytes*3;M=x.vertex_index_bytes*3+x.material_index_bytes;F=x.vertex_index_bytes*3+x.material_index_bytes+x.normal_index_bytes;N=x.vertex_index_bytes*3+x.material_index_bytes+x.normal_index_bytes*2;g=x.vertex_index_bytes;Y=x.vertex_index_bytes*2;O=x.vertex_index_bytes*3;V=x.vertex_index_bytes*4;L=x.vertex_index_bytes* 4+x.material_index_bytes;$=x.vertex_index_bytes*4+x.material_index_bytes+x.normal_index_bytes;T=x.vertex_index_bytes*4+x.material_index_bytes+x.normal_index_bytes*2;Q=x.vertex_index_bytes*4+x.material_index_bytes+x.normal_index_bytes*3;fa=x.uv_index_bytes;U=x.uv_index_bytes*2;ka=x.uv_index_bytes;ga=x.uv_index_bytes*2;ca=x.uv_index_bytes*3;c=x.vertex_index_bytes*3+x.material_index_bytes;ea=x.vertex_index_bytes*4+x.material_index_bytes;aa=x.ntri_flat*c;R=x.ntri_smooth*(c+x.normal_index_bytes*3);P=x.ntri_flat_uv* (c+x.uv_index_bytes*3);W=x.ntri_smooth_uv*(c+x.normal_index_bytes*3+x.uv_index_bytes*3);X=x.nquad_flat*ea;c=x.nquad_smooth*(ea+x.normal_index_bytes*4);ea=x.nquad_flat_uv*(ea+x.uv_index_bytes*4);D+=function(c){for(var e,f,g,h=x.vertex_coordinate_bytes*3,k=c+x.nvertices*h;c1&&(M=[new THREE.MeshFaceMaterial]);object=new THREE.Mesh(z,M);object.name=u;object.position.set(x[0],x[1],x[2]);q?(object.quaternion.set(q[0],q[1],q[2],q[3]),object.useQuaternion=!0):object.rotation.set(r[0],r[1],r[2]);object.scale.set(s[0],s[1],s[2]);object.visible=D.visible;L.scene.addObject(object);L.objects[u]=object;if(D.meshCollider){var b=THREE.CollisionUtils.MeshColliderWBox(object);L.scene.collisions.colliders.push(b)}if(D.castsShadow)b=new THREE.ShadowVolume(z),L.scene.addChild(b), b.position=object.position,b.rotation=object.rotation,b.scale=object.scale;D.trigger&&D.trigger.toLowerCase()!="none"&&(b={type:D.trigger,object:D},L.triggers[object.name]=b)}}else x=D.position,r=D.rotation,q=D.quaternion,s=D.scale,q=0,object=new THREE.Object3D,object.name=u,object.position.set(x[0],x[1],x[2]),q?(object.quaternion.set(q[0],q[1],q[2],q[3]),object.useQuaternion=!0):object.rotation.set(r[0],r[1],r[2]),object.scale.set(s[0],s[1],s[2]),object.visible=D.visible!==void 0?D.visible:!1,L.scene.addObject(object), L.objects[u]=object,L.empties[u]=object,D.trigger&&D.trigger.toLowerCase()!="none"&&(b={type:D.trigger,object:D},L.triggers[object.name]=b)}function m(b){return function(c){L.geometries[b]=c;k();g-=1;d.onLoadComplete();o()}}function n(b){return function(c){L.geometries[b]=c}}function o(){d.callbackProgress({totalModels:O,totalTextures:V,loadedModels:O-g,loadedTextures:V-Y},L);d.onLoadProgress();g==0&&Y==0&&c(L)}var p,t,u,v,C,E,y,D,x,I,A,z,S,G,M,F,N,g,Y,O,V,L;F=b.data;b=new THREE.BinaryLoader;N=new THREE.JSONLoader; Y=g=0;L={scene:new THREE.Scene,geometries:{},materials:{},textures:{},objects:{},cameras:{},lights:{},fogs:{},triggers:{},empties:{}};var $=!1;for(u in F.objects)if(D=F.objects[u],D.meshCollider){$=!0;break}if($)L.scene.collisions=new THREE.CollisionSystem;if(F.transform){$=F.transform.position;I=F.transform.rotation;var T=F.transform.scale;$&&L.scene.position.set($[0],$[1],$[2]);I&&L.scene.rotation.set(I[0],I[1],I[2]);T&&L.scene.scale.set(T[0],T[1],T[2]);($||I||T)&&L.scene.updateMatrix()}$=function(){Y-= 1;o();d.onLoadComplete()};for(C in F.cameras){I=F.cameras[C];if(I.type=="perspective")S=new THREE.Camera(I.fov,I.aspect,I.near,I.far);else if(I.type=="ortho")S=new THREE.Camera,S.projectionMatrix=THREE.Matrix4.makeOrtho(I.left,I.right,I.top,I.bottom,I.near,I.far);x=I.position;I=I.target;S.position.set(x[0],x[1],x[2]);S.target.position.set(I[0],I[1],I[2]);L.cameras[C]=S}for(v in F.lights){C=F.lights[v];S=C.color!==void 0?C.color:16777215;I=C.intensity!==void 0?C.intensity:1;if(C.type=="directional")x= C.direction,light=new THREE.DirectionalLight(S,I),light.position.set(x[0],x[1],x[2]),light.position.normalize();else if(C.type=="point")x=C.position,light=new THREE.PointLight(S,I),light.position.set(x[0],x[1],x[2]);L.scene.addLight(light);L.lights[v]=light}for(E in F.fogs)v=F.fogs[E],v.type=="linear"?G=new THREE.Fog(0,v.near,v.far):v.type=="exp2"&&(G=new THREE.FogExp2(0,v.density)),I=v.color,G.color.setRGB(I[0],I[1],I[2]),L.fogs[E]=G;if(L.cameras&&F.defaults.camera)L.currentCamera=L.cameras[F.defaults.camera]; if(L.fogs&&F.defaults.fog)L.scene.fog=L.fogs[F.defaults.fog];I=F.defaults.bgcolor;L.bgColor=new THREE.Color;L.bgColor.setRGB(I[0],I[1],I[2]);L.bgColorAlpha=F.defaults.bgalpha;for(p in F.geometries)if(E=F.geometries[p],E.type=="bin_mesh"||E.type=="ascii_mesh")g+=1,d.onLoadStart();O=g;for(p in F.geometries)E=F.geometries[p],E.type=="cube"?(z=new THREE.Cube(E.width,E.height,E.depth,E.segmentsWidth,E.segmentsHeight,E.segmentsDepth,null,E.flipped,E.sides),L.geometries[p]=z):E.type=="plane"?(z=new THREE.Plane(E.width, E.height,E.segmentsWidth,E.segmentsHeight),L.geometries[p]=z):E.type=="sphere"?(z=new THREE.Sphere(E.radius,E.segmentsWidth,E.segmentsHeight),L.geometries[p]=z):E.type=="cylinder"?(z=new THREE.Cylinder(E.numSegs,E.topRad,E.botRad,E.height,E.topOffset,E.botOffset),L.geometries[p]=z):E.type=="torus"?(z=new THREE.Torus(E.radius,E.tube,E.segmentsR,E.segmentsT),L.geometries[p]=z):E.type=="icosahedron"?(z=new THREE.Icosahedron(E.subdivisions),L.geometries[p]=z):E.type=="bin_mesh"?b.load({model:e(E.url, F.urlBaseType),callback:m(p)}):E.type=="ascii_mesh"?N.load({model:e(E.url,F.urlBaseType),callback:m(p)}):E.type=="embedded_mesh"&&(E=F.embeds[E.id])&&N.createModel(E,n(p),"");for(y in F.textures)if(p=F.textures[y],p.url instanceof Array){Y+=p.url.length;for(b=0;b=this.maxCount-3&&k(this)};this.begin=function(){this.count=0; this.hasNormal=this.hasPos=!1};this.end=function(b){if(this.count!=0){for(var c=this.count*3;cthis.size-1&&(m=this.size-1);var t=Math.floor(n-k);t<1&&(t=1);n=Math.floor(n+k);n>this.size-1&&(n=this.size-1);var u=Math.floor(o-k);u<1&&(u=1);k=Math.floor(o+k);k>this.size-1&&(k=this.size- 1);for(var v,C,E,y,D,x;p0&&(this.field[E+v]+=y)}}};this.addPlaneX=function(b,c){var f,h,j,k,m,n=this.size,o=this.yd,p=this.zd,t=this.field,u=n*Math.sqrt(b/c);u>n&&(u=n);for(f=0;f0)for(h=0;ho&&(v=o);for(h=0;h0){m=h*p;for(f=0;fsize&&(dist=size);for(j=0;j0){m=zd*j;for(h=0;hh?this.hits.push(f):this.hits.unshift(f),h=e;return this.hits}; THREE.CollisionSystem.prototype.rayCastNearest=function(b){var c=this.rayCastAll(b);if(c.length==0)return null;for(var d=0;c[d]instanceof THREE.MeshCollider;){var e=this.rayMesh(b,c[d]);if(e.distc.length)return null;return c[d]}; THREE.CollisionSystem.prototype.rayCast=function(b,c){if(c instanceof THREE.PlaneCollider)return this.rayPlane(b,c);else if(c instanceof THREE.SphereCollider)return this.raySphere(b,c);else if(c instanceof THREE.BoxCollider)return this.rayBox(b,c);else if(c instanceof THREE.MeshCollider&&c.box)return this.rayBox(b,c.box)}; THREE.CollisionSystem.prototype.rayMesh=function(b,c){for(var d=this.makeRayLocal(b,c.mesh),e=Number.MAX_VALUE,f,h=0;h=k*f))return Number.MAX_VALUE;j/=k;k=THREE.CollisionSystem.__v3;k.copy(b.direction);k.multiplyScalar(j);k.addSelf(b.origin);Math.abs(h.x)>Math.abs(h.y)?Math.abs(h.x)>Math.abs(h.z)?(b=k.y-c.y,h=d.y-c.y, f=e.y-c.y,k=k.z-c.z,d=d.z-c.z,e=e.z-c.z):(b=k.x-c.x,h=d.x-c.x,f=e.x-c.x,k=k.y-c.y,d=d.y-c.y,e=e.y-c.y):Math.abs(h.y)>Math.abs(h.z)?(b=k.x-c.x,h=d.x-c.x,f=e.x-c.x,k=k.z-c.z,d=d.z-c.z,e=e.z-c.z):(b=k.x-c.x,h=d.x-c.x,f=e.x-c.x,k=k.y-c.y,d=d.y-c.y,e=e.y-c.y);c=h*e-d*f;if(c==0)return Number.MAX_VALUE;c=1/c;e=(b*e-k*f)*c;if(!(e>=0))return Number.MAX_VALUE;c*=h*k-d*b;if(!(c>=0))return Number.MAX_VALUE;if(!(1-e-c>=0))return Number.MAX_VALUE;return j}; THREE.CollisionSystem.prototype.makeRayLocal=function(b,c){var d=THREE.CollisionSystem.__m;THREE.Matrix4.makeInvert(c.matrixWorld,d);var e=THREE.CollisionSystem.__r;e.origin.copy(b.origin);e.direction.copy(b.direction);d.multiplyVector3(e.origin);d.rotateAxis(e.direction);e.direction.normalize();return e}; THREE.CollisionSystem.prototype.rayBox=function(b,c){var d;c.dynamic&&c.mesh&&c.mesh.matrixWorld?d=this.makeRayLocal(b,c.mesh):(d=THREE.CollisionSystem.__r,d.origin.copy(b.origin),d.direction.copy(b.direction));var e=0,f=0,h=0,j=0,k=0,m=0,n=!0;d.origin.xc.max.x&&(e=c.max.x-d.origin.x,e/=d.direction.x,n=!1,j=1);d.origin.yc.max.y&&(f=c.max.y-d.origin.y,f/=d.direction.y, n=!1,k=1);d.origin.zc.max.z&&(h=c.max.z-d.origin.z,h/=d.direction.z,n=!1,m=1);if(n)return-1;n=0;f>e&&(n=1,e=f);h>e&&(n=2,e=h);switch(n){case 0:k=d.origin.y+d.direction.y*e;if(kc.max.y)return Number.MAX_VALUE;d=d.origin.z+d.direction.z*e;if(dc.max.z)return Number.MAX_VALUE;c.normal.set(j,0,0);break;case 1:j=d.origin.x+d.direction.x*e;if(jc.max.x)return Number.MAX_VALUE;d=d.origin.z+d.direction.z* e;if(dc.max.z)return Number.MAX_VALUE;c.normal.set(0,k,0);break;case 2:j=d.origin.x+d.direction.x*e;if(jc.max.x)return Number.MAX_VALUE;k=d.origin.y+d.direction.y*e;if(kc.max.y)return Number.MAX_VALUE;c.normal.set(0,0,m)}return e};THREE.CollisionSystem.prototype.rayPlane=function(b,c){var d=b.direction.dot(c.normal),e=c.point.dot(c.normal);if(d<0)d=(e-b.origin.dot(c.normal))/d;else return Number.MAX_VALUE;return d>0?d:Number.MAX_VALUE}; THREE.CollisionSystem.prototype.raySphere=function(b,c){var d=c.center.clone().subSelf(b.origin);if(d.lengthSq=0)return Math.abs(e)-Math.sqrt(d);return Number.MAX_VALUE};THREE.CollisionSystem.__v1=new THREE.Vector3;THREE.CollisionSystem.__v2=new THREE.Vector3;THREE.CollisionSystem.__v3=new THREE.Vector3;THREE.CollisionSystem.__nr=new THREE.Vector3;THREE.CollisionSystem.__m=new THREE.Matrix4; THREE.CollisionSystem.__r=new THREE.Ray;THREE.CollisionUtils={};THREE.CollisionUtils.MeshOBB=function(b){b.geometry.computeBoundingBox();var c=b.geometry.boundingBox,d=new THREE.Vector3(c.x[0],c.y[0],c.z[0]),c=new THREE.Vector3(c.x[1],c.y[1],c.z[1]),d=new THREE.BoxCollider(d,c);d.mesh=b;return d};THREE.CollisionUtils.MeshAABB=function(b){var c=THREE.CollisionUtils.MeshOBB(b);c.min.addSelf(b.position);c.max.addSelf(b.position);c.dynamic=!1;return c}; THREE.CollisionUtils.MeshColliderWBox=function(b){return new THREE.MeshCollider(b,THREE.CollisionUtils.MeshOBB(b))};