|
@@ -14,33 +14,33 @@ THREE.Vector4.prototype={set:function(b,c,e,f){this.x=b;this.y=c;this.z=e;this.w
|
|
|
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,e,f=[];c=0;for(e=b.length;c<e;c++)f=f.concat(this.intersectObject(b[c]));f.sort(function(b,e){return b.distance-e.distance});return f},intersectObject:function(b){function c(b,e,c){var f,c=c.matrixWorld.getPosition();f=c.clone().subSelf(b).dot(e);b=b.clone().addSelf(e.clone().multiplyScalar(f));return c.distanceTo(b)}function e(b,e,c,f){var f=f.clone().subSelf(e),c=c.clone().subSelf(e),
|
|
|
-g=b.clone().subSelf(e),b=f.dot(f),e=f.dot(c),f=f.dot(g),h=c.dot(c),c=c.dot(g),g=1/(b*h-e*e),h=(h*f-e*c)*g,b=(b*c-e*f)*g;return h>0&&b>0&&h+b<1}if(b instanceof THREE.Particle){var f=c(this.origin,this.direction,b);if(!f||f>b.scale.x)return[];return[{distance:f,point:b.position,face:null,object:b}]}else if(b instanceof THREE.Mesh){f=c(this.origin,this.direction,b);if(!f||f>b.geometry.boundingSphere.radius*Math.max(b.scale.x,Math.max(b.scale.y,b.scale.z)))return[];var g,j,h,m,p,t,n,o,v,u,x=b.geometry,
|
|
|
-z=x.vertices,y=[],f=0;for(g=x.faces.length;f<g;f++)if(j=x.faces[f],v=this.origin.clone(),u=this.direction.clone(),t=b.matrixWorld,h=t.multiplyVector3(z[j.a].position.clone()),m=t.multiplyVector3(z[j.b].position.clone()),p=t.multiplyVector3(z[j.c].position.clone()),t=j instanceof THREE.Face4?t.multiplyVector3(z[j.d].position.clone()):null,n=b.matrixRotationWorld.multiplyVector3(j.normal.clone()),o=u.dot(n),b.doubleSided||(b.flipSided?o>0:o<0))if(n=n.dot((new THREE.Vector3).sub(h,v))/o,v=v.addSelf(u.multiplyScalar(n)),
|
|
|
-j instanceof THREE.Face3)e(v,h,m,p)&&(j={distance:this.origin.distanceTo(v),point:v,face:j,object:b},y.push(j));else if(j instanceof THREE.Face4&&(e(v,h,m,t)||e(v,m,p,t)))j={distance:this.origin.distanceTo(v),point:v,face:j,object:b},y.push(j);return y}else return[]}};
|
|
|
-THREE.Rectangle=function(){function b(){j=f-c;h=g-e}var c,e,f,g,j,h,m=!0;this.getX=function(){return c};this.getY=function(){return e};this.getWidth=function(){return j};this.getHeight=function(){return h};this.getLeft=function(){return c};this.getTop=function(){return e};this.getRight=function(){return f};this.getBottom=function(){return g};this.set=function(h,j,n,o){m=!1;c=h;e=j;f=n;g=o;b()};this.addPoint=function(h,j){m?(m=!1,c=h,e=j,f=h,g=j):(c=c<h?c:h,e=e<j?e:j,f=f>h?f:h,g=g>j?g:j);b()};this.add3Points=
|
|
|
-function(h,j,n,o,v,u){m?(m=!1,c=h<n?h<v?h:v:n<v?n:v,e=j<o?j<u?j:u:o<u?o:u,f=h>n?h>v?h:v:n>v?n:v,g=j>o?j>u?j:u:o>u?o:u):(c=h<n?h<v?h<c?h:c:v<c?v:c:n<v?n<c?n:c:v<c?v:c,e=j<o?j<u?j<e?j:e:u<e?u:e:o<u?o<e?o:e:u<e?u:e,f=h>n?h>v?h>f?h:f:v>f?v:f:n>v?n>f?n:f:v>f?v:f,g=j>o?j>u?j>g?j:g:u>g?u:g:o>u?o>g?o:g:u>g?u:g);b()};this.addRectangle=function(h){m?(m=!1,c=h.getLeft(),e=h.getTop(),f=h.getRight(),g=h.getBottom()):(c=c<h.getLeft()?c:h.getLeft(),e=e<h.getTop()?e:h.getTop(),f=f>h.getRight()?f:h.getRight(),g=g>
|
|
|
+g=b.clone().subSelf(e),b=f.dot(f),e=f.dot(c),f=f.dot(g),h=c.dot(c),c=c.dot(g),g=1/(b*h-e*e),h=(h*f-e*c)*g,b=(b*c-e*f)*g;return h>0&&b>0&&h+b<1}if(b instanceof THREE.Particle){var f=c(this.origin,this.direction,b);if(!f||f>b.scale.x)return[];return[{distance:f,point:b.position,face:null,object:b}]}else if(b instanceof THREE.Mesh){f=c(this.origin,this.direction,b);if(!f||f>b.geometry.boundingSphere.radius*Math.max(b.scale.x,Math.max(b.scale.y,b.scale.z)))return[];var g,j,h,m,p,t,o,n,v,u,y=b.geometry,
|
|
|
+w=y.vertices,C=[],f=0;for(g=y.faces.length;f<g;f++)if(j=y.faces[f],v=this.origin.clone(),u=this.direction.clone(),t=b.matrixWorld,h=t.multiplyVector3(w[j.a].position.clone()),m=t.multiplyVector3(w[j.b].position.clone()),p=t.multiplyVector3(w[j.c].position.clone()),t=j instanceof THREE.Face4?t.multiplyVector3(w[j.d].position.clone()):null,o=b.matrixRotationWorld.multiplyVector3(j.normal.clone()),n=u.dot(o),b.doubleSided||(b.flipSided?n>0:n<0))if(o=o.dot((new THREE.Vector3).sub(h,v))/n,v=v.addSelf(u.multiplyScalar(o)),
|
|
|
+j instanceof THREE.Face3)e(v,h,m,p)&&(j={distance:this.origin.distanceTo(v),point:v,face:j,object:b},C.push(j));else if(j instanceof THREE.Face4&&(e(v,h,m,t)||e(v,m,p,t)))j={distance:this.origin.distanceTo(v),point:v,face:j,object:b},C.push(j);return C}else return[]}};
|
|
|
+THREE.Rectangle=function(){function b(){j=f-c;h=g-e}var c,e,f,g,j,h,m=!0;this.getX=function(){return c};this.getY=function(){return e};this.getWidth=function(){return j};this.getHeight=function(){return h};this.getLeft=function(){return c};this.getTop=function(){return e};this.getRight=function(){return f};this.getBottom=function(){return g};this.set=function(h,j,o,n){m=!1;c=h;e=j;f=o;g=n;b()};this.addPoint=function(h,j){m?(m=!1,c=h,e=j,f=h,g=j):(c=c<h?c:h,e=e<j?e:j,f=f>h?f:h,g=g>j?g:j);b()};this.add3Points=
|
|
|
+function(h,j,o,n,v,u){m?(m=!1,c=h<o?h<v?h:v:o<v?o:v,e=j<n?j<u?j:u:n<u?n:u,f=h>o?h>v?h:v:o>v?o:v,g=j>n?j>u?j:u:n>u?n:u):(c=h<o?h<v?h<c?h:c:v<c?v:c:o<v?o<c?o:c:v<c?v:c,e=j<n?j<u?j<e?j:e:u<e?u:e:n<u?n<e?n:e:u<e?u:e,f=h>o?h>v?h>f?h:f:v>f?v:f:o>v?o>f?o:f:v>f?v:f,g=j>n?j>u?j>g?j:g:u>g?u:g:n>u?n>g?n:g:u>g?u:g);b()};this.addRectangle=function(h){m?(m=!1,c=h.getLeft(),e=h.getTop(),f=h.getRight(),g=h.getBottom()):(c=c<h.getLeft()?c:h.getLeft(),e=e<h.getTop()?e:h.getTop(),f=f>h.getRight()?f:h.getRight(),g=g>
|
|
|
h.getBottom()?g:h.getBottom());b()};this.inflate=function(h){c-=h;e-=h;f+=h;g+=h;b()};this.minSelf=function(h){c=c>h.getLeft()?c:h.getLeft();e=e>h.getTop()?e:h.getTop();f=f<h.getRight()?f:h.getRight();g=g<h.getBottom()?g:h.getBottom();b()};this.instersects=function(b){return Math.min(f,b.getRight())-Math.max(c,b.getLeft())>=0&&Math.min(g,b.getBottom())-Math.max(e,b.getTop())>=0};this.empty=function(){m=!0;g=f=e=c=0;b()};this.isEmpty=function(){return m}};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,e,f,g,j,h,m,p,t,n,o,v,u,x,z){this.set(b||1,c||0,e||0,f||0,g||0,j||1,h||0,m||0,p||0,t||0,n||1,o||0,v||0,u||0,x||0,z||1);this.flat=Array(16);this.m33=new THREE.Matrix3};
|
|
|
-THREE.Matrix4.prototype={set:function(b,c,e,f,g,j,h,m,p,t,n,o,v,u,x,z){this.n11=b;this.n12=c;this.n13=e;this.n14=f;this.n21=g;this.n22=j;this.n23=h;this.n24=m;this.n31=p;this.n32=t;this.n33=n;this.n34=o;this.n41=v;this.n42=u;this.n43=x;this.n44=z;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,e){var f=THREE.Matrix4.__v1,
|
|
|
+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,e,f,g,j,h,m,p,t,o,n,v,u,y,w){this.set(b||1,c||0,e||0,f||0,g||0,j||1,h||0,m||0,p||0,t||0,o||1,n||0,v||0,u||0,y||0,w||1);this.flat=Array(16);this.m33=new THREE.Matrix3};
|
|
|
+THREE.Matrix4.prototype={set:function(b,c,e,f,g,j,h,m,p,t,o,n,v,u,y,w){this.n11=b;this.n12=c;this.n13=e;this.n14=f;this.n21=g;this.n22=j;this.n23=h;this.n24=m;this.n31=p;this.n32=t;this.n33=o;this.n34=n;this.n41=v;this.n42=u;this.n43=y;this.n44=w;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,e){var f=THREE.Matrix4.__v1,
|
|
|
g=THREE.Matrix4.__v2,j=THREE.Matrix4.__v3;j.sub(b,c).normalize();if(j.length()===0)j.z=1;f.cross(e,j).normalize();f.length()===0&&(j.x+=1.0E-4,f.cross(e,j).normalize());g.cross(j,f).normalize();this.n11=f.x;this.n12=g.x;this.n13=j.x;this.n21=f.y;this.n22=g.y;this.n23=j.y;this.n31=f.z;this.n32=g.z;this.n33=j.z;return this},multiplyVector3:function(b){var c=b.x,e=b.y,f=b.z,g=1/(this.n41*c+this.n42*e+this.n43*f+this.n44);b.x=(this.n11*c+this.n12*e+this.n13*f+this.n14)*g;b.y=(this.n21*c+this.n22*e+this.n23*
|
|
|
f+this.n24)*g;b.z=(this.n31*c+this.n32*e+this.n33*f+this.n34)*g;return b},multiplyVector4:function(b){var c=b.x,e=b.y,f=b.z,g=b.w;b.x=this.n11*c+this.n12*e+this.n13*f+this.n14*g;b.y=this.n21*c+this.n22*e+this.n23*f+this.n24*g;b.z=this.n31*c+this.n32*e+this.n33*f+this.n34*g;b.w=this.n41*c+this.n42*e+this.n43*f+this.n44*g;return b},rotateAxis:function(b){var c=b.x,e=b.y,f=b.z;b.x=c*this.n11+e*this.n12+f*this.n13;b.y=c*this.n21+e*this.n22+f*this.n23;b.z=c*this.n31+e*this.n32+f*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 e=b.n11,f=b.n12,g=b.n13,j=b.n14,h=b.n21,m=b.n22,p=b.n23,t=b.n24,n=b.n31,o=b.n32,v=b.n33,u=b.n34,x=b.n41,z=b.n42,y=b.n43,w=b.n44,I=c.n11,C=c.n12,K=c.n13,F=c.n14,B=c.n21,O=c.n22,
|
|
|
-E=c.n23,H=c.n24,P=c.n31,V=c.n32,G=c.n33,aa=c.n34,Q=c.n41,S=c.n42,T=c.n43,k=c.n44;this.n11=e*I+f*B+g*P+j*Q;this.n12=e*C+f*O+g*V+j*S;this.n13=e*K+f*E+g*G+j*T;this.n14=e*F+f*H+g*aa+j*k;this.n21=h*I+m*B+p*P+t*Q;this.n22=h*C+m*O+p*V+t*S;this.n23=h*K+m*E+p*G+t*T;this.n24=h*F+m*H+p*aa+t*k;this.n31=n*I+o*B+v*P+u*Q;this.n32=n*C+o*O+v*V+u*S;this.n33=n*K+o*E+v*G+u*T;this.n34=n*F+o*H+v*aa+u*k;this.n41=x*I+z*B+y*P+w*Q;this.n42=x*C+z*O+y*V+w*S;this.n43=x*K+z*E+y*G+w*T;this.n44=x*F+z*H+y*aa+w*k;return this},multiplyToArray:function(b,
|
|
|
+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 e=b.n11,f=b.n12,g=b.n13,j=b.n14,h=b.n21,m=b.n22,p=b.n23,t=b.n24,o=b.n31,n=b.n32,v=b.n33,u=b.n34,y=b.n41,w=b.n42,C=b.n43,x=b.n44,I=c.n11,B=c.n12,J=c.n13,F=c.n14,A=c.n21,X=c.n22,
|
|
|
+G=c.n23,H=c.n24,L=c.n31,O=c.n32,P=c.n33,N=c.n34,Q=c.n41,S=c.n42,$=c.n43,k=c.n44;this.n11=e*I+f*A+g*L+j*Q;this.n12=e*B+f*X+g*O+j*S;this.n13=e*J+f*G+g*P+j*$;this.n14=e*F+f*H+g*N+j*k;this.n21=h*I+m*A+p*L+t*Q;this.n22=h*B+m*X+p*O+t*S;this.n23=h*J+m*G+p*P+t*$;this.n24=h*F+m*H+p*N+t*k;this.n31=o*I+n*A+v*L+u*Q;this.n32=o*B+n*X+v*O+u*S;this.n33=o*J+n*G+v*P+u*$;this.n34=o*F+n*H+v*N+u*k;this.n41=y*I+w*A+C*L+x*Q;this.n42=y*B+w*X+C*O+x*S;this.n43=y*J+w*G+C*P+x*$;this.n44=y*F+w*H+C*N+x*k;return this},multiplyToArray:function(b,
|
|
|
c,e){this.multiply(b,c);e[0]=this.n11;e[1]=this.n21;e[2]=this.n31;e[3]=this.n41;e[4]=this.n12;e[5]=this.n22;e[6]=this.n32;e[7]=this.n42;e[8]=this.n13;e[9]=this.n23;e[10]=this.n33;e[11]=this.n43;e[12]=this.n14;e[13]=this.n24;e[14]=this.n34;e[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,e=this.n13,f=this.n14,g=this.n21,j=this.n22,h=this.n23,m=this.n24,p=this.n31,t=this.n32,n=this.n33,o=this.n34,v=this.n41,u=this.n42,x=this.n43,z=this.n44;return f*h*t*v-e*m*t*v-f*j*n*v+c*m*n*v+e*j*o*v-c*h*o*v-f*h*p*u+e*m*p*u+f*g*n*u-b*m*n*u-e*g*o*u+b*h*o*u+f*j*p*x-c*m*p*x-f*g*t*x+b*m*t*x+c*g*o*x-b*j*o*x-e*j*p*z+c*h*p*z+e*g*t*z-b*h*t*z-c*g*n*z+b*j*n*z},transpose:function(){var b;b=this.n21;this.n21=
|
|
|
+b;this.n42*=b;this.n43*=b;this.n44*=b;return this},determinant:function(){var b=this.n11,c=this.n12,e=this.n13,f=this.n14,g=this.n21,j=this.n22,h=this.n23,m=this.n24,p=this.n31,t=this.n32,o=this.n33,n=this.n34,v=this.n41,u=this.n42,y=this.n43,w=this.n44;return f*h*t*v-e*m*t*v-f*j*o*v+c*m*o*v+e*j*n*v-c*h*n*v-f*h*p*u+e*m*p*u+f*g*o*u-b*m*o*u-e*g*n*u+b*h*n*u+f*j*p*y-c*m*p*y-f*g*t*y+b*m*t*y+c*g*n*y-b*j*n*y-e*j*p*w+c*h*p*w+e*g*t*w-b*h*t*w-c*g*o*w+b*j*o*w},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,e){this.set(1,0,0,b,0,1,0,c,0,0,1,e,0,0,0,1);return this},setScale:function(b,c,e){this.set(b,0,0,0,0,c,0,0,0,0,e,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 e=Math.cos(c),f=Math.sin(c),g=1-e,j=b.x,h=b.y,m=b.z,p=g*j,t=g*h;this.set(p*j+e,p*h-f*m,p*m+f*h,0,p*h+f*m,t*h+e,t*m-f*j,0,p*m-f*h,t*m+f*j,g*m*m+e,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,c){var e=b.x,f=b.y,g=b.z,j=Math.cos(e),e=Math.sin(e),h=Math.cos(f),f=Math.sin(f),m=Math.cos(g),g=Math.sin(g);switch(c){case "YXZ":var p=h*m,t=h*g,n=f*m,o=f*g;this.n11=p+o*e;this.n12=
|
|
|
-n*e-t;this.n13=j*f;this.n21=j*g;this.n22=j*m;this.n23=-e;this.n31=t*e-n;this.n32=o+p*e;this.n33=j*h;break;case "ZXY":p=h*m;t=h*g;n=f*m;o=f*g;this.n11=p-o*e;this.n12=-j*g;this.n13=n+t*e;this.n21=t+n*e;this.n22=j*m;this.n23=o-p*e;this.n31=-j*f;this.n32=e;this.n33=j*h;break;case "ZYX":p=j*m;t=j*g;n=e*m;o=e*g;this.n11=h*m;this.n12=n*f-t;this.n13=p*f+o;this.n21=h*g;this.n22=o*f+p;this.n23=t*f-n;this.n31=-f;this.n32=e*h;this.n33=j*h;break;case "YZX":p=j*h;t=j*f;n=e*h;o=e*f;this.n11=h*m;this.n12=o-p*g;this.n13=
|
|
|
-n*g+t;this.n21=g;this.n22=j*m;this.n23=-e*m;this.n31=-f*m;this.n32=t*g+n;this.n33=p-o*g;break;case "XZY":p=j*h;t=j*f;n=e*h;o=e*f;this.n11=h*m;this.n12=-g;this.n13=f*m;this.n21=p*g+o;this.n22=j*m;this.n23=t*g-n;this.n31=n*g-t;this.n32=e*m;this.n33=o*g+p;break;default:p=j*m,t=j*g,n=e*m,o=e*g,this.n11=h*m,this.n12=-h*g,this.n13=f,this.n21=t+n*f,this.n22=p-o*f,this.n23=-e*h,this.n31=o-p*f,this.n32=n+t*f,this.n33=j*h}return this},setRotationFromQuaternion:function(b){var c=b.x,e=b.y,f=b.z,g=b.w,j=c+c,
|
|
|
+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,c){var e=b.x,f=b.y,g=b.z,j=Math.cos(e),e=Math.sin(e),h=Math.cos(f),f=Math.sin(f),m=Math.cos(g),g=Math.sin(g);switch(c){case "YXZ":var p=h*m,t=h*g,o=f*m,n=f*g;this.n11=p+n*e;this.n12=
|
|
|
+o*e-t;this.n13=j*f;this.n21=j*g;this.n22=j*m;this.n23=-e;this.n31=t*e-o;this.n32=n+p*e;this.n33=j*h;break;case "ZXY":p=h*m;t=h*g;o=f*m;n=f*g;this.n11=p-n*e;this.n12=-j*g;this.n13=o+t*e;this.n21=t+o*e;this.n22=j*m;this.n23=n-p*e;this.n31=-j*f;this.n32=e;this.n33=j*h;break;case "ZYX":p=j*m;t=j*g;o=e*m;n=e*g;this.n11=h*m;this.n12=o*f-t;this.n13=p*f+n;this.n21=h*g;this.n22=n*f+p;this.n23=t*f-o;this.n31=-f;this.n32=e*h;this.n33=j*h;break;case "YZX":p=j*h;t=j*f;o=e*h;n=e*f;this.n11=h*m;this.n12=n-p*g;this.n13=
|
|
|
+o*g+t;this.n21=g;this.n22=j*m;this.n23=-e*m;this.n31=-f*m;this.n32=t*g+o;this.n33=p-n*g;break;case "XZY":p=j*h;t=j*f;o=e*h;n=e*f;this.n11=h*m;this.n12=-g;this.n13=f*m;this.n21=p*g+n;this.n22=j*m;this.n23=t*g-o;this.n31=o*g-t;this.n32=e*m;this.n33=n*g+p;break;default:p=j*m,t=j*g,o=e*m,n=e*g,this.n11=h*m,this.n12=-h*g,this.n13=f,this.n21=t+o*f,this.n22=p-n*f,this.n23=-e*h,this.n31=n-p*f,this.n32=o+t*f,this.n33=j*h}return this},setRotationFromQuaternion:function(b){var c=b.x,e=b.y,f=b.z,g=b.w,j=c+c,
|
|
|
h=e+e,m=f+f,b=c*j,p=c*h;c*=m;var t=e*h;e*=m;f*=m;j*=g;h*=g;g*=m;this.n11=1-(t+f);this.n12=p-g;this.n13=c+h;this.n21=p+g;this.n22=1-(b+f);this.n23=e-j;this.n31=c-h;this.n32=e+j;this.n33=1-(b+t);return this},scale:function(b){var c=b.x,e=b.y,b=b.z;this.n11*=c;this.n12*=e;this.n13*=b;this.n21*=c;this.n22*=e;this.n23*=b;this.n31*=c;this.n32*=e;this.n33*=b;this.n41*=c;this.n42*=e;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 e=1/c.x,f=1/c.y,g=1/c.z;this.n11=b.n11*e;this.n21=b.n21*e;this.n31=b.n31*e;this.n12=b.n12*f;this.n22=b.n22*f;this.n32=b.n32*f;this.n13=b.n13*g;this.n23=b.n23*g;this.n33=b.n33*g}};
|
|
|
-THREE.Matrix4.makeInvert=function(b,c){var e=b.n11,f=b.n12,g=b.n13,j=b.n14,h=b.n21,m=b.n22,p=b.n23,t=b.n24,n=b.n31,o=b.n32,v=b.n33,u=b.n34,x=b.n41,z=b.n42,y=b.n43,w=b.n44;c===void 0&&(c=new THREE.Matrix4);c.n11=p*u*z-t*v*z+t*o*y-m*u*y-p*o*w+m*v*w;c.n12=j*v*z-g*u*z-j*o*y+f*u*y+g*o*w-f*v*w;c.n13=g*t*z-j*p*z+j*m*y-f*t*y-g*m*w+f*p*w;c.n14=j*p*o-g*t*o-j*m*v+f*t*v+g*m*u-f*p*u;c.n21=t*v*x-p*u*x-t*n*y+h*u*y+p*n*w-h*v*w;c.n22=g*u*x-j*v*x+j*n*y-e*u*y-g*n*w+e*v*w;c.n23=j*p*x-g*t*x-j*h*y+e*t*y+g*h*w-e*p*w;c.n24=
|
|
|
-g*t*n-j*p*n+j*h*v-e*t*v-g*h*u+e*p*u;c.n31=m*u*x-t*o*x+t*n*z-h*u*z-m*n*w+h*o*w;c.n32=j*o*x-f*u*x-j*n*z+e*u*z+f*n*w-e*o*w;c.n33=g*t*x-j*m*x+j*h*z-e*t*z-f*h*w+e*m*w;c.n34=j*m*n-f*t*n-j*h*o+e*t*o+f*h*u-e*m*u;c.n41=p*o*x-m*v*x-p*n*z+h*v*z+m*n*y-h*o*y;c.n42=f*v*x-g*o*x+g*n*z-e*v*z-f*n*y+e*o*y;c.n43=g*m*x-f*p*x-g*h*z+e*p*z+f*h*y-e*m*y;c.n44=f*p*n-g*m*n+g*h*o-e*p*o-f*h*v+e*m*v;c.multiplyScalar(1/b.determinant());return c};
|
|
|
-THREE.Matrix4.makeInvert3x3=function(b){var c=b.m33,e=c.m,f=b.n33*b.n22-b.n32*b.n23,g=-b.n33*b.n21+b.n31*b.n23,j=b.n32*b.n21-b.n31*b.n22,h=-b.n33*b.n12+b.n32*b.n13,m=b.n33*b.n11-b.n31*b.n13,p=-b.n32*b.n11+b.n31*b.n12,t=b.n23*b.n12-b.n22*b.n13,n=-b.n23*b.n11+b.n21*b.n13,o=b.n22*b.n11-b.n21*b.n12,b=b.n11*f+b.n21*h+b.n31*t;b==0&&console.error("THREE.Matrix4.makeInvert3x3: Matrix not invertible.");b=1/b;e[0]=b*f;e[1]=b*g;e[2]=b*j;e[3]=b*h;e[4]=b*m;e[5]=b*p;e[6]=b*t;e[7]=b*n;e[8]=b*o;return c};
|
|
|
+THREE.Matrix4.makeInvert=function(b,c){var e=b.n11,f=b.n12,g=b.n13,j=b.n14,h=b.n21,m=b.n22,p=b.n23,t=b.n24,o=b.n31,n=b.n32,v=b.n33,u=b.n34,y=b.n41,w=b.n42,C=b.n43,x=b.n44;c===void 0&&(c=new THREE.Matrix4);c.n11=p*u*w-t*v*w+t*n*C-m*u*C-p*n*x+m*v*x;c.n12=j*v*w-g*u*w-j*n*C+f*u*C+g*n*x-f*v*x;c.n13=g*t*w-j*p*w+j*m*C-f*t*C-g*m*x+f*p*x;c.n14=j*p*n-g*t*n-j*m*v+f*t*v+g*m*u-f*p*u;c.n21=t*v*y-p*u*y-t*o*C+h*u*C+p*o*x-h*v*x;c.n22=g*u*y-j*v*y+j*o*C-e*u*C-g*o*x+e*v*x;c.n23=j*p*y-g*t*y-j*h*C+e*t*C+g*h*x-e*p*x;c.n24=
|
|
|
+g*t*o-j*p*o+j*h*v-e*t*v-g*h*u+e*p*u;c.n31=m*u*y-t*n*y+t*o*w-h*u*w-m*o*x+h*n*x;c.n32=j*n*y-f*u*y-j*o*w+e*u*w+f*o*x-e*n*x;c.n33=g*t*y-j*m*y+j*h*w-e*t*w-f*h*x+e*m*x;c.n34=j*m*o-f*t*o-j*h*n+e*t*n+f*h*u-e*m*u;c.n41=p*n*y-m*v*y-p*o*w+h*v*w+m*o*C-h*n*C;c.n42=f*v*y-g*n*y+g*o*w-e*v*w-f*o*C+e*n*C;c.n43=g*m*y-f*p*y-g*h*w+e*p*w+f*h*C-e*m*C;c.n44=f*p*o-g*m*o+g*h*n-e*p*n-f*h*v+e*m*v;c.multiplyScalar(1/b.determinant());return c};
|
|
|
+THREE.Matrix4.makeInvert3x3=function(b){var c=b.m33,e=c.m,f=b.n33*b.n22-b.n32*b.n23,g=-b.n33*b.n21+b.n31*b.n23,j=b.n32*b.n21-b.n31*b.n22,h=-b.n33*b.n12+b.n32*b.n13,m=b.n33*b.n11-b.n31*b.n13,p=-b.n32*b.n11+b.n31*b.n12,t=b.n23*b.n12-b.n22*b.n13,o=-b.n23*b.n11+b.n21*b.n13,n=b.n22*b.n11-b.n21*b.n12,b=b.n11*f+b.n21*h+b.n31*t;b==0&&console.error("THREE.Matrix4.makeInvert3x3: Matrix not invertible.");b=1/b;e[0]=b*f;e[1]=b*g;e[2]=b*j;e[3]=b*h;e[4]=b*m;e[5]=b*p;e[6]=b*t;e[7]=b*o;e[8]=b*n;return c};
|
|
|
THREE.Matrix4.makeFrustum=function(b,c,e,f,g,j){var h;h=new THREE.Matrix4;h.n11=2*g/(c-b);h.n12=0;h.n13=(c+b)/(c-b);h.n14=0;h.n21=0;h.n22=2*g/(f-e);h.n23=(f+e)/(f-e);h.n24=0;h.n31=0;h.n32=0;h.n33=-(j+g)/(j-g);h.n34=-2*j*g/(j-g);h.n41=0;h.n42=0;h.n43=-1;h.n44=0;return h};THREE.Matrix4.makePerspective=function(b,c,e,f){var g,b=e*Math.tan(b*Math.PI/360);g=-b;return THREE.Matrix4.makeFrustum(g*c,b*c,g,b,e,f)};
|
|
|
THREE.Matrix4.makeOrtho=function(b,c,e,f,g,j){var h,m,p,t;h=new THREE.Matrix4;m=c-b;p=e-f;t=j-g;h.n11=2/m;h.n12=0;h.n13=0;h.n14=-((c+b)/m);h.n21=0;h.n22=2/p;h.n23=0;h.n24=-((e+f)/p);h.n31=0;h.n32=0;h.n33=-2/t;h.n34=-((j+g)/t);h.n41=0;h.n42=0;h.n43=0;h.n44=1;return h};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.eulerOrder="XYZ";this.scale=new THREE.Vector3(1,1,1);this.flipSided=this.doubleSided=this.dynamic=!1;this.renderDepth=null;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;
|
|
@@ -51,8 +51,8 @@ this.useQuaternion?this.matrix.setRotationFromQuaternion(this.quaternion):this.m
|
|
|
this.matrixRotationWorld.extractRotation(this.matrixWorld,this.scale),this.matrixWorldNeedsUpdate=!1,c=!0;for(var b=0,f=this.children.length;b<f;b++)this.children[b].update(this.matrixWorld,c,e)}};THREE.Quaternion=function(b,c,e,f){this.set(b||0,c||0,e||0,f!==void 0?f:1)};
|
|
|
THREE.Quaternion.prototype={set:function(b,c,e,f){this.x=b;this.y=c;this.z=e;this.w=f;return this},copy:function(b){this.x=b.x;this.y=b.y;this.z=b.z;this.w=b.w;return this},setFromEuler:function(b){var c=0.5*Math.PI/360,e=b.x*c,f=b.y*c,g=b.z*c,b=Math.cos(f),f=Math.sin(f),c=Math.cos(-g),g=Math.sin(-g),j=Math.cos(e),e=Math.sin(e),h=b*c,m=f*g;this.w=h*j-m*e;this.x=h*e+m*j;this.y=f*c*j+b*g*e;this.z=b*g*j-f*c*e;return this},setFromAxisAngle:function(b,c){var e=c/2,f=Math.sin(e);this.x=b.x*f;this.y=b.y*
|
|
|
f;this.z=b.z*f;this.w=Math.cos(e);return this},calculateW:function(){this.w=-Math.sqrt(Math.abs(1-this.x*this.x-this.y*this.y-this.z*this.z));return this},inverse:function(){this.x*=-1;this.y*=-1;this.z*=-1;return this},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)},normalize:function(){var b=Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w);b==0?this.w=this.z=this.y=this.x=0:(b=1/b,this.x*=b,this.y*=b,this.z*=b,this.w*=b);return this},
|
|
|
-multiplySelf:function(b){var c=this.x,e=this.y,f=this.z,g=this.w,j=b.x,h=b.y,m=b.z,b=b.w;this.x=c*b+g*j+e*m-f*h;this.y=e*b+g*h+f*j-c*m;this.z=f*b+g*m+c*h-e*j;this.w=g*b-c*j-e*h-f*m;return this},multiply:function(b,c){this.x=b.x*c.w+b.y*c.z-b.z*c.y+b.w*c.x;this.y=-b.x*c.z+b.y*c.w+b.z*c.x+b.w*c.y;this.z=b.x*c.y-b.y*c.x+b.z*c.w+b.w*c.z;this.w=-b.x*c.x-b.y*c.y-b.z*c.z+b.w*c.w;return this},multiplyVector3:function(b,c){c||(c=b);var e=b.x,f=b.y,g=b.z,j=this.x,h=this.y,m=this.z,p=this.w,t=p*e+h*g-m*f,n=
|
|
|
-p*f+m*e-j*g,o=p*g+j*f-h*e,e=-j*e-h*f-m*g;c.x=t*p+e*-j+n*-m-o*-h;c.y=n*p+e*-h+o*-j-t*-m;c.z=o*p+e*-m+t*-h-n*-j;return c}};
|
|
|
+multiplySelf:function(b){var c=this.x,e=this.y,f=this.z,g=this.w,j=b.x,h=b.y,m=b.z,b=b.w;this.x=c*b+g*j+e*m-f*h;this.y=e*b+g*h+f*j-c*m;this.z=f*b+g*m+c*h-e*j;this.w=g*b-c*j-e*h-f*m;return this},multiply:function(b,c){this.x=b.x*c.w+b.y*c.z-b.z*c.y+b.w*c.x;this.y=-b.x*c.z+b.y*c.w+b.z*c.x+b.w*c.y;this.z=b.x*c.y-b.y*c.x+b.z*c.w+b.w*c.z;this.w=-b.x*c.x-b.y*c.y-b.z*c.z+b.w*c.w;return this},multiplyVector3:function(b,c){c||(c=b);var e=b.x,f=b.y,g=b.z,j=this.x,h=this.y,m=this.z,p=this.w,t=p*e+h*g-m*f,o=
|
|
|
+p*f+m*e-j*g,n=p*g+j*f-h*e,e=-j*e-h*f-m*g;c.x=t*p+e*-j+o*-m-n*-h;c.y=o*p+e*-h+n*-j-t*-m;c.z=n*p+e*-m+t*-h-o*-j;return c}};
|
|
|
THREE.Quaternion.slerp=function(b,c,e,f){var g=b.w*c.w+b.x*c.x+b.y*c.y+b.z*c.z;if(Math.abs(g)>=1)return e.w=b.w,e.x=b.x,e.y=b.y,e.z=b.z,e;var j=Math.acos(g),h=Math.sqrt(1-g*g);if(Math.abs(h)<0.0010)return e.w=0.5*(b.w+c.w),e.x=0.5*(b.x+c.x),e.y=0.5*(b.y+c.y),e.z=0.5*(b.z+c.z),e;g=Math.sin((1-f)*j)/h;f=Math.sin(f*j)/h;e.w=b.w*g+c.w*f;e.x=b.x*g+c.x*f;e.y=b.y*g+c.y*f;e.z=b.z*g+c.z*f;return e};THREE.Vertex=function(b){this.position=b||new THREE.Vector3};
|
|
|
THREE.Face3=function(b,c,e,f,g,j){this.a=b;this.b=c;this.c=e;this.normal=f instanceof THREE.Vector3?f:new THREE.Vector3;this.vertexNormals=f instanceof Array?f:[];this.color=g instanceof THREE.Color?g:new THREE.Color;this.vertexColors=g instanceof Array?g:[];this.vertexTangents=[];this.materials=j instanceof Array?j:[j];this.centroid=new THREE.Vector3};
|
|
|
THREE.Face4=function(b,c,e,f,g,j,h){this.a=b;this.b=c;this.c=e;this.d=f;this.normal=g instanceof THREE.Vector3?g:new THREE.Vector3;this.vertexNormals=g instanceof Array?g:[];this.color=j instanceof THREE.Color?j:new THREE.Color;this.vertexColors=j instanceof Array?j:[];this.vertexTangents=[];this.materials=h instanceof Array?h:[h];this.centroid=new THREE.Vector3};THREE.UV=function(b,c){this.set(b||0,c||0)};
|
|
@@ -61,15 +61,15 @@ THREE.Geometry.prototype={computeCentroids:function(){var b,c,e;b=0;for(c=this.f
|
|
|
e.centroid.addSelf(this.vertices[e.d].position),e.centroid.divideScalar(4))},computeFaceNormals:function(b){var c,e,f,g,j,h,m=new THREE.Vector3,p=new THREE.Vector3;f=0;for(g=this.faces.length;f<g;f++){j=this.faces[f];if(b&&j.vertexNormals.length){m.set(0,0,0);c=0;for(e=j.vertexNormals.length;c<e;c++)m.addSelf(j.vertexNormals[c]);m.divideScalar(3)}else c=this.vertices[j.a],e=this.vertices[j.b],h=this.vertices[j.c],m.sub(h.position,e.position),p.sub(c.position,e.position),m.crossSelf(p);m.isZero()||
|
|
|
m.normalize();j.normal.copy(m)}},computeVertexNormals:function(){var b,c,e,f;if(this.__tmpVertices==void 0){f=this.__tmpVertices=Array(this.vertices.length);b=0;for(c=this.vertices.length;b<c;b++)f[b]=new THREE.Vector3;b=0;for(c=this.faces.length;b<c;b++)if(e=this.faces[b],e instanceof THREE.Face3)e.vertexNormals=[new THREE.Vector3,new THREE.Vector3,new THREE.Vector3];else if(e instanceof THREE.Face4)e.vertexNormals=[new THREE.Vector3,new THREE.Vector3,new THREE.Vector3,new THREE.Vector3]}else{f=
|
|
|
this.__tmpVertices;b=0;for(c=this.vertices.length;b<c;b++)f[b].set(0,0,0)}b=0;for(c=this.faces.length;b<c;b++)e=this.faces[b],e instanceof THREE.Face3?(f[e.a].addSelf(e.normal),f[e.b].addSelf(e.normal),f[e.c].addSelf(e.normal)):e instanceof THREE.Face4&&(f[e.a].addSelf(e.normal),f[e.b].addSelf(e.normal),f[e.c].addSelf(e.normal),f[e.d].addSelf(e.normal));b=0;for(c=this.vertices.length;b<c;b++)f[b].normalize();b=0;for(c=this.faces.length;b<c;b++)e=this.faces[b],e instanceof THREE.Face3?(e.vertexNormals[0].copy(f[e.a]),
|
|
|
-e.vertexNormals[1].copy(f[e.b]),e.vertexNormals[2].copy(f[e.c])):e instanceof THREE.Face4&&(e.vertexNormals[0].copy(f[e.a]),e.vertexNormals[1].copy(f[e.b]),e.vertexNormals[2].copy(f[e.c]),e.vertexNormals[3].copy(f[e.d]))},computeTangents:function(){function b(b,e,c,f,g,j,E){m=b.vertices[e].position;p=b.vertices[c].position;t=b.vertices[f].position;n=h[g];o=h[j];v=h[E];u=p.x-m.x;x=t.x-m.x;z=p.y-m.y;y=t.y-m.y;w=p.z-m.z;I=t.z-m.z;C=o.u-n.u;K=v.u-n.u;F=o.v-n.v;B=v.v-n.v;O=1/(C*B-K*F);V.set((B*u-F*x)*
|
|
|
-O,(B*z-F*y)*O,(B*w-F*I)*O);G.set((C*x-K*u)*O,(C*y-K*z)*O,(C*I-K*w)*O);H[e].addSelf(V);H[c].addSelf(V);H[f].addSelf(V);P[e].addSelf(G);P[c].addSelf(G);P[f].addSelf(G)}var c,e,f,g,j,h,m,p,t,n,o,v,u,x,z,y,w,I,C,K,F,B,O,E,H=[],P=[],V=new THREE.Vector3,G=new THREE.Vector3,aa=new THREE.Vector3,Q=new THREE.Vector3,S=new THREE.Vector3;c=0;for(e=this.vertices.length;c<e;c++)H[c]=new THREE.Vector3,P[c]=new THREE.Vector3;c=0;for(e=this.faces.length;c<e;c++)j=this.faces[c],h=this.faceVertexUvs[0][c],j instanceof
|
|
|
-THREE.Face3?b(this,j.a,j.b,j.c,0,1,2):j instanceof THREE.Face4&&(b(this,j.a,j.b,j.c,0,1,2),b(this,j.a,j.b,j.d,0,1,3));var T=["a","b","c","d"];c=0;for(e=this.faces.length;c<e;c++){j=this.faces[c];for(f=0;f<j.vertexNormals.length;f++)S.copy(j.vertexNormals[f]),g=j[T[f]],E=H[g],aa.copy(E),aa.subSelf(S.multiplyScalar(S.dot(E))).normalize(),Q.cross(j.vertexNormals[f],E),g=Q.dot(P[g]),g=g<0?-1:1,j.vertexTangents[f]=new THREE.Vector4(aa.x,aa.y,aa.z,g)}this.hasTangents=!0},computeBoundingBox:function(){var b;
|
|
|
+e.vertexNormals[1].copy(f[e.b]),e.vertexNormals[2].copy(f[e.c])):e instanceof THREE.Face4&&(e.vertexNormals[0].copy(f[e.a]),e.vertexNormals[1].copy(f[e.b]),e.vertexNormals[2].copy(f[e.c]),e.vertexNormals[3].copy(f[e.d]))},computeTangents:function(){function b(b,e,c,f,g,j,G){m=b.vertices[e].position;p=b.vertices[c].position;t=b.vertices[f].position;o=h[g];n=h[j];v=h[G];u=p.x-m.x;y=t.x-m.x;w=p.y-m.y;C=t.y-m.y;x=p.z-m.z;I=t.z-m.z;B=n.u-o.u;J=v.u-o.u;F=n.v-o.v;A=v.v-o.v;X=1/(B*A-J*F);O.set((A*u-F*y)*
|
|
|
+X,(A*w-F*C)*X,(A*x-F*I)*X);P.set((B*y-J*u)*X,(B*C-J*w)*X,(B*I-J*x)*X);H[e].addSelf(O);H[c].addSelf(O);H[f].addSelf(O);L[e].addSelf(P);L[c].addSelf(P);L[f].addSelf(P)}var c,e,f,g,j,h,m,p,t,o,n,v,u,y,w,C,x,I,B,J,F,A,X,G,H=[],L=[],O=new THREE.Vector3,P=new THREE.Vector3,N=new THREE.Vector3,Q=new THREE.Vector3,S=new THREE.Vector3;c=0;for(e=this.vertices.length;c<e;c++)H[c]=new THREE.Vector3,L[c]=new THREE.Vector3;c=0;for(e=this.faces.length;c<e;c++)j=this.faces[c],h=this.faceVertexUvs[0][c],j instanceof
|
|
|
+THREE.Face3?b(this,j.a,j.b,j.c,0,1,2):j instanceof THREE.Face4&&(b(this,j.a,j.b,j.c,0,1,2),b(this,j.a,j.b,j.d,0,1,3));var $=["a","b","c","d"];c=0;for(e=this.faces.length;c<e;c++){j=this.faces[c];for(f=0;f<j.vertexNormals.length;f++)S.copy(j.vertexNormals[f]),g=j[$[f]],G=H[g],N.copy(G),N.subSelf(S.multiplyScalar(S.dot(G))).normalize(),Q.cross(j.vertexNormals[f],G),g=Q.dot(L[g]),g=g<0?-1:1,j.vertexTangents[f]=new THREE.Vector4(N.x,N.y,N.z,g)}this.hasTangents=!0},computeBoundingBox:function(){var b;
|
|
|
if(this.vertices.length>0){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,e=this.vertices.length;c<e;c++){b=this.vertices[c];if(b.position.x<this.boundingBox.x[0])this.boundingBox.x[0]=b.position.x;else if(b.position.x>this.boundingBox.x[1])this.boundingBox.x[1]=b.position.x;if(b.position.y<this.boundingBox.y[0])this.boundingBox.y[0]=b.position.y;
|
|
|
else if(b.position.y>this.boundingBox.y[1])this.boundingBox.y[1]=b.position.y;if(b.position.z<this.boundingBox.z[0])this.boundingBox.z[0]=b.position.z;else if(b.position.z>this.boundingBox.z[1])this.boundingBox.z[1]=b.position.z}}},computeBoundingSphere:function(){for(var b=0,c=0,e=this.vertices.length;c<e;c++)b=Math.max(b,this.vertices[c].position.length());this.boundingSphere={radius:b}},computeEdgeFaces:function(){function b(b,e){return Math.min(b,e)+"_"+Math.max(b,e)}function c(b,e,c){b[e]===
|
|
|
void 0?(b[e]={set:{},array:[]},b[e].set[c]=1,b[e].array.push(c)):b[e].set[c]===void 0&&(b[e].set[c]=1,b[e].array.push(c))}var e,f,g,j,h,m={};e=0;for(f=this.faces.length;e<f;e++)h=this.faces[e],h instanceof THREE.Face3?(g=b(h.a,h.b),c(m,g,e),g=b(h.b,h.c),c(m,g,e),g=b(h.a,h.c),c(m,g,e)):h instanceof THREE.Face4&&(g=b(h.b,h.d),c(m,g,e),g=b(h.a,h.b),c(m,g,e),g=b(h.a,h.d),c(m,g,e),g=b(h.b,h.c),c(m,g,e),g=b(h.c,h.d),c(m,g,e));e=0;for(f=this.edges.length;e<f;e++){h=this.edges[e];g=h.vertexIndices[0];j=h.vertexIndices[1];
|
|
|
h.faceIndices=m[b(g,j)].array;for(g=0;g<h.faceIndices.length;g++)j=h.faceIndices[g],h.faces.push(this.faces[j])}}};THREE.GeometryIdCounter=0;
|
|
|
-THREE.Spline=function(b){function c(b,e,c,f,h,g,j){b=(c-b)*0.5;f=(f-e)*0.5;return(2*(e-c)+b+f)*j+(-3*(e-c)-2*b-f)*g+b*h+e}this.points=b;var e=[],f={x:0,y:0,z:0},g,j,h,m,p,t,n,o,v;this.initFromArray=function(b){this.points=[];for(var e=0;e<b.length;e++)this.points[e]={x:b[e][0],y:b[e][1],z:b[e][2]}};this.getPoint=function(b){g=(this.points.length-1)*b;j=Math.floor(g);h=g-j;e[0]=j==0?j:j-1;e[1]=j;e[2]=j>this.points.length-2?j:j+1;e[3]=j>this.points.length-3?j:j+2;t=this.points[e[0]];n=this.points[e[1]];
|
|
|
-o=this.points[e[2]];v=this.points[e[3]];m=h*h;p=h*m;f.x=c(t.x,n.x,o.x,v.x,h,m,p);f.y=c(t.y,n.y,o.y,v.y,h,m,p);f.z=c(t.z,n.z,o.z,v.z,h,m,p);return f};this.getControlPointsArray=function(){var b,e,c=this.points.length,f=[];for(b=0;b<c;b++)e=this.points[b],f[b]=[e.x,e.y,e.z];return f};this.getLength=function(b){var e,c,f=e=e=0,h=new THREE.Vector3,g=new THREE.Vector3,j=[],m=0;j[0]=0;b||(b=100);c=this.points.length*b;h.copy(this.points[0]);for(b=1;b<c;b++)e=b/c,position=this.getPoint(e),g.copy(position),
|
|
|
+THREE.Spline=function(b){function c(b,e,c,f,h,g,j){b=(c-b)*0.5;f=(f-e)*0.5;return(2*(e-c)+b+f)*j+(-3*(e-c)-2*b-f)*g+b*h+e}this.points=b;var e=[],f={x:0,y:0,z:0},g,j,h,m,p,t,o,n,v;this.initFromArray=function(b){this.points=[];for(var e=0;e<b.length;e++)this.points[e]={x:b[e][0],y:b[e][1],z:b[e][2]}};this.getPoint=function(b){g=(this.points.length-1)*b;j=Math.floor(g);h=g-j;e[0]=j==0?j:j-1;e[1]=j;e[2]=j>this.points.length-2?j:j+1;e[3]=j>this.points.length-3?j:j+2;t=this.points[e[0]];o=this.points[e[1]];
|
|
|
+n=this.points[e[2]];v=this.points[e[3]];m=h*h;p=h*m;f.x=c(t.x,o.x,n.x,v.x,h,m,p);f.y=c(t.y,o.y,n.y,v.y,h,m,p);f.z=c(t.z,o.z,n.z,v.z,h,m,p);return f};this.getControlPointsArray=function(){var b,e,c=this.points.length,f=[];for(b=0;b<c;b++)e=this.points[b],f[b]=[e.x,e.y,e.z];return f};this.getLength=function(b){var e,c,f=e=e=0,h=new THREE.Vector3,g=new THREE.Vector3,j=[],m=0;j[0]=0;b||(b=100);c=this.points.length*b;h.copy(this.points[0]);for(b=1;b<c;b++)e=b/c,position=this.getPoint(e),g.copy(position),
|
|
|
m+=g.distanceTo(h),h.copy(position),e*=this.points.length-1,e=Math.floor(e),e!=f&&(j[e]=m,f=e);j[j.length]=m;return{chunks:j,total:m}};this.reparametrizeByArcLength=function(b){var e,c,f,h,g,j,m=[],p=new THREE.Vector3,t=this.getLength();m.push(p.copy(this.points[0]).clone());for(e=1;e<this.points.length;e++){c=t.chunks[e]-t.chunks[e-1];j=Math.ceil(b*c/t.total);h=(e-1)/(this.points.length-1);g=e/(this.points.length-1);for(c=1;c<j-1;c++)f=h+c*(1/j)*(g-h),position=this.getPoint(f),m.push(p.copy(position).clone());
|
|
|
m.push(p.copy(this.points[e]).clone())}this.points=m}};THREE.Edge=function(b,c,e,f){this.vertices=[b,c];this.vertexIndices=[e,f];this.faces=[];this.faceIndices=[]};THREE.Camera=function(b,c,e,f,g){THREE.Object3D.call(this);this.fov=b||50;this.aspect=c||1;this.near=e||0.1;this.far=f||2E3;this.target=g||new THREE.Object3D;this.useTarget=!0;this.matrixWorldInverse=new THREE.Matrix4;this.projectionMatrix=null;this.updateProjectionMatrix()};THREE.Camera.prototype=new THREE.Object3D;
|
|
|
THREE.Camera.prototype.constructor=THREE.Camera;THREE.Camera.prototype.supr=THREE.Object3D.prototype;THREE.Camera.prototype.translate=function(b,c){this.matrix.rotateAxis(c);c.multiplyScalar(b);this.position.addSelf(c);this.target.position.addSelf(c)};
|
|
@@ -124,13 +124,13 @@ THREE.Ribbon.prototype=new THREE.Object3D;THREE.Ribbon.prototype.constructor=THR
|
|
|
THREE.LOD.prototype.update=function(b,c,e){this.matrixAutoUpdate&&(c|=this.updateMatrix());if(c||this.matrixWorldNeedsUpdate)b?this.matrixWorld.multiply(b,this.matrix):this.matrixWorld.copy(this.matrix),this.matrixWorldNeedsUpdate=!1,c=!0;if(this.LODs.length>1){b=e.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 f=1;f<this.LODs.length;f++)if(b>=this.LODs[f].visibleAtDistance)this.LODs[f-1].object3D.visible=!1,
|
|
|
this.LODs[f].object3D.visible=!0;else break;for(;f<this.LODs.length;f++)this.LODs[f].object3D.visible=!1}for(b=0;b<this.children.length;b++)this.children[b].update(this.matrixWorld,c,e)};THREE.ShadowVolume=function(b,c){b instanceof THREE.Mesh?(THREE.Mesh.call(this,b.geometry,c?[new THREE.ShadowVolumeDynamicMaterial]:[new THREE.ShadowVolumeDynamicMaterial]),b.addChild(this)):THREE.Mesh.call(this,b,c?[new THREE.ShadowVolumeDynamicMaterial]:[new THREE.ShadowVolumeDynamicMaterial]);this.calculateShadowVolumeGeometry()};
|
|
|
THREE.ShadowVolume.prototype=new THREE.Mesh;THREE.ShadowVolume.prototype.constructor=THREE.ShadowVolume;THREE.ShadowVolume.prototype.supr=THREE.Mesh.prototype;
|
|
|
-THREE.ShadowVolume.prototype.calculateShadowVolumeGeometry=function(){if(this.geometry.edges&&this.geometry.edges.length){var b,c,e,f,g,j,h,m,p,t,n,o,v,u,x=new THREE.Geometry;x.vertices=this.geometry.vertices;f=x.faces=this.geometry.faces;var z=x.egdes=this.geometry.edges,y=x.edgeFaces=[];g=0;var w=[];b=0;for(c=f.length;b<c;b++)if(e=f[b],w.push(g),g+=e instanceof THREE.Face3?3:4,e.vertexNormals[0]=e.normal,e.vertexNormals[1]=e.normal,e.vertexNormals[2]=e.normal,e instanceof THREE.Face4)e.vertexNormals[3]=
|
|
|
-e.normal;b=0;for(c=z.length;b<c;b++)m=z[b],e=m.faces[0],f=m.faces[1],g=m.faceIndices[0],j=m.faceIndices[1],h=m.vertexIndices[0],m=m.vertexIndices[1],e.a===h?(p="a",n=w[g]+0):e.b===h?(p="b",n=w[g]+1):e.c===h?(p="c",n=w[g]+2):e.d===h&&(p="d",n=w[g]+3),e.a===m?(p+="a",o=w[g]+0):e.b===m?(p+="b",o=w[g]+1):e.c===m?(p+="c",o=w[g]+2):e.d===m&&(p+="d",o=w[g]+3),f.a===h?(t="a",v=w[j]+0):f.b===h?(t="b",v=w[j]+1):f.c===h?(t="c",v=w[j]+2):f.d===h&&(t="d",v=w[j]+3),f.a===m?(t+="a",u=w[j]+0):f.b===m?(t+="b",u=w[j]+
|
|
|
-1):f.c===m?(t+="c",u=w[j]+2):f.d===m&&(t+="d",u=w[j]+3),p==="ac"||p==="ad"||p==="ca"||p==="da"?n>o&&(e=n,n=o,o=e):n<o&&(e=n,n=o,o=e),t==="ac"||t==="ad"||t==="ca"||t==="da"?v>u&&(e=v,v=u,u=e):v<u&&(e=v,v=u,u=e),e=new THREE.Face4(n,o,v,u),e.normal.set(1,0,0),y.push(e);this.geometry=x}else this.calculateShadowVolumeGeometryWithoutEdgeInfo(this.geometry)};
|
|
|
-THREE.ShadowVolume.prototype.calculateShadowVolumeGeometryWithoutEdgeInfo=function(b){this.geometry=new THREE.Geometry;this.geometry.boundingSphere=b.boundingSphere;this.geometry.edgeFaces=[];var c=this.geometry.vertices,e=this.geometry.faces,f=this.geometry.edgeFaces,g=b.faces,b=b.vertices,j=g.length,h,m,p,t,n,o=["a","b","c","d"];for(p=0;p<j;p++){m=c.length;h=g[p];h instanceof THREE.Face4?(t=4,m=new THREE.Face4(m,m+1,m+2,m+3)):(t=3,m=new THREE.Face3(m,m+1,m+2));m.normal.copy(h.normal);e.push(m);
|
|
|
-for(m=0;m<t;m++)n=b[h[o[m]]],c.push(new THREE.Vertex(n.position.clone()))}for(j=0;j<g.length-1;j++){b=e[j];for(h=j+1;h<g.length;h++)m=e[h],m=this.facesShareEdge(c,b,m),m!==void 0&&(m=new THREE.Face4(m.indices[0],m.indices[3],m.indices[2],m.indices[1]),m.normal.set(1,0,0),f.push(m))}};
|
|
|
-THREE.ShadowVolume.prototype.facesShareEdge=function(b,c,e){var f,g,j,h,m,p,t,n,o,v,u,x,z,y=0,w=["a","b","c","d"];f=c instanceof THREE.Face4?4:3;g=e instanceof THREE.Face4?4:3;for(x=0;x<f;x++){j=c[w[x]];m=b[j];for(z=0;z<g;z++)if(h=e[w[z]],p=b[h],Math.abs(m.position.x-p.position.x)<1.0E-4&&Math.abs(m.position.y-p.position.y)<1.0E-4&&Math.abs(m.position.z-p.position.z)<1.0E-4&&(y++,y===1&&(t=m,n=p,o=j,v=h,u=w[x]),y===2))return u+=w[x],u==="ad"||u==="ac"?{faces:[c,e],vertices:[t,n,p,m],indices:[o,v,
|
|
|
-h,j],vertexTypes:[1,2,2,1],extrudable:!0}:{faces:[c,e],vertices:[t,m,p,n],indices:[o,j,h,v],vertexTypes:[1,1,2,2],extrudable:!0}}};
|
|
|
+THREE.ShadowVolume.prototype.calculateShadowVolumeGeometry=function(){if(this.geometry.edges&&this.geometry.edges.length){var b,c,e,f,g,j,h,m,p,t,o,n,v,u,y=new THREE.Geometry;y.vertices=this.geometry.vertices;f=y.faces=this.geometry.faces;var w=y.egdes=this.geometry.edges,C=y.edgeFaces=[];g=0;var x=[];b=0;for(c=f.length;b<c;b++)if(e=f[b],x.push(g),g+=e instanceof THREE.Face3?3:4,e.vertexNormals[0]=e.normal,e.vertexNormals[1]=e.normal,e.vertexNormals[2]=e.normal,e instanceof THREE.Face4)e.vertexNormals[3]=
|
|
|
+e.normal;b=0;for(c=w.length;b<c;b++)m=w[b],e=m.faces[0],f=m.faces[1],g=m.faceIndices[0],j=m.faceIndices[1],h=m.vertexIndices[0],m=m.vertexIndices[1],e.a===h?(p="a",o=x[g]+0):e.b===h?(p="b",o=x[g]+1):e.c===h?(p="c",o=x[g]+2):e.d===h&&(p="d",o=x[g]+3),e.a===m?(p+="a",n=x[g]+0):e.b===m?(p+="b",n=x[g]+1):e.c===m?(p+="c",n=x[g]+2):e.d===m&&(p+="d",n=x[g]+3),f.a===h?(t="a",v=x[j]+0):f.b===h?(t="b",v=x[j]+1):f.c===h?(t="c",v=x[j]+2):f.d===h&&(t="d",v=x[j]+3),f.a===m?(t+="a",u=x[j]+0):f.b===m?(t+="b",u=x[j]+
|
|
|
+1):f.c===m?(t+="c",u=x[j]+2):f.d===m&&(t+="d",u=x[j]+3),p==="ac"||p==="ad"||p==="ca"||p==="da"?o>n&&(e=o,o=n,n=e):o<n&&(e=o,o=n,n=e),t==="ac"||t==="ad"||t==="ca"||t==="da"?v>u&&(e=v,v=u,u=e):v<u&&(e=v,v=u,u=e),e=new THREE.Face4(o,n,v,u),e.normal.set(1,0,0),C.push(e);this.geometry=y}else this.calculateShadowVolumeGeometryWithoutEdgeInfo(this.geometry)};
|
|
|
+THREE.ShadowVolume.prototype.calculateShadowVolumeGeometryWithoutEdgeInfo=function(b){this.geometry=new THREE.Geometry;this.geometry.boundingSphere=b.boundingSphere;this.geometry.edgeFaces=[];var c=this.geometry.vertices,e=this.geometry.faces,f=this.geometry.edgeFaces,g=b.faces,b=b.vertices,j=g.length,h,m,p,t,o,n=["a","b","c","d"];for(p=0;p<j;p++){m=c.length;h=g[p];h instanceof THREE.Face4?(t=4,m=new THREE.Face4(m,m+1,m+2,m+3)):(t=3,m=new THREE.Face3(m,m+1,m+2));m.normal.copy(h.normal);e.push(m);
|
|
|
+for(m=0;m<t;m++)o=b[h[n[m]]],c.push(new THREE.Vertex(o.position.clone()))}for(j=0;j<g.length-1;j++){b=e[j];for(h=j+1;h<g.length;h++)m=e[h],m=this.facesShareEdge(c,b,m),m!==void 0&&(m=new THREE.Face4(m.indices[0],m.indices[3],m.indices[2],m.indices[1]),m.normal.set(1,0,0),f.push(m))}};
|
|
|
+THREE.ShadowVolume.prototype.facesShareEdge=function(b,c,e){var f,g,j,h,m,p,t,o,n,v,u,y,w,C=0,x=["a","b","c","d"];f=c instanceof THREE.Face4?4:3;g=e instanceof THREE.Face4?4:3;for(y=0;y<f;y++){j=c[x[y]];m=b[j];for(w=0;w<g;w++)if(h=e[x[w]],p=b[h],Math.abs(m.position.x-p.position.x)<1.0E-4&&Math.abs(m.position.y-p.position.y)<1.0E-4&&Math.abs(m.position.z-p.position.z)<1.0E-4&&(C++,C===1&&(t=m,o=p,n=j,v=h,u=x[y]),C===2))return u+=x[y],u==="ad"||u==="ac"?{faces:[c,e],vertices:[t,o,p,m],indices:[n,v,
|
|
|
+h,j],vertexTypes:[1,2,2,1],extrudable:!0}:{faces:[c,e],vertices:[t,m,p,o],indices:[n,j,h,v],vertexTypes:[1,1,2,2],extrudable:!0}}};
|
|
|
THREE.Sprite=function(b){THREE.Object3D.call(this);if(b.material!==void 0)this.material=b.material,this.map=void 0,this.blending=material.blending;else if(b.map!==void 0)this.map=b.map instanceof THREE.Texture?b.map:THREE.ImageUtils.loadTexture(b.map),this.material=void 0,this.blending=b.blending!==void 0?b.blending:THREE.NormalBlending;this.useScreenCoordinates=b.useScreenCoordinates!==void 0?b.useScreenCoordinates:!0;this.mergeWith3D=b.mergeWith3D!==void 0?b.mergeWith3D:!this.useScreenCoordinates;
|
|
|
this.affectedByDistance=b.affectedByDistance!==void 0?b.affectedByDistance:!this.useScreenCoordinates;this.scaleByViewport=b.scaleByViewport!==void 0?b.scaleByViewport:!this.affectedByDistance;this.alignment=b.alignment instanceof THREE.Vector2?b.alignment:THREE.SpriteAlignment.center;this.rotation3d=this.rotation;this.rotation=0;this.opacity=1;this.uvOffset=new THREE.Vector2(0,0);this.uvScale=new THREE.Vector2(1,1)};THREE.Sprite.prototype=new THREE.Object3D;THREE.Sprite.prototype.constructor=THREE.Sprite;
|
|
|
THREE.Sprite.prototype.supr=THREE.Object3D.prototype;THREE.Sprite.prototype.updateMatrix=function(){this.matrix.setPosition(this.position);this.rotation3d.set(0,0,this.rotation);this.matrix.setRotationFromEuler(this.rotation3d);if(this.scale.x!==1||this.scale.y!==1)this.matrix.scale(this.scale),this.boundRadiusScale=Math.max(this.scale.x,this.scale.y);this.matrixWorldNeedsUpdate=!0};THREE.SpriteAlignment={};THREE.SpriteAlignment.topLeft=new THREE.Vector2(1,-1);
|
|
@@ -139,56 +139,57 @@ THREE.Scene=function(){THREE.Object3D.call(this);this.matrixAutoUpdate=!1;this.c
|
|
|
THREE.Scene.prototype.addChildRecurse=function(b){if(b instanceof THREE.Light)this.lights.indexOf(b)===-1&&this.lights.push(b);else if(!(b instanceof THREE.Camera||b instanceof THREE.Bone)&&this.objects.indexOf(b)===-1)this.objects.push(b),this.__objectsAdded.push(b);for(var c=0;c<b.children.length;c++)this.addChildRecurse(b.children[c])};THREE.Scene.prototype.removeChild=function(b){this.supr.removeChild.call(this,b);this.removeChildRecurse(b)};
|
|
|
THREE.Scene.prototype.removeChildRecurse=function(b){if(b instanceof THREE.Light){var c=this.lights.indexOf(b);c!==-1&&this.lights.splice(c,1)}else b instanceof THREE.Camera||(c=this.objects.indexOf(b),c!==-1&&(this.objects.splice(c,1),this.__objectsRemoved.push(b)));for(c=0;c<b.children.length;c++)this.removeChildRecurse(b.children[c])};THREE.Scene.prototype.addObject=THREE.Scene.prototype.addChild;THREE.Scene.prototype.removeObject=THREE.Scene.prototype.removeChild;
|
|
|
THREE.Scene.prototype.addLight=THREE.Scene.prototype.addChild;THREE.Scene.prototype.removeLight=THREE.Scene.prototype.removeChild;THREE.Fog=function(b,c,e){this.color=new THREE.Color(b);this.near=c||1;this.far=e||1E3};THREE.FogExp2=function(b,c){this.color=new THREE.Color(b);this.density=c!==void 0?c:2.5E-4};
|
|
|
-THREE.Projector=function(){function b(){var b=p[m]=p[m]||new THREE.RenderableVertex;m++;return b}function c(b,e){return e.z-b.z}function e(b,e){var c=0,f=1,h=b.z+b.w,g=e.z+e.w,k=-b.z+b.w,j=-e.z+e.w;return h>=0&&g>=0&&k>=0&&j>=0?!0:h<0&&g<0||k<0&&j<0?!1:(h<0?c=Math.max(c,h/(h-g)):g<0&&(f=Math.min(f,h/(h-g))),k<0?c=Math.max(c,k/(k-j)):j<0&&(f=Math.min(f,k/(k-j))),f<c?!1:(b.lerpSelf(e,c),e.lerpSelf(b,1-f),!0))}var f,g,j=[],h,m,p=[],t,n,o=[],v,u=[],x,z,y=[],w,I,C=[],K=new THREE.Vector4,F=new THREE.Vector4,
|
|
|
-B=new THREE.Matrix4,O=new THREE.Matrix4,E=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],H=new THREE.Vector4,P=new THREE.Vector4;this.projectVector=function(b,e){B.multiply(e.projectionMatrix,e.matrixWorldInverse);B.multiplyVector3(b);return b};this.unprojectVector=function(b,e){B.multiply(e.matrixWorld,THREE.Matrix4.makeInvert(e.projectionMatrix));B.multiplyVector3(b);return b};this.projectObjects=function(b,e,h){var e=[],m,p,t;g=0;p=
|
|
|
-b.objects;b=0;for(m=p.length;b<m;b++){t=p[b];var k;if(!(k=!t.visible))if(k=t instanceof THREE.Mesh){a:{k=void 0;for(var n=t.matrixWorld,o=-t.geometry.boundingSphere.radius*Math.max(t.scale.x,Math.max(t.scale.y,t.scale.z)),u=0;u<6;u++)if(k=E[u].x*n.n14+E[u].y*n.n24+E[u].z*n.n34+E[u].w,k<=o){k=!1;break a}k=!0}k=!k}if(!k)k=j[g]=j[g]||new THREE.RenderableObject,g++,f=k,K.copy(t.position),B.multiplyVector3(K),f.object=t,f.z=K.z,e.push(f)}h&&e.sort(c);return e};this.projectScene=function(f,g,j){var K=[],
|
|
|
-S=g.near,T=g.far,k,L,ca,W,X,$,da,ea,fa,J,ia,la,ja,oa,U,ha,ga;I=z=v=n=0;g.matrixAutoUpdate&&g.update(void 0,!0);f.update(void 0,!1,g);B.multiply(g.projectionMatrix,g.matrixWorldInverse);E[0].set(B.n41-B.n11,B.n42-B.n12,B.n43-B.n13,B.n44-B.n14);E[1].set(B.n41+B.n11,B.n42+B.n12,B.n43+B.n13,B.n44+B.n14);E[2].set(B.n41+B.n21,B.n42+B.n22,B.n43+B.n23,B.n44+B.n24);E[3].set(B.n41-B.n21,B.n42-B.n22,B.n43-B.n23,B.n44-B.n24);E[4].set(B.n41-B.n31,B.n42-B.n32,B.n43-B.n33,B.n44-B.n34);E[5].set(B.n41+B.n31,B.n42+
|
|
|
-B.n32,B.n43+B.n33,B.n44+B.n34);for(k=0;k<6;k++)fa=E[k],fa.divideScalar(Math.sqrt(fa.x*fa.x+fa.y*fa.y+fa.z*fa.z));fa=this.projectObjects(f,g,!0);f=0;for(k=fa.length;f<k;f++)if(J=fa[f].object,J.visible)if(ia=J.matrixWorld,la=J.matrixRotationWorld,ja=J.materials,oa=J.overdraw,m=0,J instanceof THREE.Mesh){U=J.geometry;W=U.vertices;ha=U.faces;U=U.faceVertexUvs;L=0;for(ca=W.length;L<ca;L++)h=b(),h.positionWorld.copy(W[L].position),ia.multiplyVector3(h.positionWorld),h.positionScreen.copy(h.positionWorld),
|
|
|
-B.multiplyVector4(h.positionScreen),h.positionScreen.x/=h.positionScreen.w,h.positionScreen.y/=h.positionScreen.w,h.visible=h.positionScreen.z>S&&h.positionScreen.z<T;W=0;for(L=ha.length;W<L;W++){ca=ha[W];if(ca instanceof THREE.Face3)if(X=p[ca.a],$=p[ca.b],da=p[ca.c],X.visible&&$.visible&&da.visible&&(J.doubleSided||J.flipSided!=(da.positionScreen.x-X.positionScreen.x)*($.positionScreen.y-X.positionScreen.y)-(da.positionScreen.y-X.positionScreen.y)*($.positionScreen.x-X.positionScreen.x)<0))ea=o[n]=
|
|
|
-o[n]||new THREE.RenderableFace3,n++,t=ea,t.v1.copy(X),t.v2.copy($),t.v3.copy(da);else continue;else if(ca instanceof THREE.Face4)if(X=p[ca.a],$=p[ca.b],da=p[ca.c],ea=p[ca.d],X.visible&&$.visible&&da.visible&&ea.visible&&(J.doubleSided||J.flipSided!=((ea.positionScreen.x-X.positionScreen.x)*($.positionScreen.y-X.positionScreen.y)-(ea.positionScreen.y-X.positionScreen.y)*($.positionScreen.x-X.positionScreen.x)<0||($.positionScreen.x-da.positionScreen.x)*(ea.positionScreen.y-da.positionScreen.y)-($.positionScreen.y-
|
|
|
-da.positionScreen.y)*(ea.positionScreen.x-da.positionScreen.x)<0)))ga=u[v]=u[v]||new THREE.RenderableFace4,v++,t=ga,t.v1.copy(X),t.v2.copy($),t.v3.copy(da),t.v4.copy(ea);else continue;t.normalWorld.copy(ca.normal);la.multiplyVector3(t.normalWorld);t.centroidWorld.copy(ca.centroid);ia.multiplyVector3(t.centroidWorld);t.centroidScreen.copy(t.centroidWorld);B.multiplyVector3(t.centroidScreen);da=ca.vertexNormals;X=0;for($=da.length;X<$;X++)ea=t.vertexNormalsWorld[X],ea.copy(da[X]),la.multiplyVector3(ea);
|
|
|
-X=0;for($=U.length;X<$;X++)if(ga=U[X][W]){da=0;for(ea=ga.length;da<ea;da++)t.uvs[X][da]=ga[da]}t.meshMaterials=ja;t.faceMaterials=ca.materials;t.overdraw=oa;t.z=t.centroidScreen.z;K.push(t)}}else if(J instanceof THREE.Line){O.multiply(B,ia);W=J.geometry.vertices;X=b();X.positionScreen.copy(W[0].position);O.multiplyVector4(X.positionScreen);L=1;for(ca=W.length;L<ca;L++)if(X=b(),X.positionScreen.copy(W[L].position),O.multiplyVector4(X.positionScreen),$=p[m-2],H.copy(X.positionScreen),P.copy($.positionScreen),
|
|
|
-e(H,P))H.multiplyScalar(1/H.w),P.multiplyScalar(1/P.w),ia=y[z]=y[z]||new THREE.RenderableLine,z++,x=ia,x.v1.positionScreen.copy(H),x.v2.positionScreen.copy(P),x.z=Math.max(H.z,P.z),x.materials=J.materials,K.push(x)}else if(J instanceof THREE.Particle&&(F.set(J.matrixWorld.n14,J.matrixWorld.n24,J.matrixWorld.n34,1),B.multiplyVector4(F),F.z/=F.w,F.z>0&&F.z<1))ia=C[I]=C[I]||new THREE.RenderableParticle,I++,w=ia,w.x=F.x/F.w,w.y=F.y/F.w,w.z=F.z,w.rotation=J.rotation.z,w.scale.x=J.scale.x*Math.abs(w.x-
|
|
|
-(F.x+g.projectionMatrix.n11)/(F.w+g.projectionMatrix.n14)),w.scale.y=J.scale.y*Math.abs(w.y-(F.y+g.projectionMatrix.n22)/(F.w+g.projectionMatrix.n24)),w.materials=J.materials,K.push(w);j&&K.sort(c);return K}};
|
|
|
-THREE.DOMRenderer=function(){THREE.Renderer.call(this);var b=null,c=new THREE.Projector,e,f,g,j;this.domElement=document.createElement("div");this.setSize=function(b,c){e=b;f=c;g=e/2;j=f/2};this.render=function(e,f){var p,t,n,o,v,u,x,z;b=c.projectScene(e,f);p=0;for(t=b.length;p<t;p++)if(v=b[p],v instanceof THREE.RenderableParticle){x=v.x*g+g;z=v.y*j+j;n=0;for(o=v.material.length;n<o;n++)if(u=v.material[n],u instanceof THREE.ParticleDOMMaterial)u=u.domElement,u.style.left=x+"px",u.style.top=z+"px"}}};
|
|
|
-THREE.CanvasRenderer=function(b){function c(b){if(w!=b)x.globalAlpha=w=b}function e(b){if(I!=b){switch(b){case THREE.NormalBlending:x.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:x.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:x.globalCompositeOperation="darker"}I=b}}function f(b){if(C!=b.hex)C=b.hex,x.strokeStyle="#"+j(C.toString(16))}function g(b){if(K!=b.hex)K=b.hex,x.fillStyle="#"+j(K.toString(16))}function j(b){for(;b.length<6;)b="0"+b;return b}
|
|
|
-var h=this,m=null,p=new THREE.Projector,b=b||{},t=b.canvas!==void 0?b.canvas:document.createElement("canvas"),n,o,v,u,x=t.getContext("2d"),z=new THREE.Color(0),y=0,w=1,I=0,C=null,K=null,F=null,B=null,O=null,E,H,P,V,G=new THREE.RenderableVertex,aa=new THREE.RenderableVertex,Q,S,T,k,L,ca,W,X,$,da,ea,fa,J=new THREE.Color(0),ia=new THREE.Color(0),la=new THREE.Color(0),ja=new THREE.Color(0),oa=new THREE.Color(0),U,ha,ga,ma,za,wa,Aa,Ia,Ba,Pa,Z=new THREE.Rectangle,ka=new THREE.Rectangle,qa=new THREE.Rectangle,
|
|
|
-sa=!1,ta=new THREE.Color,va=new THREE.Color,Da=new THREE.Color,xa=new THREE.Color,ra=new THREE.Vector3,Ea,Y,R,ua,M,ya,b=16;Ea=document.createElement("canvas");Ea.width=Ea.height=2;Y=Ea.getContext("2d");Y.fillStyle="rgba(0,0,0,1)";Y.fillRect(0,0,2,2);R=Y.getImageData(0,0,2,2);ua=R.data;M=document.createElement("canvas");M.width=M.height=b;ya=M.getContext("2d");ya.translate(-b/2,-b/2);ya.scale(b,b);b--;this.domElement=t;this.sortElements=this.sortObjects=this.autoClear=!0;this.data={vertices:0,faces:0};
|
|
|
-this.setSize=function(b,e){n=b;o=e;v=n/2;u=o/2;t.width=n;t.height=o;Z.set(-v,-u,v,u);ka.set(-v,-u,v,u);w=1;I=0;O=B=F=K=C=null};this.setClearColor=function(b,e){z=b;y=e;ka.set(-v,-u,v,u)};this.setClearColorHex=function(b,e){z.setHex(b);y=e;ka.set(-v,-u,v,u)};this.clear=function(){x.setTransform(1,0,0,-1,v,u);if(!ka.isEmpty())ka.inflate(1),ka.minSelf(Z),y==0?x.clearRect(ka.getX(),ka.getY(),ka.getWidth(),ka.getHeight()):(e(THREE.NormalBlending),c(1),K="rgba("+Math.floor(z.r*255)+","+Math.floor(z.g*255)+
|
|
|
-","+Math.floor(z.b*255)+","+y+")",x.fillStyle=K,x.fillRect(ka.getX(),ka.getY(),ka.getWidth(),ka.getHeight())),ka.empty()};this.render=function(b,j){function t(b){var e,c,f,h=b.lights;va.setRGB(0,0,0);Da.setRGB(0,0,0);xa.setRGB(0,0,0);b=0;for(e=h.length;b<e;b++)c=h[b],f=c.color,c instanceof THREE.AmbientLight?(va.r+=f.r,va.g+=f.g,va.b+=f.b):c instanceof THREE.DirectionalLight?(Da.r+=f.r,Da.g+=f.g,Da.b+=f.b):c instanceof THREE.PointLight&&(xa.r+=f.r,xa.g+=f.g,xa.b+=f.b)}function n(b,e,c,f){var h,g,
|
|
|
-j,k,m=b.lights,b=0;for(h=m.length;b<h;b++)g=m[b],j=g.color,g instanceof THREE.DirectionalLight?(k=c.dot(g.position),k<=0||(k*=g.intensity,f.r+=j.r*k,f.g+=j.g*k,f.b+=j.b*k)):g instanceof THREE.PointLight&&(k=c.dot(ra.sub(g.position,e).normalize()),k<=0||(k*=g.distance==0?1:1-Math.min(e.distanceTo(g.position)/g.distance,1),k!=0&&(k*=g.intensity,f.r+=j.r*k,f.g+=j.g*k,f.b+=j.b*k)))}function o(b,h,k){c(k.opacity);e(k.blending);var j,m,p,t,na,n;if(k instanceof THREE.ParticleBasicMaterial){if(k.map)t=k.map.image,
|
|
|
-na=t.width>>1,n=t.height>>1,k=h.scale.x*v,p=h.scale.y*u,j=k*na,m=p*n,qa.set(b.x-j,b.y-m,b.x+j,b.y+m),Z.instersects(qa)&&(x.save(),x.translate(b.x,b.y),x.rotate(-h.rotation),x.scale(k,-p),x.translate(-na,-n),x.drawImage(t,0,0),x.restore())}else k instanceof THREE.ParticleCanvasMaterial&&(j=h.scale.x*v,m=h.scale.y*u,qa.set(b.x-j,b.y-m,b.x+j,b.y+m),Z.instersects(qa)&&(f(k.color),g(k.color),x.save(),x.translate(b.x,b.y),x.rotate(-h.rotation),x.scale(j,m),k.program(x),x.restore()))}function w(b,h,k,g){c(g.opacity);
|
|
|
-e(g.blending);x.beginPath();x.moveTo(b.positionScreen.x,b.positionScreen.y);x.lineTo(h.positionScreen.x,h.positionScreen.y);x.closePath();if(g instanceof THREE.LineBasicMaterial){b=g.linewidth;if(F!=b)x.lineWidth=F=b;b=g.linecap;if(B!=b)x.lineCap=B=b;b=g.linejoin;if(O!=b)x.lineJoin=O=b;f(g.color);x.stroke();qa.inflate(g.linewidth*2)}}function y(b,f,g,m,p,t,na,o,u){h.data.vertices+=3;h.data.faces++;c(o.opacity);e(o.blending);Q=b.positionScreen.x;S=b.positionScreen.y;T=f.positionScreen.x;k=f.positionScreen.y;
|
|
|
-L=g.positionScreen.x;ca=g.positionScreen.y;C(Q,S,T,k,L,ca);if(o instanceof THREE.MeshBasicMaterial)if(o.map)o.map.mapping instanceof THREE.UVMapping&&(ma=na.uvs[0],Ga(Q,S,T,k,L,ca,o.map.image,ma[m].u,ma[m].v,ma[p].u,ma[p].v,ma[t].u,ma[t].v));else if(o.envMap){if(o.envMap.mapping instanceof THREE.SphericalReflectionMapping)b=j.matrixWorldInverse,ra.copy(na.vertexNormalsWorld[0]),za=(ra.x*b.n11+ra.y*b.n12+ra.z*b.n13)*0.5+0.5,wa=-(ra.x*b.n21+ra.y*b.n22+ra.z*b.n23)*0.5+0.5,ra.copy(na.vertexNormalsWorld[1]),
|
|
|
-Aa=(ra.x*b.n11+ra.y*b.n12+ra.z*b.n13)*0.5+0.5,Ia=-(ra.x*b.n21+ra.y*b.n22+ra.z*b.n23)*0.5+0.5,ra.copy(na.vertexNormalsWorld[2]),Ba=(ra.x*b.n11+ra.y*b.n12+ra.z*b.n13)*0.5+0.5,Pa=-(ra.x*b.n21+ra.y*b.n22+ra.z*b.n23)*0.5+0.5,Ga(Q,S,T,k,L,ca,o.envMap.image,za,wa,Aa,Ia,Ba,Pa)}else o.wireframe?Ja(o.color,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(o.color);else if(o instanceof THREE.MeshLambertMaterial)o.map&&!o.wireframe&&(o.map.mapping instanceof THREE.UVMapping&&(ma=na.uvs[0],Ga(Q,S,
|
|
|
-T,k,L,ca,o.map.image,ma[m].u,ma[m].v,ma[p].u,ma[p].v,ma[t].u,ma[t].v)),e(THREE.SubtractiveBlending)),sa?!o.wireframe&&o.shading==THREE.SmoothShading&&na.vertexNormalsWorld.length==3?(ia.r=la.r=ja.r=va.r,ia.g=la.g=ja.g=va.g,ia.b=la.b=ja.b=va.b,n(u,na.v1.positionWorld,na.vertexNormalsWorld[0],ia),n(u,na.v2.positionWorld,na.vertexNormalsWorld[1],la),n(u,na.v3.positionWorld,na.vertexNormalsWorld[2],ja),oa.r=(la.r+ja.r)*0.5,oa.g=(la.g+ja.g)*0.5,oa.b=(la.b+ja.b)*0.5,ga=Sa(ia,la,ja,oa),Ga(Q,S,T,k,L,ca,ga,
|
|
|
-0,0,1,0,0,1)):(ta.r=va.r,ta.g=va.g,ta.b=va.b,n(u,na.centroidWorld,na.normalWorld,ta),J.r=Math.max(0,Math.min(o.color.r*ta.r,1)),J.g=Math.max(0,Math.min(o.color.g*ta.g,1)),J.b=Math.max(0,Math.min(o.color.b*ta.b,1)),J.updateHex(),o.wireframe?Ja(J,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(J)):o.wireframe?Ja(o.color,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(o.color);else if(o instanceof THREE.MeshDepthMaterial)U=j.near,ha=j.far,ia.r=ia.g=ia.b=1-Na(b.positionScreen.z,
|
|
|
-U,ha),la.r=la.g=la.b=1-Na(f.positionScreen.z,U,ha),ja.r=ja.g=ja.b=1-Na(g.positionScreen.z,U,ha),oa.r=(la.r+ja.r)*0.5,oa.g=(la.g+ja.g)*0.5,oa.b=(la.b+ja.b)*0.5,ga=Sa(ia,la,ja,oa),Ga(Q,S,T,k,L,ca,ga,0,0,1,0,0,1);else if(o instanceof THREE.MeshNormalMaterial)J.r=Qa(na.normalWorld.x),J.g=Qa(na.normalWorld.y),J.b=Qa(na.normalWorld.z),J.updateHex(),o.wireframe?Ja(J,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(J)}function z(b,f,g,m,p,t,na,o,u){h.data.vertices+=4;h.data.faces++;c(o.opacity);
|
|
|
-e(o.blending);if(o.map||o.envMap)y(b,f,m,0,1,3,na,o,u),y(p,g,t,1,2,3,na,o,u);else if(Q=b.positionScreen.x,S=b.positionScreen.y,T=f.positionScreen.x,k=f.positionScreen.y,L=g.positionScreen.x,ca=g.positionScreen.y,W=m.positionScreen.x,X=m.positionScreen.y,$=p.positionScreen.x,da=p.positionScreen.y,ea=t.positionScreen.x,fa=t.positionScreen.y,o instanceof THREE.MeshBasicMaterial)I(Q,S,T,k,L,ca,W,X),o.wireframe?Ja(o.color,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(o.color);else if(o instanceof
|
|
|
-THREE.MeshLambertMaterial)sa?!o.wireframe&&o.shading==THREE.SmoothShading&&na.vertexNormalsWorld.length==4?(ia.r=la.r=ja.r=oa.r=va.r,ia.g=la.g=ja.g=oa.g=va.g,ia.b=la.b=ja.b=oa.b=va.b,n(u,na.v1.positionWorld,na.vertexNormalsWorld[0],ia),n(u,na.v2.positionWorld,na.vertexNormalsWorld[1],la),n(u,na.v4.positionWorld,na.vertexNormalsWorld[3],ja),n(u,na.v3.positionWorld,na.vertexNormalsWorld[2],oa),ga=Sa(ia,la,ja,oa),C(Q,S,T,k,W,X),Ga(Q,S,T,k,W,X,ga,0,0,1,0,0,1),C($,da,L,ca,ea,fa),Ga($,da,L,ca,ea,fa,ga,
|
|
|
-1,0,1,1,0,1)):(ta.r=va.r,ta.g=va.g,ta.b=va.b,n(u,na.centroidWorld,na.normalWorld,ta),J.r=Math.max(0,Math.min(o.color.r*ta.r,1)),J.g=Math.max(0,Math.min(o.color.g*ta.g,1)),J.b=Math.max(0,Math.min(o.color.b*ta.b,1)),J.updateHex(),I(Q,S,T,k,L,ca,W,X),o.wireframe?Ja(J,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(J)):(I(Q,S,T,k,L,ca,W,X),o.wireframe?Ja(o.color,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(o.color));else if(o instanceof THREE.MeshNormalMaterial)J.r=Qa(na.normalWorld.x),
|
|
|
-J.g=Qa(na.normalWorld.y),J.b=Qa(na.normalWorld.z),J.updateHex(),I(Q,S,T,k,L,ca,W,X),o.wireframe?Ja(J,o.wireframeLinewidth,o.wireframeLinecap,o.wireframeLinejoin):K(J);else if(o instanceof THREE.MeshDepthMaterial)U=j.near,ha=j.far,ia.r=ia.g=ia.b=1-Na(b.positionScreen.z,U,ha),la.r=la.g=la.b=1-Na(f.positionScreen.z,U,ha),ja.r=ja.g=ja.b=1-Na(m.positionScreen.z,U,ha),oa.r=oa.g=oa.b=1-Na(g.positionScreen.z,U,ha),ga=Sa(ia,la,ja,oa),C(Q,S,T,k,W,X),Ga(Q,S,T,k,W,X,ga,0,0,1,0,0,1),C($,da,L,ca,ea,fa),Ga($,da,
|
|
|
-L,ca,ea,fa,ga,1,0,1,1,0,1)}function C(b,e,c,f,h,g){x.beginPath();x.moveTo(b,e);x.lineTo(c,f);x.lineTo(h,g);x.lineTo(b,e);x.closePath()}function I(b,e,c,f,h,g,k,j){x.beginPath();x.moveTo(b,e);x.lineTo(c,f);x.lineTo(h,g);x.lineTo(k,j);x.lineTo(b,e);x.closePath()}function Ja(b,e,c,h){if(F!=e)x.lineWidth=F=e;if(B!=c)x.lineCap=B=c;if(O!=h)x.lineJoin=O=h;f(b);x.stroke();qa.inflate(e*2)}function K(b){g(b);x.fill()}function Ga(b,e,c,f,h,g,k,j,m,p,o,t,na){var n,u;n=k.width-1;u=k.height-1;j*=n;m*=u;p*=n;o*=
|
|
|
-u;t*=n;na*=u;c-=b;f-=e;h-=b;g-=e;p-=j;o-=m;t-=j;na-=m;n=p*na-t*o;if(!((n<0?-n:n)<1))u=1/n,n=(na*c-o*h)*u,o=(na*f-o*g)*u,c=(p*h-t*c)*u,f=(p*g-t*f)*u,b=b-n*j-c*m,e=e-o*j-f*m,x.save(),x.transform(n,o,c,f,b,e),x.clip(),x.drawImage(k,0,0),x.restore()}function Sa(b,e,c,f){var h=~~(b.r*255),g=~~(b.g*255),b=~~(b.b*255),k=~~(e.r*255),j=~~(e.g*255),e=~~(e.b*255),m=~~(c.r*255),p=~~(c.g*255),c=~~(c.b*255),o=~~(f.r*255),t=~~(f.g*255),f=~~(f.b*255);ua[0]=h<0?0:h>255?255:h;ua[1]=g<0?0:g>255?255:g;ua[2]=b<0?0:b>
|
|
|
-255?255:b;ua[4]=k<0?0:k>255?255:k;ua[5]=j<0?0:j>255?255:j;ua[6]=e<0?0:e>255?255:e;ua[8]=m<0?0:m>255?255:m;ua[9]=p<0?0:p>255?255:p;ua[10]=c<0?0:c>255?255:c;ua[12]=o<0?0:o>255?255:o;ua[13]=t<0?0:t>255?255:t;ua[14]=f<0?0:f>255?255:f;Y.putImageData(R,0,0);ya.drawImage(Ea,0,0);return M}function Na(b,e,c){b=(b-e)/(c-e);return b*b*(3-2*b)}function Qa(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}function Ka(b,e){var c=e.x-b.x,f=e.y-b.y,h=c*c+f*f;h!=0&&(h=1/Math.sqrt(h),c*=h,f*=h,e.x+=c,e.y+=f,b.x-=c,b.y-=f)}var Ta,
|
|
|
-Va,pa,Ca,La,Ra,Ua,D;this.autoClear?this.clear():x.setTransform(1,0,0,-1,v,u);h.data.vertices=0;h.data.faces=0;m=p.projectScene(b,j,this.sortElements);(sa=b.lights.length>0)&&t(b);Ta=0;for(Va=m.length;Ta<Va;Ta++){pa=m[Ta];qa.empty();if(pa instanceof THREE.RenderableParticle){E=pa;E.x*=v;E.y*=u;Ca=0;for(La=pa.materials.length;Ca<La;)D=pa.materials[Ca++],D.opacity!=0&&o(E,pa,D,b)}else if(pa instanceof THREE.RenderableLine){if(E=pa.v1,H=pa.v2,E.positionScreen.x*=v,E.positionScreen.y*=u,H.positionScreen.x*=
|
|
|
-v,H.positionScreen.y*=u,qa.addPoint(E.positionScreen.x,E.positionScreen.y),qa.addPoint(H.positionScreen.x,H.positionScreen.y),Z.instersects(qa)){Ca=0;for(La=pa.materials.length;Ca<La;)D=pa.materials[Ca++],D.opacity!=0&&w(E,H,pa,D,b)}}else if(pa instanceof THREE.RenderableFace3){if(E=pa.v1,H=pa.v2,P=pa.v3,E.positionScreen.x*=v,E.positionScreen.y*=u,H.positionScreen.x*=v,H.positionScreen.y*=u,P.positionScreen.x*=v,P.positionScreen.y*=u,pa.overdraw&&(Ka(E.positionScreen,H.positionScreen),Ka(H.positionScreen,
|
|
|
-P.positionScreen),Ka(P.positionScreen,E.positionScreen)),qa.add3Points(E.positionScreen.x,E.positionScreen.y,H.positionScreen.x,H.positionScreen.y,P.positionScreen.x,P.positionScreen.y),Z.instersects(qa)){Ca=0;for(La=pa.meshMaterials.length;Ca<La;)if(D=pa.meshMaterials[Ca++],D instanceof THREE.MeshFaceMaterial){Ra=0;for(Ua=pa.faceMaterials.length;Ra<Ua;)(D=pa.faceMaterials[Ra++])&&D.opacity!=0&&y(E,H,P,0,1,2,pa,D,b)}else D.opacity!=0&&y(E,H,P,0,1,2,pa,D,b)}}else if(pa instanceof THREE.RenderableFace4&&
|
|
|
-(E=pa.v1,H=pa.v2,P=pa.v3,V=pa.v4,E.positionScreen.x*=v,E.positionScreen.y*=u,H.positionScreen.x*=v,H.positionScreen.y*=u,P.positionScreen.x*=v,P.positionScreen.y*=u,V.positionScreen.x*=v,V.positionScreen.y*=u,G.positionScreen.copy(H.positionScreen),aa.positionScreen.copy(V.positionScreen),pa.overdraw&&(Ka(E.positionScreen,H.positionScreen),Ka(H.positionScreen,V.positionScreen),Ka(V.positionScreen,E.positionScreen),Ka(P.positionScreen,G.positionScreen),Ka(P.positionScreen,aa.positionScreen)),qa.addPoint(E.positionScreen.x,
|
|
|
-E.positionScreen.y),qa.addPoint(H.positionScreen.x,H.positionScreen.y),qa.addPoint(P.positionScreen.x,P.positionScreen.y),qa.addPoint(V.positionScreen.x,V.positionScreen.y),Z.instersects(qa))){Ca=0;for(La=pa.meshMaterials.length;Ca<La;)if(D=pa.meshMaterials[Ca++],D instanceof THREE.MeshFaceMaterial){Ra=0;for(Ua=pa.faceMaterials.length;Ra<Ua;)(D=pa.faceMaterials[Ra++])&&D.opacity!=0&&z(E,H,P,V,G,aa,pa,D,b)}else D.opacity!=0&&z(E,H,P,V,G,aa,pa,D,b)}ka.addRectangle(qa)}x.setTransform(1,0,0,1,0,0)}};
|
|
|
-THREE.SVGRenderer=function(){function b(b,e,c){var f,h,g,k;f=0;for(h=b.lights.length;f<h;f++)g=b.lights[f],g instanceof THREE.DirectionalLight?(k=e.normalWorld.dot(g.position)*g.intensity,k>0&&(c.r+=g.color.r*k,c.g+=g.color.g*k,c.b+=g.color.b*k)):g instanceof THREE.PointLight&&(V.sub(g.position,e.centroidWorld),V.normalize(),k=e.normalWorld.dot(V)*g.intensity,k>0&&(c.r+=g.color.r*k,c.g+=g.color.g*k,c.b+=g.color.b*k))}function c(e,c,k,m,p,o){h.data.vertices+=3;h.data.faces++;Q=f(S++);Q.setAttribute("d",
|
|
|
-"M "+e.positionScreen.x+" "+e.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+k.positionScreen.x+","+k.positionScreen.y+"z");p instanceof THREE.MeshBasicMaterial?F.hex=p.color.hex:p instanceof THREE.MeshLambertMaterial?K?(B.r=O.r,B.g=O.g,B.b=O.b,b(o,m,B),F.r=Math.max(0,Math.min(p.color.r*B.r,1)),F.g=Math.max(0,Math.min(p.color.g*B.g,1)),F.b=Math.max(0,Math.min(p.color.b*B.b,1)),F.updateHex()):F.hex=p.color.hex:p instanceof THREE.MeshDepthMaterial?(P=1-p.__2near/(p.__farPlusNear-
|
|
|
-m.z*p.__farMinusNear),F.setRGB(P,P,P)):p instanceof THREE.MeshNormalMaterial&&F.setRGB(g(m.normalWorld.x),g(m.normalWorld.y),g(m.normalWorld.z));p.wireframe?Q.setAttribute("style","fill: none; stroke: #"+j(F.hex.toString(16))+"; stroke-width: "+p.wireframeLinewidth+"; stroke-opacity: "+p.opacity+"; stroke-linecap: "+p.wireframeLinecap+"; stroke-linejoin: "+p.wireframeLinejoin):Q.setAttribute("style","fill: #"+j(F.hex.toString(16))+"; fill-opacity: "+p.opacity);t.appendChild(Q)}function e(e,c,k,m,
|
|
|
-p,o,n){h.data.vertices+=4;h.data.faces++;Q=f(S++);Q.setAttribute("d","M "+e.positionScreen.x+" "+e.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+k.positionScreen.x+","+k.positionScreen.y+" L "+m.positionScreen.x+","+m.positionScreen.y+"z");o instanceof THREE.MeshBasicMaterial?F.hex=o.color.hex:o instanceof THREE.MeshLambertMaterial?K?(B.r=O.r,B.g=O.g,B.b=O.b,b(n,p,B),F.r=Math.max(0,Math.min(o.color.r*B.r,1)),F.g=Math.max(0,Math.min(o.color.g*B.g,1)),F.b=Math.max(0,Math.min(o.color.b*
|
|
|
-B.b,1)),F.updateHex()):F.hex=o.color.hex:o instanceof THREE.MeshDepthMaterial?(P=1-o.__2near/(o.__farPlusNear-p.z*o.__farMinusNear),F.setRGB(P,P,P)):o instanceof THREE.MeshNormalMaterial&&F.setRGB(g(p.normalWorld.x),g(p.normalWorld.y),g(p.normalWorld.z));o.wireframe?Q.setAttribute("style","fill: none; stroke: #"+j(F.hex.toString(16))+"; stroke-width: "+o.wireframeLinewidth+"; stroke-opacity: "+o.opacity+"; stroke-linecap: "+o.wireframeLinecap+"; stroke-linejoin: "+o.wireframeLinejoin):Q.setAttribute("style",
|
|
|
-"fill: #"+j(F.hex.toString(16))+"; fill-opacity: "+o.opacity);t.appendChild(Q)}function f(b){G[b]==null&&(G[b]=document.createElementNS("http://www.w3.org/2000/svg","path"),k==0&&G[b].setAttribute("shape-rendering","crispEdges"));return G[b]}function g(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}function j(b){for(;b.length<6;)b="0"+b;return b}var h=this,m=null,p=new THREE.Projector,t=document.createElementNS("http://www.w3.org/2000/svg","svg"),n,o,v,u,x,z,y,w,I=new THREE.Rectangle,C=new THREE.Rectangle,K=
|
|
|
-!1,F=new THREE.Color(16777215),B=new THREE.Color(16777215),O=new THREE.Color(0),E=new THREE.Color(0),H=new THREE.Color(0),P,V=new THREE.Vector3,G=[],aa=[],Q,S,T,k=1;this.domElement=t;this.sortElements=this.sortObjects=this.autoClear=!0;this.data={vertices:0,faces:0};this.setQuality=function(b){switch(b){case "high":k=1;break;case "low":k=0}};this.setSize=function(b,e){n=b;o=e;v=n/2;u=o/2;t.setAttribute("viewBox",-v+" "+-u+" "+n+" "+o);t.setAttribute("width",n);t.setAttribute("height",o);I.set(-v,
|
|
|
--u,v,u)};this.clear=function(){for(;t.childNodes.length>0;)t.removeChild(t.childNodes[0])};this.render=function(b,f){var g,o,n,F,B,P,J,G;this.autoClear&&this.clear();h.data.vertices=0;h.data.faces=0;m=p.projectScene(b,f,this.sortElements);T=S=0;if(K=b.lights.length>0){J=b.lights;O.setRGB(0,0,0);E.setRGB(0,0,0);H.setRGB(0,0,0);g=0;for(o=J.length;g<o;g++)n=J[g],F=n.color,n instanceof THREE.AmbientLight?(O.r+=F.r,O.g+=F.g,O.b+=F.b):n instanceof THREE.DirectionalLight?(E.r+=F.r,E.g+=F.g,E.b+=F.b):n instanceof
|
|
|
-THREE.PointLight&&(H.r+=F.r,H.g+=F.g,H.b+=F.b)}g=0;for(o=m.length;g<o;g++)if(J=m[g],C.empty(),J instanceof THREE.RenderableParticle){x=J;x.x*=v;x.y*=-u;n=0;for(F=J.materials.length;n<F;)n++}else if(J instanceof THREE.RenderableLine){if(x=J.v1,z=J.v2,x.positionScreen.x*=v,x.positionScreen.y*=-u,z.positionScreen.x*=v,z.positionScreen.y*=-u,C.addPoint(x.positionScreen.x,x.positionScreen.y),C.addPoint(z.positionScreen.x,z.positionScreen.y),I.instersects(C)){n=0;for(F=J.materials.length;n<F;)if((G=J.materials[n++])&&
|
|
|
-G.opacity!=0){B=x;P=z;var V=T++;aa[V]==null&&(aa[V]=document.createElementNS("http://www.w3.org/2000/svg","line"),k==0&&aa[V].setAttribute("shape-rendering","crispEdges"));Q=aa[V];Q.setAttribute("x1",B.positionScreen.x);Q.setAttribute("y1",B.positionScreen.y);Q.setAttribute("x2",P.positionScreen.x);Q.setAttribute("y2",P.positionScreen.y);G instanceof THREE.LineBasicMaterial&&(Q.setAttribute("style","fill: none; stroke: ##"+j(G.color.hex.toString(16))+"; stroke-width: "+G.linewidth+"; stroke-opacity: "+
|
|
|
-G.opacity+"; stroke-linecap: "+G.linecap+"; stroke-linejoin: "+G.linejoin),t.appendChild(Q))}}}else if(J instanceof THREE.RenderableFace3){if(x=J.v1,z=J.v2,y=J.v3,x.positionScreen.x*=v,x.positionScreen.y*=-u,z.positionScreen.x*=v,z.positionScreen.y*=-u,y.positionScreen.x*=v,y.positionScreen.y*=-u,C.addPoint(x.positionScreen.x,x.positionScreen.y),C.addPoint(z.positionScreen.x,z.positionScreen.y),C.addPoint(y.positionScreen.x,y.positionScreen.y),I.instersects(C)){n=0;for(F=J.meshMaterials.length;n<
|
|
|
-F;)if(G=J.meshMaterials[n++],G instanceof THREE.MeshFaceMaterial){B=0;for(P=J.faceMaterials.length;B<P;)(G=J.faceMaterials[B++])&&G.opacity!=0&&c(x,z,y,J,G,b)}else G&&G.opacity!=0&&c(x,z,y,J,G,b)}}else if(J instanceof THREE.RenderableFace4&&(x=J.v1,z=J.v2,y=J.v3,w=J.v4,x.positionScreen.x*=v,x.positionScreen.y*=-u,z.positionScreen.x*=v,z.positionScreen.y*=-u,y.positionScreen.x*=v,y.positionScreen.y*=-u,w.positionScreen.x*=v,w.positionScreen.y*=-u,C.addPoint(x.positionScreen.x,x.positionScreen.y),C.addPoint(z.positionScreen.x,
|
|
|
-z.positionScreen.y),C.addPoint(y.positionScreen.x,y.positionScreen.y),C.addPoint(w.positionScreen.x,w.positionScreen.y),I.instersects(C))){n=0;for(F=J.meshMaterials.length;n<F;)if(G=J.meshMaterials[n++],G instanceof THREE.MeshFaceMaterial){B=0;for(P=J.faceMaterials.length;B<P;)(G=J.faceMaterials[B++])&&G.opacity!=0&&e(x,z,y,w,J,G,b)}else G&&G.opacity!=0&&e(x,z,y,w,J,G,b)}}};
|
|
|
+THREE.Projector=function(){function b(){var b=p[m]=p[m]||new THREE.RenderableVertex;m++;return b}function c(b,e){return e.z-b.z}function e(b,e){var c=0,f=1,h=b.z+b.w,g=e.z+e.w,k=-b.z+b.w,j=-e.z+e.w;return h>=0&&g>=0&&k>=0&&j>=0?!0:h<0&&g<0||k<0&&j<0?!1:(h<0?c=Math.max(c,h/(h-g)):g<0&&(f=Math.min(f,h/(h-g))),k<0?c=Math.max(c,k/(k-j)):j<0&&(f=Math.min(f,k/(k-j))),f<c?!1:(b.lerpSelf(e,c),e.lerpSelf(b,1-f),!0))}var f,g,j=[],h,m,p=[],t,o,n=[],v,u=[],y,w,C=[],x,I,B=[],J=new THREE.Vector4,F=new THREE.Vector4,
|
|
|
+A=new THREE.Matrix4,X=new THREE.Matrix4,G=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],H=new THREE.Vector4,L=new THREE.Vector4;this.projectVector=function(b,e){A.multiply(e.projectionMatrix,e.matrixWorldInverse);A.multiplyVector3(b);return b};this.unprojectVector=function(b,e){A.multiply(e.matrixWorld,THREE.Matrix4.makeInvert(e.projectionMatrix));A.multiplyVector3(b);return b};this.projectObjects=function(b,e,h){var e=[],m,p,t;g=0;p=
|
|
|
+b.objects;b=0;for(m=p.length;b<m;b++){t=p[b];var k;if(!(k=!t.visible))if(k=t instanceof THREE.Mesh){a:{k=void 0;for(var o=t.matrixWorld,n=-t.geometry.boundingSphere.radius*Math.max(t.scale.x,Math.max(t.scale.y,t.scale.z)),u=0;u<6;u++)if(k=G[u].x*o.n14+G[u].y*o.n24+G[u].z*o.n34+G[u].w,k<=n){k=!1;break a}k=!0}k=!k}if(!k)k=j[g]=j[g]||new THREE.RenderableObject,g++,f=k,J.copy(t.position),A.multiplyVector3(J),f.object=t,f.z=J.z,e.push(f)}h&&e.sort(c);return e};this.projectScene=function(f,g,j){var J=[],
|
|
|
+S=g.near,$=g.far,k,K,da,Z,aa,ha,la,fa,pa,D,ea,ca,ja,na,V,U,ga;I=w=v=o=0;g.matrixAutoUpdate&&g.update(void 0,!0);f.update(void 0,!1,g);A.multiply(g.projectionMatrix,g.matrixWorldInverse);G[0].set(A.n41-A.n11,A.n42-A.n12,A.n43-A.n13,A.n44-A.n14);G[1].set(A.n41+A.n11,A.n42+A.n12,A.n43+A.n13,A.n44+A.n14);G[2].set(A.n41+A.n21,A.n42+A.n22,A.n43+A.n23,A.n44+A.n24);G[3].set(A.n41-A.n21,A.n42-A.n22,A.n43-A.n23,A.n44-A.n24);G[4].set(A.n41-A.n31,A.n42-A.n32,A.n43-A.n33,A.n44-A.n34);G[5].set(A.n41+A.n31,A.n42+
|
|
|
+A.n32,A.n43+A.n33,A.n44+A.n34);for(k=0;k<6;k++)pa=G[k],pa.divideScalar(Math.sqrt(pa.x*pa.x+pa.y*pa.y+pa.z*pa.z));pa=this.projectObjects(f,g,!0);f=0;for(k=pa.length;f<k;f++)if(D=pa[f].object,D.visible)if(ea=D.matrixWorld,ca=D.matrixRotationWorld,ja=D.materials,na=D.overdraw,m=0,D instanceof THREE.Mesh){V=D.geometry;Z=V.vertices;U=V.faces;V=V.faceVertexUvs;K=0;for(da=Z.length;K<da;K++)h=b(),h.positionWorld.copy(Z[K].position),ea.multiplyVector3(h.positionWorld),h.positionScreen.copy(h.positionWorld),
|
|
|
+A.multiplyVector4(h.positionScreen),h.positionScreen.x/=h.positionScreen.w,h.positionScreen.y/=h.positionScreen.w,h.visible=h.positionScreen.z>S&&h.positionScreen.z<$;Z=0;for(K=U.length;Z<K;Z++){da=U[Z];if(da instanceof THREE.Face3)if(aa=p[da.a],ha=p[da.b],la=p[da.c],aa.visible&&ha.visible&&la.visible&&(D.doubleSided||D.flipSided!=(la.positionScreen.x-aa.positionScreen.x)*(ha.positionScreen.y-aa.positionScreen.y)-(la.positionScreen.y-aa.positionScreen.y)*(ha.positionScreen.x-aa.positionScreen.x)<
|
|
|
+0))fa=n[o]=n[o]||new THREE.RenderableFace3,o++,t=fa,t.v1.copy(aa),t.v2.copy(ha),t.v3.copy(la);else continue;else if(da instanceof THREE.Face4)if(aa=p[da.a],ha=p[da.b],la=p[da.c],fa=p[da.d],aa.visible&&ha.visible&&la.visible&&fa.visible&&(D.doubleSided||D.flipSided!=((fa.positionScreen.x-aa.positionScreen.x)*(ha.positionScreen.y-aa.positionScreen.y)-(fa.positionScreen.y-aa.positionScreen.y)*(ha.positionScreen.x-aa.positionScreen.x)<0||(ha.positionScreen.x-la.positionScreen.x)*(fa.positionScreen.y-
|
|
|
+la.positionScreen.y)-(ha.positionScreen.y-la.positionScreen.y)*(fa.positionScreen.x-la.positionScreen.x)<0)))ga=u[v]=u[v]||new THREE.RenderableFace4,v++,t=ga,t.v1.copy(aa),t.v2.copy(ha),t.v3.copy(la),t.v4.copy(fa);else continue;t.normalWorld.copy(da.normal);ca.multiplyVector3(t.normalWorld);t.centroidWorld.copy(da.centroid);ea.multiplyVector3(t.centroidWorld);t.centroidScreen.copy(t.centroidWorld);A.multiplyVector3(t.centroidScreen);la=da.vertexNormals;aa=0;for(ha=la.length;aa<ha;aa++)fa=t.vertexNormalsWorld[aa],
|
|
|
+fa.copy(la[aa]),ca.multiplyVector3(fa);aa=0;for(ha=V.length;aa<ha;aa++)if(ga=V[aa][Z]){la=0;for(fa=ga.length;la<fa;la++)t.uvs[aa][la]=ga[la]}t.meshMaterials=ja;t.faceMaterials=da.materials;t.overdraw=na;t.z=t.centroidScreen.z;J.push(t)}}else if(D instanceof THREE.Line){X.multiply(A,ea);Z=D.geometry.vertices;aa=b();aa.positionScreen.copy(Z[0].position);X.multiplyVector4(aa.positionScreen);K=1;for(da=Z.length;K<da;K++)if(aa=b(),aa.positionScreen.copy(Z[K].position),X.multiplyVector4(aa.positionScreen),
|
|
|
+ha=p[m-2],H.copy(aa.positionScreen),L.copy(ha.positionScreen),e(H,L))H.multiplyScalar(1/H.w),L.multiplyScalar(1/L.w),ea=C[w]=C[w]||new THREE.RenderableLine,w++,y=ea,y.v1.positionScreen.copy(H),y.v2.positionScreen.copy(L),y.z=Math.max(H.z,L.z),y.materials=D.materials,J.push(y)}else if(D instanceof THREE.Particle&&(F.set(D.matrixWorld.n14,D.matrixWorld.n24,D.matrixWorld.n34,1),A.multiplyVector4(F),F.z/=F.w,F.z>0&&F.z<1))ea=B[I]=B[I]||new THREE.RenderableParticle,I++,x=ea,x.x=F.x/F.w,x.y=F.y/F.w,x.z=
|
|
|
+F.z,x.rotation=D.rotation.z,x.scale.x=D.scale.x*Math.abs(x.x-(F.x+g.projectionMatrix.n11)/(F.w+g.projectionMatrix.n14)),x.scale.y=D.scale.y*Math.abs(x.y-(F.y+g.projectionMatrix.n22)/(F.w+g.projectionMatrix.n24)),x.materials=D.materials,J.push(x);j&&J.sort(c);return J}};
|
|
|
+THREE.DOMRenderer=function(){THREE.Renderer.call(this);var b=null,c=new THREE.Projector,e,f,g,j;this.domElement=document.createElement("div");this.setSize=function(b,c){e=b;f=c;g=e/2;j=f/2};this.render=function(e,f){var p,t,o,n,v,u,y,w;b=c.projectScene(e,f);p=0;for(t=b.length;p<t;p++)if(v=b[p],v instanceof THREE.RenderableParticle){y=v.x*g+g;w=v.y*j+j;o=0;for(n=v.material.length;o<n;o++)if(u=v.material[o],u instanceof THREE.ParticleDOMMaterial)u=u.domElement,u.style.left=y+"px",u.style.top=w+"px"}}};
|
|
|
+THREE.CanvasRenderer=function(b){function c(b){if(x!=b)y.globalAlpha=x=b}function e(b){if(I!=b){switch(b){case THREE.NormalBlending:y.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:y.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:y.globalCompositeOperation="darker"}I=b}}function f(b){if(B!=b.hex)B=b.hex,y.strokeStyle="#"+j(B.toString(16))}function g(b){if(J!=b.hex)J=b.hex,y.fillStyle="#"+j(J.toString(16))}function j(b){for(;b.length<6;)b="0"+b;return b}
|
|
|
+var h=this,m=null,p=new THREE.Projector,b=b||{},t=b.canvas!==void 0?b.canvas:document.createElement("canvas"),o,n,v,u,y=t.getContext("2d"),w=new THREE.Color(0),C=0,x=1,I=0,B=null,J=null,F=null,A=null,X=null,G,H,L,O,P=new THREE.RenderableVertex,N=new THREE.RenderableVertex,Q,S,$,k,K,da,Z,aa,ha,la,fa,pa,D=new THREE.Color(0),ea=new THREE.Color(0),ca=new THREE.Color(0),ja=new THREE.Color(0),na=new THREE.Color(0),V,U,ga,ka,sa,xa,Aa,Ia,Ba,Pa,W=new THREE.Rectangle,ia=new THREE.Rectangle,qa=new THREE.Rectangle,
|
|
|
+ta=!1,ua=new THREE.Color,wa=new THREE.Color,Da=new THREE.Color,ya=new THREE.Color,ra=new THREE.Vector3,Ea,Y,R,va,T,za,b=16;Ea=document.createElement("canvas");Ea.width=Ea.height=2;Y=Ea.getContext("2d");Y.fillStyle="rgba(0,0,0,1)";Y.fillRect(0,0,2,2);R=Y.getImageData(0,0,2,2);va=R.data;T=document.createElement("canvas");T.width=T.height=b;za=T.getContext("2d");za.translate(-b/2,-b/2);za.scale(b,b);b--;this.domElement=t;this.sortElements=this.sortObjects=this.autoClear=!0;this.data={vertices:0,faces:0};
|
|
|
+this.setSize=function(b,e){o=b;n=e;v=o/2;u=n/2;t.width=o;t.height=n;W.set(-v,-u,v,u);ia.set(-v,-u,v,u);x=1;I=0;X=A=F=J=B=null};this.setClearColor=function(b,e){w=b;C=e;ia.set(-v,-u,v,u)};this.setClearColorHex=function(b,e){w.setHex(b);C=e;ia.set(-v,-u,v,u)};this.clear=function(){y.setTransform(1,0,0,-1,v,u);if(!ia.isEmpty())ia.inflate(1),ia.minSelf(W),C==0?y.clearRect(ia.getX(),ia.getY(),ia.getWidth(),ia.getHeight()):(e(THREE.NormalBlending),c(1),J="rgba("+Math.floor(w.r*255)+","+Math.floor(w.g*255)+
|
|
|
+","+Math.floor(w.b*255)+","+C+")",y.fillStyle=J,y.fillRect(ia.getX(),ia.getY(),ia.getWidth(),ia.getHeight())),ia.empty()};this.render=function(b,j){function t(b){var e,c,f,h=b.lights;wa.setRGB(0,0,0);Da.setRGB(0,0,0);ya.setRGB(0,0,0);b=0;for(e=h.length;b<e;b++)c=h[b],f=c.color,c instanceof THREE.AmbientLight?(wa.r+=f.r,wa.g+=f.g,wa.b+=f.b):c instanceof THREE.DirectionalLight?(Da.r+=f.r,Da.g+=f.g,Da.b+=f.b):c instanceof THREE.PointLight&&(ya.r+=f.r,ya.g+=f.g,ya.b+=f.b)}function o(b,e,c,f){var h,g,
|
|
|
+j,k,m=b.lights,b=0;for(h=m.length;b<h;b++)g=m[b],j=g.color,g instanceof THREE.DirectionalLight?(k=c.dot(g.position),k<=0||(k*=g.intensity,f.r+=j.r*k,f.g+=j.g*k,f.b+=j.b*k)):g instanceof THREE.PointLight&&(k=c.dot(ra.sub(g.position,e).normalize()),k<=0||(k*=g.distance==0?1:1-Math.min(e.distanceTo(g.position)/g.distance,1),k!=0&&(k*=g.intensity,f.r+=j.r*k,f.g+=j.g*k,f.b+=j.b*k)))}function n(b,h,k){c(k.opacity);e(k.blending);var j,m,p,t,ma,o;if(k instanceof THREE.ParticleBasicMaterial){if(k.map)t=k.map.image,
|
|
|
+ma=t.width>>1,o=t.height>>1,k=h.scale.x*v,p=h.scale.y*u,j=k*ma,m=p*o,qa.set(b.x-j,b.y-m,b.x+j,b.y+m),W.instersects(qa)&&(y.save(),y.translate(b.x,b.y),y.rotate(-h.rotation),y.scale(k,-p),y.translate(-ma,-o),y.drawImage(t,0,0),y.restore())}else k instanceof THREE.ParticleCanvasMaterial&&(j=h.scale.x*v,m=h.scale.y*u,qa.set(b.x-j,b.y-m,b.x+j,b.y+m),W.instersects(qa)&&(f(k.color),g(k.color),y.save(),y.translate(b.x,b.y),y.rotate(-h.rotation),y.scale(j,m),k.program(y),y.restore()))}function x(b,h,k,g){c(g.opacity);
|
|
|
+e(g.blending);y.beginPath();y.moveTo(b.positionScreen.x,b.positionScreen.y);y.lineTo(h.positionScreen.x,h.positionScreen.y);y.closePath();if(g instanceof THREE.LineBasicMaterial){b=g.linewidth;if(F!=b)y.lineWidth=F=b;b=g.linecap;if(A!=b)y.lineCap=A=b;b=g.linejoin;if(X!=b)y.lineJoin=X=b;f(g.color);y.stroke();qa.inflate(g.linewidth*2)}}function C(b,f,g,m,p,t,ma,n,u){h.data.vertices+=3;h.data.faces++;c(n.opacity);e(n.blending);Q=b.positionScreen.x;S=b.positionScreen.y;$=f.positionScreen.x;k=f.positionScreen.y;
|
|
|
+K=g.positionScreen.x;da=g.positionScreen.y;B(Q,S,$,k,K,da);if(n instanceof THREE.MeshBasicMaterial)if(n.map)n.map.mapping instanceof THREE.UVMapping&&(ka=ma.uvs[0],Ga(Q,S,$,k,K,da,n.map.image,ka[m].u,ka[m].v,ka[p].u,ka[p].v,ka[t].u,ka[t].v));else if(n.envMap){if(n.envMap.mapping instanceof THREE.SphericalReflectionMapping)b=j.matrixWorldInverse,ra.copy(ma.vertexNormalsWorld[0]),sa=(ra.x*b.n11+ra.y*b.n12+ra.z*b.n13)*0.5+0.5,xa=-(ra.x*b.n21+ra.y*b.n22+ra.z*b.n23)*0.5+0.5,ra.copy(ma.vertexNormalsWorld[1]),
|
|
|
+Aa=(ra.x*b.n11+ra.y*b.n12+ra.z*b.n13)*0.5+0.5,Ia=-(ra.x*b.n21+ra.y*b.n22+ra.z*b.n23)*0.5+0.5,ra.copy(ma.vertexNormalsWorld[2]),Ba=(ra.x*b.n11+ra.y*b.n12+ra.z*b.n13)*0.5+0.5,Pa=-(ra.x*b.n21+ra.y*b.n22+ra.z*b.n23)*0.5+0.5,Ga(Q,S,$,k,K,da,n.envMap.image,sa,xa,Aa,Ia,Ba,Pa)}else n.wireframe?Ja(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(n.color);else if(n instanceof THREE.MeshLambertMaterial)n.map&&!n.wireframe&&(n.map.mapping instanceof THREE.UVMapping&&(ka=ma.uvs[0],Ga(Q,S,
|
|
|
+$,k,K,da,n.map.image,ka[m].u,ka[m].v,ka[p].u,ka[p].v,ka[t].u,ka[t].v)),e(THREE.SubtractiveBlending)),ta?!n.wireframe&&n.shading==THREE.SmoothShading&&ma.vertexNormalsWorld.length==3?(ea.r=ca.r=ja.r=wa.r,ea.g=ca.g=ja.g=wa.g,ea.b=ca.b=ja.b=wa.b,o(u,ma.v1.positionWorld,ma.vertexNormalsWorld[0],ea),o(u,ma.v2.positionWorld,ma.vertexNormalsWorld[1],ca),o(u,ma.v3.positionWorld,ma.vertexNormalsWorld[2],ja),na.r=(ca.r+ja.r)*0.5,na.g=(ca.g+ja.g)*0.5,na.b=(ca.b+ja.b)*0.5,ga=Sa(ea,ca,ja,na),Ga(Q,S,$,k,K,da,ga,
|
|
|
+0,0,1,0,0,1)):(ua.r=wa.r,ua.g=wa.g,ua.b=wa.b,o(u,ma.centroidWorld,ma.normalWorld,ua),D.r=Math.max(0,Math.min(n.color.r*ua.r,1)),D.g=Math.max(0,Math.min(n.color.g*ua.g,1)),D.b=Math.max(0,Math.min(n.color.b*ua.b,1)),D.updateHex(),n.wireframe?Ja(D,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(D)):n.wireframe?Ja(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(n.color);else if(n instanceof THREE.MeshDepthMaterial)V=j.near,U=j.far,ea.r=ea.g=ea.b=1-Na(b.positionScreen.z,
|
|
|
+V,U),ca.r=ca.g=ca.b=1-Na(f.positionScreen.z,V,U),ja.r=ja.g=ja.b=1-Na(g.positionScreen.z,V,U),na.r=(ca.r+ja.r)*0.5,na.g=(ca.g+ja.g)*0.5,na.b=(ca.b+ja.b)*0.5,ga=Sa(ea,ca,ja,na),Ga(Q,S,$,k,K,da,ga,0,0,1,0,0,1);else if(n instanceof THREE.MeshNormalMaterial)D.r=Qa(ma.normalWorld.x),D.g=Qa(ma.normalWorld.y),D.b=Qa(ma.normalWorld.z),D.updateHex(),n.wireframe?Ja(D,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(D)}function w(b,f,g,m,p,t,ma,n,u){h.data.vertices+=4;h.data.faces++;c(n.opacity);
|
|
|
+e(n.blending);if(n.map||n.envMap)C(b,f,m,0,1,3,ma,n,u),C(p,g,t,1,2,3,ma,n,u);else if(Q=b.positionScreen.x,S=b.positionScreen.y,$=f.positionScreen.x,k=f.positionScreen.y,K=g.positionScreen.x,da=g.positionScreen.y,Z=m.positionScreen.x,aa=m.positionScreen.y,ha=p.positionScreen.x,la=p.positionScreen.y,fa=t.positionScreen.x,pa=t.positionScreen.y,n instanceof THREE.MeshBasicMaterial)I(Q,S,$,k,K,da,Z,aa),n.wireframe?Ja(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(n.color);else if(n instanceof
|
|
|
+THREE.MeshLambertMaterial)ta?!n.wireframe&&n.shading==THREE.SmoothShading&&ma.vertexNormalsWorld.length==4?(ea.r=ca.r=ja.r=na.r=wa.r,ea.g=ca.g=ja.g=na.g=wa.g,ea.b=ca.b=ja.b=na.b=wa.b,o(u,ma.v1.positionWorld,ma.vertexNormalsWorld[0],ea),o(u,ma.v2.positionWorld,ma.vertexNormalsWorld[1],ca),o(u,ma.v4.positionWorld,ma.vertexNormalsWorld[3],ja),o(u,ma.v3.positionWorld,ma.vertexNormalsWorld[2],na),ga=Sa(ea,ca,ja,na),B(Q,S,$,k,Z,aa),Ga(Q,S,$,k,Z,aa,ga,0,0,1,0,0,1),B(ha,la,K,da,fa,pa),Ga(ha,la,K,da,fa,pa,
|
|
|
+ga,1,0,1,1,0,1)):(ua.r=wa.r,ua.g=wa.g,ua.b=wa.b,o(u,ma.centroidWorld,ma.normalWorld,ua),D.r=Math.max(0,Math.min(n.color.r*ua.r,1)),D.g=Math.max(0,Math.min(n.color.g*ua.g,1)),D.b=Math.max(0,Math.min(n.color.b*ua.b,1)),D.updateHex(),I(Q,S,$,k,K,da,Z,aa),n.wireframe?Ja(D,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(D)):(I(Q,S,$,k,K,da,Z,aa),n.wireframe?Ja(n.color,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(n.color));else if(n instanceof THREE.MeshNormalMaterial)D.r=
|
|
|
+Qa(ma.normalWorld.x),D.g=Qa(ma.normalWorld.y),D.b=Qa(ma.normalWorld.z),D.updateHex(),I(Q,S,$,k,K,da,Z,aa),n.wireframe?Ja(D,n.wireframeLinewidth,n.wireframeLinecap,n.wireframeLinejoin):J(D);else if(n instanceof THREE.MeshDepthMaterial)V=j.near,U=j.far,ea.r=ea.g=ea.b=1-Na(b.positionScreen.z,V,U),ca.r=ca.g=ca.b=1-Na(f.positionScreen.z,V,U),ja.r=ja.g=ja.b=1-Na(m.positionScreen.z,V,U),na.r=na.g=na.b=1-Na(g.positionScreen.z,V,U),ga=Sa(ea,ca,ja,na),B(Q,S,$,k,Z,aa),Ga(Q,S,$,k,Z,aa,ga,0,0,1,0,0,1),B(ha,la,
|
|
|
+K,da,fa,pa),Ga(ha,la,K,da,fa,pa,ga,1,0,1,1,0,1)}function B(b,e,c,f,h,g){y.beginPath();y.moveTo(b,e);y.lineTo(c,f);y.lineTo(h,g);y.lineTo(b,e);y.closePath()}function I(b,e,c,f,h,g,k,j){y.beginPath();y.moveTo(b,e);y.lineTo(c,f);y.lineTo(h,g);y.lineTo(k,j);y.lineTo(b,e);y.closePath()}function Ja(b,e,c,h){if(F!=e)y.lineWidth=F=e;if(A!=c)y.lineCap=A=c;if(X!=h)y.lineJoin=X=h;f(b);y.stroke();qa.inflate(e*2)}function J(b){g(b);y.fill()}function Ga(b,e,c,f,h,g,k,j,m,p,n,t,ma){var o,u;o=k.width-1;u=k.height-
|
|
|
+1;j*=o;m*=u;p*=o;n*=u;t*=o;ma*=u;c-=b;f-=e;h-=b;g-=e;p-=j;n-=m;t-=j;ma-=m;o=p*ma-t*n;if(!((o<0?-o:o)<1))u=1/o,o=(ma*c-n*h)*u,n=(ma*f-n*g)*u,c=(p*h-t*c)*u,f=(p*g-t*f)*u,b=b-o*j-c*m,e=e-n*j-f*m,y.save(),y.transform(o,n,c,f,b,e),y.clip(),y.drawImage(k,0,0),y.restore()}function Sa(b,e,c,f){var h=~~(b.r*255),g=~~(b.g*255),b=~~(b.b*255),k=~~(e.r*255),j=~~(e.g*255),e=~~(e.b*255),m=~~(c.r*255),p=~~(c.g*255),c=~~(c.b*255),n=~~(f.r*255),t=~~(f.g*255),f=~~(f.b*255);va[0]=h<0?0:h>255?255:h;va[1]=g<0?0:g>255?
|
|
|
+255:g;va[2]=b<0?0:b>255?255:b;va[4]=k<0?0:k>255?255:k;va[5]=j<0?0:j>255?255:j;va[6]=e<0?0:e>255?255:e;va[8]=m<0?0:m>255?255:m;va[9]=p<0?0:p>255?255:p;va[10]=c<0?0:c>255?255:c;va[12]=n<0?0:n>255?255:n;va[13]=t<0?0:t>255?255:t;va[14]=f<0?0:f>255?255:f;Y.putImageData(R,0,0);za.drawImage(Ea,0,0);return T}function Na(b,e,c){b=(b-e)/(c-e);return b*b*(3-2*b)}function Qa(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}function Ka(b,e){var c=e.x-b.x,f=e.y-b.y,h=c*c+f*f;h!=0&&(h=1/Math.sqrt(h),c*=h,f*=h,e.x+=c,e.y+=f,
|
|
|
+b.x-=c,b.y-=f)}var Ta,Va,oa,Ca,La,Ra,Ua,E;this.autoClear?this.clear():y.setTransform(1,0,0,-1,v,u);h.data.vertices=0;h.data.faces=0;m=p.projectScene(b,j,this.sortElements);(ta=b.lights.length>0)&&t(b);Ta=0;for(Va=m.length;Ta<Va;Ta++){oa=m[Ta];qa.empty();if(oa instanceof THREE.RenderableParticle){G=oa;G.x*=v;G.y*=u;Ca=0;for(La=oa.materials.length;Ca<La;)E=oa.materials[Ca++],E.opacity!=0&&n(G,oa,E,b)}else if(oa instanceof THREE.RenderableLine){if(G=oa.v1,H=oa.v2,G.positionScreen.x*=v,G.positionScreen.y*=
|
|
|
+u,H.positionScreen.x*=v,H.positionScreen.y*=u,qa.addPoint(G.positionScreen.x,G.positionScreen.y),qa.addPoint(H.positionScreen.x,H.positionScreen.y),W.instersects(qa)){Ca=0;for(La=oa.materials.length;Ca<La;)E=oa.materials[Ca++],E.opacity!=0&&x(G,H,oa,E,b)}}else if(oa instanceof THREE.RenderableFace3){if(G=oa.v1,H=oa.v2,L=oa.v3,G.positionScreen.x*=v,G.positionScreen.y*=u,H.positionScreen.x*=v,H.positionScreen.y*=u,L.positionScreen.x*=v,L.positionScreen.y*=u,oa.overdraw&&(Ka(G.positionScreen,H.positionScreen),
|
|
|
+Ka(H.positionScreen,L.positionScreen),Ka(L.positionScreen,G.positionScreen)),qa.add3Points(G.positionScreen.x,G.positionScreen.y,H.positionScreen.x,H.positionScreen.y,L.positionScreen.x,L.positionScreen.y),W.instersects(qa)){Ca=0;for(La=oa.meshMaterials.length;Ca<La;)if(E=oa.meshMaterials[Ca++],E instanceof THREE.MeshFaceMaterial){Ra=0;for(Ua=oa.faceMaterials.length;Ra<Ua;)(E=oa.faceMaterials[Ra++])&&E.opacity!=0&&C(G,H,L,0,1,2,oa,E,b)}else E.opacity!=0&&C(G,H,L,0,1,2,oa,E,b)}}else if(oa instanceof
|
|
|
+THREE.RenderableFace4&&(G=oa.v1,H=oa.v2,L=oa.v3,O=oa.v4,G.positionScreen.x*=v,G.positionScreen.y*=u,H.positionScreen.x*=v,H.positionScreen.y*=u,L.positionScreen.x*=v,L.positionScreen.y*=u,O.positionScreen.x*=v,O.positionScreen.y*=u,P.positionScreen.copy(H.positionScreen),N.positionScreen.copy(O.positionScreen),oa.overdraw&&(Ka(G.positionScreen,H.positionScreen),Ka(H.positionScreen,O.positionScreen),Ka(O.positionScreen,G.positionScreen),Ka(L.positionScreen,P.positionScreen),Ka(L.positionScreen,N.positionScreen)),
|
|
|
+qa.addPoint(G.positionScreen.x,G.positionScreen.y),qa.addPoint(H.positionScreen.x,H.positionScreen.y),qa.addPoint(L.positionScreen.x,L.positionScreen.y),qa.addPoint(O.positionScreen.x,O.positionScreen.y),W.instersects(qa))){Ca=0;for(La=oa.meshMaterials.length;Ca<La;)if(E=oa.meshMaterials[Ca++],E instanceof THREE.MeshFaceMaterial){Ra=0;for(Ua=oa.faceMaterials.length;Ra<Ua;)(E=oa.faceMaterials[Ra++])&&E.opacity!=0&&w(G,H,L,O,P,N,oa,E,b)}else E.opacity!=0&&w(G,H,L,O,P,N,oa,E,b)}ia.addRectangle(qa)}y.setTransform(1,
|
|
|
+0,0,1,0,0)}};
|
|
|
+THREE.SVGRenderer=function(){function b(b,e,c){var f,h,g,k;f=0;for(h=b.lights.length;f<h;f++)g=b.lights[f],g instanceof THREE.DirectionalLight?(k=e.normalWorld.dot(g.position)*g.intensity,k>0&&(c.r+=g.color.r*k,c.g+=g.color.g*k,c.b+=g.color.b*k)):g instanceof THREE.PointLight&&(O.sub(g.position,e.centroidWorld),O.normalize(),k=e.normalWorld.dot(O)*g.intensity,k>0&&(c.r+=g.color.r*k,c.g+=g.color.g*k,c.b+=g.color.b*k))}function c(e,c,k,m,p,n){h.data.vertices+=3;h.data.faces++;Q=f(S++);Q.setAttribute("d",
|
|
|
+"M "+e.positionScreen.x+" "+e.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+k.positionScreen.x+","+k.positionScreen.y+"z");p instanceof THREE.MeshBasicMaterial?F.hex=p.color.hex:p instanceof THREE.MeshLambertMaterial?J?(A.r=X.r,A.g=X.g,A.b=X.b,b(n,m,A),F.r=Math.max(0,Math.min(p.color.r*A.r,1)),F.g=Math.max(0,Math.min(p.color.g*A.g,1)),F.b=Math.max(0,Math.min(p.color.b*A.b,1)),F.updateHex()):F.hex=p.color.hex:p instanceof THREE.MeshDepthMaterial?(L=1-p.__2near/(p.__farPlusNear-
|
|
|
+m.z*p.__farMinusNear),F.setRGB(L,L,L)):p instanceof THREE.MeshNormalMaterial&&F.setRGB(g(m.normalWorld.x),g(m.normalWorld.y),g(m.normalWorld.z));p.wireframe?Q.setAttribute("style","fill: none; stroke: #"+j(F.hex.toString(16))+"; stroke-width: "+p.wireframeLinewidth+"; stroke-opacity: "+p.opacity+"; stroke-linecap: "+p.wireframeLinecap+"; stroke-linejoin: "+p.wireframeLinejoin):Q.setAttribute("style","fill: #"+j(F.hex.toString(16))+"; fill-opacity: "+p.opacity);t.appendChild(Q)}function e(e,c,k,m,
|
|
|
+p,n,o){h.data.vertices+=4;h.data.faces++;Q=f(S++);Q.setAttribute("d","M "+e.positionScreen.x+" "+e.positionScreen.y+" L "+c.positionScreen.x+" "+c.positionScreen.y+" L "+k.positionScreen.x+","+k.positionScreen.y+" L "+m.positionScreen.x+","+m.positionScreen.y+"z");n instanceof THREE.MeshBasicMaterial?F.hex=n.color.hex:n instanceof THREE.MeshLambertMaterial?J?(A.r=X.r,A.g=X.g,A.b=X.b,b(o,p,A),F.r=Math.max(0,Math.min(n.color.r*A.r,1)),F.g=Math.max(0,Math.min(n.color.g*A.g,1)),F.b=Math.max(0,Math.min(n.color.b*
|
|
|
+A.b,1)),F.updateHex()):F.hex=n.color.hex:n instanceof THREE.MeshDepthMaterial?(L=1-n.__2near/(n.__farPlusNear-p.z*n.__farMinusNear),F.setRGB(L,L,L)):n instanceof THREE.MeshNormalMaterial&&F.setRGB(g(p.normalWorld.x),g(p.normalWorld.y),g(p.normalWorld.z));n.wireframe?Q.setAttribute("style","fill: none; stroke: #"+j(F.hex.toString(16))+"; stroke-width: "+n.wireframeLinewidth+"; stroke-opacity: "+n.opacity+"; stroke-linecap: "+n.wireframeLinecap+"; stroke-linejoin: "+n.wireframeLinejoin):Q.setAttribute("style",
|
|
|
+"fill: #"+j(F.hex.toString(16))+"; fill-opacity: "+n.opacity);t.appendChild(Q)}function f(b){P[b]==null&&(P[b]=document.createElementNS("http://www.w3.org/2000/svg","path"),k==0&&P[b].setAttribute("shape-rendering","crispEdges"));return P[b]}function g(b){b=(b+1)*0.5;return b<0?0:b>1?1:b}function j(b){for(;b.length<6;)b="0"+b;return b}var h=this,m=null,p=new THREE.Projector,t=document.createElementNS("http://www.w3.org/2000/svg","svg"),o,n,v,u,y,w,C,x,I=new THREE.Rectangle,B=new THREE.Rectangle,J=
|
|
|
+!1,F=new THREE.Color(16777215),A=new THREE.Color(16777215),X=new THREE.Color(0),G=new THREE.Color(0),H=new THREE.Color(0),L,O=new THREE.Vector3,P=[],N=[],Q,S,$,k=1;this.domElement=t;this.sortElements=this.sortObjects=this.autoClear=!0;this.data={vertices:0,faces:0};this.setQuality=function(b){switch(b){case "high":k=1;break;case "low":k=0}};this.setSize=function(b,e){o=b;n=e;v=o/2;u=n/2;t.setAttribute("viewBox",-v+" "+-u+" "+o+" "+n);t.setAttribute("width",o);t.setAttribute("height",n);I.set(-v,-u,
|
|
|
+v,u)};this.clear=function(){for(;t.childNodes.length>0;)t.removeChild(t.childNodes[0])};this.render=function(b,f){var g,n,o,F,A,L,D,O;this.autoClear&&this.clear();h.data.vertices=0;h.data.faces=0;m=p.projectScene(b,f,this.sortElements);$=S=0;if(J=b.lights.length>0){D=b.lights;X.setRGB(0,0,0);G.setRGB(0,0,0);H.setRGB(0,0,0);g=0;for(n=D.length;g<n;g++)o=D[g],F=o.color,o instanceof THREE.AmbientLight?(X.r+=F.r,X.g+=F.g,X.b+=F.b):o instanceof THREE.DirectionalLight?(G.r+=F.r,G.g+=F.g,G.b+=F.b):o instanceof
|
|
|
+THREE.PointLight&&(H.r+=F.r,H.g+=F.g,H.b+=F.b)}g=0;for(n=m.length;g<n;g++)if(D=m[g],B.empty(),D instanceof THREE.RenderableParticle){y=D;y.x*=v;y.y*=-u;o=0;for(F=D.materials.length;o<F;)o++}else if(D instanceof THREE.RenderableLine){if(y=D.v1,w=D.v2,y.positionScreen.x*=v,y.positionScreen.y*=-u,w.positionScreen.x*=v,w.positionScreen.y*=-u,B.addPoint(y.positionScreen.x,y.positionScreen.y),B.addPoint(w.positionScreen.x,w.positionScreen.y),I.instersects(B)){o=0;for(F=D.materials.length;o<F;)if((O=D.materials[o++])&&
|
|
|
+O.opacity!=0){A=y;L=w;var P=$++;N[P]==null&&(N[P]=document.createElementNS("http://www.w3.org/2000/svg","line"),k==0&&N[P].setAttribute("shape-rendering","crispEdges"));Q=N[P];Q.setAttribute("x1",A.positionScreen.x);Q.setAttribute("y1",A.positionScreen.y);Q.setAttribute("x2",L.positionScreen.x);Q.setAttribute("y2",L.positionScreen.y);O instanceof THREE.LineBasicMaterial&&(Q.setAttribute("style","fill: none; stroke: ##"+j(O.color.hex.toString(16))+"; stroke-width: "+O.linewidth+"; stroke-opacity: "+
|
|
|
+O.opacity+"; stroke-linecap: "+O.linecap+"; stroke-linejoin: "+O.linejoin),t.appendChild(Q))}}}else if(D instanceof THREE.RenderableFace3){if(y=D.v1,w=D.v2,C=D.v3,y.positionScreen.x*=v,y.positionScreen.y*=-u,w.positionScreen.x*=v,w.positionScreen.y*=-u,C.positionScreen.x*=v,C.positionScreen.y*=-u,B.addPoint(y.positionScreen.x,y.positionScreen.y),B.addPoint(w.positionScreen.x,w.positionScreen.y),B.addPoint(C.positionScreen.x,C.positionScreen.y),I.instersects(B)){o=0;for(F=D.meshMaterials.length;o<
|
|
|
+F;)if(O=D.meshMaterials[o++],O instanceof THREE.MeshFaceMaterial){A=0;for(L=D.faceMaterials.length;A<L;)(O=D.faceMaterials[A++])&&O.opacity!=0&&c(y,w,C,D,O,b)}else O&&O.opacity!=0&&c(y,w,C,D,O,b)}}else if(D instanceof THREE.RenderableFace4&&(y=D.v1,w=D.v2,C=D.v3,x=D.v4,y.positionScreen.x*=v,y.positionScreen.y*=-u,w.positionScreen.x*=v,w.positionScreen.y*=-u,C.positionScreen.x*=v,C.positionScreen.y*=-u,x.positionScreen.x*=v,x.positionScreen.y*=-u,B.addPoint(y.positionScreen.x,y.positionScreen.y),B.addPoint(w.positionScreen.x,
|
|
|
+w.positionScreen.y),B.addPoint(C.positionScreen.x,C.positionScreen.y),B.addPoint(x.positionScreen.x,x.positionScreen.y),I.instersects(B))){o=0;for(F=D.meshMaterials.length;o<F;)if(O=D.meshMaterials[o++],O instanceof THREE.MeshFaceMaterial){A=0;for(L=D.faceMaterials.length;A<L;)(O=D.faceMaterials[A++])&&O.opacity!=0&&e(y,w,C,x,D,O,b)}else O&&O.opacity!=0&&e(y,w,C,x,D,O,b)}}};
|
|
|
THREE.ShaderChunk={fog_pars_fragment:"#ifdef USE_FOG\nuniform vec3 fogColor;\n#ifdef FOG_EXP2\nuniform float fogDensity;\n#else\nuniform float fogNear;\nuniform float fogFar;\n#endif\n#endif",fog_fragment:"#ifdef USE_FOG\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\n#ifdef FOG_EXP2\nconst float LOG2 = 1.442695;\nfloat fogFactor = exp2( - fogDensity * fogDensity * depth * depth * LOG2 );\nfogFactor = 1.0 - clamp( fogFactor, 0.0, 1.0 );\n#else\nfloat fogFactor = smoothstep( fogNear, fogFar, depth );\n#endif\ngl_FragColor = mix( gl_FragColor, vec4( fogColor, gl_FragColor.w ), fogFactor );\n#endif",
|
|
|
envmap_pars_fragment:"#ifdef USE_ENVMAP\nvarying vec3 vReflect;\nuniform float reflectivity;\nuniform samplerCube envMap;\nuniform int combine;\n#endif",envmap_fragment:"#ifdef USE_ENVMAP\nvec4 cubeColor = textureCube( envMap, vec3( -vReflect.x, vReflect.yz ) );\nif ( combine == 1 ) {\ngl_FragColor = vec4( mix( gl_FragColor.xyz, cubeColor.xyz, reflectivity ), opacity );\n} else {\ngl_FragColor = gl_FragColor * cubeColor;\n}\n#endif",envmap_pars_vertex:"#ifdef USE_ENVMAP\nvarying vec3 vReflect;\nuniform float refractionRatio;\nuniform bool useRefract;\n#endif",
|
|
|
envmap_vertex:"#ifdef USE_ENVMAP\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvec3 nWorld = mat3( objectMatrix[ 0 ].xyz, objectMatrix[ 1 ].xyz, objectMatrix[ 2 ].xyz ) * normal;\nif ( useRefract ) {\nvReflect = refract( normalize( mPosition.xyz - cameraPosition ), normalize( nWorld.xyz ), refractionRatio );\n} else {\nvReflect = reflect( normalize( mPosition.xyz - cameraPosition ), normalize( nWorld.xyz ) );\n}\n#endif",map_particle_pars_fragment:"#ifdef USE_MAP\nuniform sampler2D map;\n#endif",
|
|
@@ -224,131 +225,131 @@ THREE.ShaderChunk.shadowmap_fragment,THREE.ShaderChunk.fog_fragment,"}"].join("\
|
|
|
THREE.ShaderChunk.default_vertex,THREE.ShaderChunk.shadowmap_vertex,"}"].join("\n")},particle_basic:{uniforms:THREE.UniformsLib.particle,fragmentShader:["uniform vec3 psColor;\nuniform float opacity;",THREE.ShaderChunk.color_pars_fragment,THREE.ShaderChunk.map_particle_pars_fragment,THREE.ShaderChunk.fog_pars_fragment,"void main() {\ngl_FragColor = vec4( psColor, opacity );",THREE.ShaderChunk.map_particle_fragment,THREE.ShaderChunk.color_fragment,THREE.ShaderChunk.fog_fragment,"}"].join("\n"),vertexShader:["uniform float size;\nuniform float scale;",
|
|
|
THREE.ShaderChunk.color_pars_vertex,"void main() {",THREE.ShaderChunk.color_vertex,"vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\n#ifdef USE_SIZEATTENUATION\ngl_PointSize = size * ( scale / length( mvPosition.xyz ) );\n#else\ngl_PointSize = size;\n#endif\ngl_Position = projectionMatrix * mvPosition;\n}"].join("\n")},depthRGBA:{uniforms:{},fragmentShader:"vec4 pack_depth( const in float depth ) {\nconst vec4 bit_shift = vec4( 256.0 * 256.0 * 256.0, 256.0 * 256.0, 256.0, 1.0 );\nconst vec4 bit_mask = vec4( 0.0, 1.0 / 256.0, 1.0 / 256.0, 1.0 / 256.0 );\nvec4 res = fract( depth * bit_shift );\nres -= res.xxyz * bit_mask;\nreturn res;\n}\nvoid main() {\ngl_FragData[ 0 ] = pack_depth( gl_FragCoord.z );\n}",
|
|
|
vertexShader:[THREE.ShaderChunk.morphtarget_pars_vertex,"void main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",THREE.ShaderChunk.morphtarget_vertex,THREE.ShaderChunk.default_vertex,"}"].join("\n")}};
|
|
|
-THREE.WebGLRenderer=function(b){function c(b,e,c){var f,h,g,j=b.vertices,m=j.length,p=b.colors,o=p.length,t=b.__vertexArray,n=b.__colorArray,u=b.__sortArray,v=b.__dirtyVertices,x=b.__dirtyColors,w=b.__webglCustomAttributes,y,z;if(w)for(y in w)w[y].offset=0;if(c.sortParticles){ma.multiplySelf(c.matrixWorld);for(f=0;f<m;f++)h=j[f].position,Aa.copy(h),ma.multiplyVector3(Aa),u[f]=[Aa.z,f];u.sort(function(b,e){return e[0]-b[0]});for(f=0;f<m;f++)h=j[u[f][1]].position,g=f*3,t[g]=h.x,t[g+1]=h.y,t[g+2]=h.z;
|
|
|
-for(f=0;f<o;f++)g=f*3,color=p[u[f][1]],n[g]=color.r,n[g+1]=color.g,n[g+2]=color.b;if(w)for(y in w){f=w[y];p=f.value.length;for(g=0;g<p;g++){index=u[g][1];o=f.offset;if(f.size===1){if(f.boundTo===void 0||f.boundTo==="vertices")f.array[o]=f.value[index]}else{if(f.boundTo===void 0||f.boundTo==="vertices")z=f.value[index];f.size===2?(f.array[o]=z.x,f.array[o+1]=z.y):f.size===3?f.type==="c"?(f.array[o]=z.r,f.array[o+1]=z.g,f.array[o+2]=z.b):(f.array[o]=z.x,f.array[o+1]=z.y,f.array[o+2]=z.z):(f.array[o]=
|
|
|
-z.x,f.array[o+1]=z.y,f.array[o+2]=z.z,f.array[o+3]=z.w)}f.offset+=f.size}}}else{if(v)for(f=0;f<m;f++)h=j[f].position,g=f*3,t[g]=h.x,t[g+1]=h.y,t[g+2]=h.z;if(x)for(f=0;f<o;f++)color=p[f],g=f*3,n[g]=color.r,n[g+1]=color.g,n[g+2]=color.b;if(w)for(y in w)if(f=w[y],f.__original.needsUpdate){p=f.value.length;for(g=0;g<p;g++){o=f.offset;if(f.size===1){if(f.boundTo===void 0||f.boundTo==="vertices")f.array[o]=f.value[g]}else{if(f.boundTo===void 0||f.boundTo==="vertices")z=f.value[g];f.size===2?(f.array[o]=
|
|
|
-z.x,f.array[o+1]=z.y):f.size===3?f.type==="c"?(f.array[o]=z.r,f.array[o+1]=z.g,f.array[o+2]=z.b):(f.array[o]=z.x,f.array[o+1]=z.y,f.array[o+2]=z.z):(f.array[o]=z.x,f.array[o+1]=z.y,f.array[o+2]=z.z,f.array[o+3]=z.w)}f.offset+=f.size}}}if(v||c.sortParticles)k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer),k.bufferData(k.ARRAY_BUFFER,t,e);if(x||c.sortParticles)k.bindBuffer(k.ARRAY_BUFFER,b.__webglColorBuffer),k.bufferData(k.ARRAY_BUFFER,n,e);if(w)for(y in w)if(f=w[y],f.__original.needsUpdate||c.sortParticles)k.bindBuffer(k.ARRAY_BUFFER,
|
|
|
-f.buffer),k.bufferData(k.ARRAY_BUFFER,f.array,e)}function e(b,e,c,f,g){f.program||T.initMaterial(f,e,c,g);if(f.morphTargets&&!g.__webglMorphTargetInfluences){g.__webglMorphTargetInfluences=new Float32Array(T.maxMorphTargets);for(var h=0,j=this.maxMorphTargets;h<j;h++)g.__webglMorphTargetInfluences[h]=0}var h=f.program,j=h.uniforms,m=f.uniforms;h!=ca&&(k.useProgram(h),ca=h);k.uniformMatrix4fv(j.projectionMatrix,!1,za);if(c&&(f instanceof THREE.MeshBasicMaterial||f instanceof THREE.MeshLambertMaterial||
|
|
|
-f instanceof THREE.MeshPhongMaterial||f instanceof THREE.LineBasicMaterial||f instanceof THREE.ParticleBasicMaterial||f.fog))if(m.fogColor.value=c.color,c instanceof THREE.Fog)m.fogNear.value=c.near,m.fogFar.value=c.far;else if(c instanceof THREE.FogExp2)m.fogDensity.value=c.density;if(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f.lights){var o,p,t,n=0,u=0,v=0,x,w,y,z=Ia,C=z.directional.colors,E=z.directional.positions,F=z.point.colors,I=z.point.positions,B=z.point.distances,
|
|
|
-U=0,D=0,c=p=y=0;for(o=e.length;c<o;c++)if(p=e[c],t=p.color,x=p.position,w=p.intensity,y=p.distance,p instanceof THREE.AmbientLight)n+=t.r,u+=t.g,v+=t.b;else if(p instanceof THREE.DirectionalLight)y=U*3,C[y]=t.r*w,C[y+1]=t.g*w,C[y+2]=t.b*w,E[y]=x.x,E[y+1]=x.y,E[y+2]=x.z,U+=1;else if(p instanceof THREE.SpotLight)y=U*3,C[y]=t.r*w,C[y+1]=t.g*w,C[y+2]=t.b*w,t=1/x.length(),E[y]=x.x*t,E[y+1]=x.y*t,E[y+2]=x.z*t,U+=1;else if(p instanceof THREE.PointLight)p=D*3,F[p]=t.r*w,F[p+1]=t.g*w,F[p+2]=t.b*w,I[p]=x.x,
|
|
|
-I[p+1]=x.y,I[p+2]=x.z,B[D]=y,D+=1;for(c=U*3;c<C.length;c++)C[c]=0;for(c=D*3;c<F.length;c++)F[c]=0;z.point.length=D;z.directional.length=U;z.ambient[0]=n;z.ambient[1]=u;z.ambient[2]=v;c=Ia;m.enableLighting.value=c.directional.length+c.point.length;m.ambientLightColor.value=c.ambient;m.directionalLightColor.value=c.directional.colors;m.directionalLightDirection.value=c.directional.positions;m.pointLightColor.value=c.point.colors;m.pointLightPosition.value=c.point.positions;m.pointLightDistance.value=
|
|
|
+THREE.WebGLRenderer=function(b){function c(b,e,c){var f,h,g,j=b.vertices,m=j.length,p=b.colors,n=p.length,t=b.__vertexArray,o=b.__colorArray,u=b.__sortArray,v=b.__dirtyVertices,y=b.__dirtyColors,x=b.__webglCustomAttributes,C,w;if(x)for(C in x)x[C].offset=0;if(c.sortParticles){ka.multiplySelf(c.matrixWorld);for(f=0;f<m;f++)h=j[f].position,Aa.copy(h),ka.multiplyVector3(Aa),u[f]=[Aa.z,f];u.sort(function(b,e){return e[0]-b[0]});for(f=0;f<m;f++)h=j[u[f][1]].position,g=f*3,t[g]=h.x,t[g+1]=h.y,t[g+2]=h.z;
|
|
|
+for(f=0;f<n;f++)g=f*3,color=p[u[f][1]],o[g]=color.r,o[g+1]=color.g,o[g+2]=color.b;if(x)for(C in x){f=x[C];p=f.value.length;for(g=0;g<p;g++){index=u[g][1];n=f.offset;if(f.size===1){if(f.boundTo===void 0||f.boundTo==="vertices")f.array[n]=f.value[index]}else{if(f.boundTo===void 0||f.boundTo==="vertices")w=f.value[index];f.size===2?(f.array[n]=w.x,f.array[n+1]=w.y):f.size===3?f.type==="c"?(f.array[n]=w.r,f.array[n+1]=w.g,f.array[n+2]=w.b):(f.array[n]=w.x,f.array[n+1]=w.y,f.array[n+2]=w.z):(f.array[n]=
|
|
|
+w.x,f.array[n+1]=w.y,f.array[n+2]=w.z,f.array[n+3]=w.w)}f.offset+=f.size}}}else{if(v)for(f=0;f<m;f++)h=j[f].position,g=f*3,t[g]=h.x,t[g+1]=h.y,t[g+2]=h.z;if(y)for(f=0;f<n;f++)color=p[f],g=f*3,o[g]=color.r,o[g+1]=color.g,o[g+2]=color.b;if(x)for(C in x)if(f=x[C],f.__original.needsUpdate){p=f.value.length;for(g=0;g<p;g++){n=f.offset;if(f.size===1){if(f.boundTo===void 0||f.boundTo==="vertices")f.array[n]=f.value[g]}else{if(f.boundTo===void 0||f.boundTo==="vertices")w=f.value[g];f.size===2?(f.array[n]=
|
|
|
+w.x,f.array[n+1]=w.y):f.size===3?f.type==="c"?(f.array[n]=w.r,f.array[n+1]=w.g,f.array[n+2]=w.b):(f.array[n]=w.x,f.array[n+1]=w.y,f.array[n+2]=w.z):(f.array[n]=w.x,f.array[n+1]=w.y,f.array[n+2]=w.z,f.array[n+3]=w.w)}f.offset+=f.size}}}if(v||c.sortParticles)k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer),k.bufferData(k.ARRAY_BUFFER,t,e);if(y||c.sortParticles)k.bindBuffer(k.ARRAY_BUFFER,b.__webglColorBuffer),k.bufferData(k.ARRAY_BUFFER,o,e);if(x)for(C in x)if(f=x[C],f.__original.needsUpdate||c.sortParticles)k.bindBuffer(k.ARRAY_BUFFER,
|
|
|
+f.buffer),k.bufferData(k.ARRAY_BUFFER,f.array,e)}function e(b,e,c,f,g){f.program||$.initMaterial(f,e,c,g);if(f.morphTargets&&!g.__webglMorphTargetInfluences){g.__webglMorphTargetInfluences=new Float32Array($.maxMorphTargets);for(var h=0,j=this.maxMorphTargets;h<j;h++)g.__webglMorphTargetInfluences[h]=0}var h=f.program,j=h.uniforms,m=f.uniforms;h!=da&&(k.useProgram(h),da=h);k.uniformMatrix4fv(j.projectionMatrix,!1,sa);if(c&&(f instanceof THREE.MeshBasicMaterial||f instanceof THREE.MeshLambertMaterial||
|
|
|
+f instanceof THREE.MeshPhongMaterial||f instanceof THREE.LineBasicMaterial||f instanceof THREE.ParticleBasicMaterial||f.fog))if(m.fogColor.value=c.color,c instanceof THREE.Fog)m.fogNear.value=c.near,m.fogFar.value=c.far;else if(c instanceof THREE.FogExp2)m.fogDensity.value=c.density;if(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f.lights){var n,p,t,o=0,u=0,v=0,y,x,w,C=Ia,B=C.directional.colors,F=C.directional.positions,G=C.point.colors,I=C.point.positions,A=C.point.distances,
|
|
|
+V=0,E=0,c=p=w=0;for(n=e.length;c<n;c++)if(p=e[c],t=p.color,y=p.position,x=p.intensity,w=p.distance,p instanceof THREE.AmbientLight)o+=t.r,u+=t.g,v+=t.b;else if(p instanceof THREE.DirectionalLight)w=V*3,B[w]=t.r*x,B[w+1]=t.g*x,B[w+2]=t.b*x,F[w]=y.x,F[w+1]=y.y,F[w+2]=y.z,V+=1;else if(p instanceof THREE.SpotLight)w=V*3,B[w]=t.r*x,B[w+1]=t.g*x,B[w+2]=t.b*x,t=1/y.length(),F[w]=y.x*t,F[w+1]=y.y*t,F[w+2]=y.z*t,V+=1;else if(p instanceof THREE.PointLight)p=E*3,G[p]=t.r*x,G[p+1]=t.g*x,G[p+2]=t.b*x,I[p]=y.x,
|
|
|
+I[p+1]=y.y,I[p+2]=y.z,A[E]=w,E+=1;for(c=V*3;c<B.length;c++)B[c]=0;for(c=E*3;c<G.length;c++)G[c]=0;C.point.length=E;C.directional.length=V;C.ambient[0]=o;C.ambient[1]=u;C.ambient[2]=v;c=Ia;m.enableLighting.value=c.directional.length+c.point.length;m.ambientLightColor.value=c.ambient;m.directionalLightColor.value=c.directional.colors;m.directionalLightDirection.value=c.directional.positions;m.pointLightColor.value=c.point.colors;m.pointLightPosition.value=c.point.positions;m.pointLightDistance.value=
|
|
|
c.point.distances}if(f instanceof THREE.MeshBasicMaterial||f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshPhongMaterial)m.diffuse.value=f.color,m.opacity.value=f.opacity,(m.map.texture=f.map)&&m.offsetRepeat.value.set(f.map.offset.x,f.map.offset.y,f.map.repeat.x,f.map.repeat.y),m.lightMap.texture=f.lightMap,m.envMap.texture=f.envMap,m.reflectivity.value=f.reflectivity,m.refractionRatio.value=f.refractionRatio,m.combine.value=f.combine,m.useRefract.value=f.envMap&&f.envMap.mapping instanceof
|
|
|
THREE.CubeRefractionMapping;if(f instanceof THREE.LineBasicMaterial)m.diffuse.value=f.color,m.opacity.value=f.opacity;else if(f instanceof THREE.ParticleBasicMaterial)m.psColor.value=f.color,m.opacity.value=f.opacity,m.size.value=f.size,m.scale.value=Ba.height/2,m.map.texture=f.map;else if(f instanceof THREE.MeshPhongMaterial)m.ambient.value=f.ambient,m.specular.value=f.specular,m.shininess.value=f.shininess;else if(f instanceof THREE.MeshDepthMaterial)m.mNear.value=b.near,m.mFar.value=b.far,m.opacity.value=
|
|
|
-f.opacity;else if(f instanceof THREE.MeshNormalMaterial)m.opacity.value=f.opacity;if(g.receiveShadow&&!f._shadowPass&&m.shadowMatrix){for(c=0;c<ta.length;c++)m.shadowMatrix.value[c]=ta[c],m.shadowMap.texture[c]=T.shadowMap[c];m.shadowDarkness.value=T.shadowMapDarkness;m.shadowBias.value=T.shadowMapBias}for(var K in m)if(n=h.uniforms[K])if(o=m[K],u=o.type,c=o.value,u=="i")k.uniform1i(n,c);else if(u=="f")k.uniform1f(n,c);else if(u=="fv1")k.uniform1fv(n,c);else if(u=="fv")k.uniform3fv(n,c);else if(u==
|
|
|
-"v2")k.uniform2f(n,c.x,c.y);else if(u=="v3")k.uniform3f(n,c.x,c.y,c.z);else if(u=="v4")k.uniform4f(n,c.x,c.y,c.z,c.w);else if(u=="m4"){if(!o._array)o._array=new Float32Array(16);c.flattenToArray(o._array);k.uniformMatrix4fv(n,!1,o._array)}else if(u=="m4v"){if(!o._array)o._array=new Float32Array(16*c.length);u=0;for(v=c.length;u<v;u++)c[u].flattenToArrayOffset(o._array,u*16);k.uniformMatrix4fv(n,!1,o._array)}else if(u=="c")k.uniform3f(n,c.r,c.g,c.b);else if(u=="t"){if(k.uniform1i(n,c),n=o.texture)if(n.image instanceof
|
|
|
-Array&&n.image.length==6){if(o=n,o.image.length==6){if(o.needsUpdate){if(o.__webglInit){k.bindTexture(k.TEXTURE_CUBE_MAP,o.image.__webglTextureCube);for(n=0;n<6;++n)k.texSubImage2D(k.TEXTURE_CUBE_MAP_POSITIVE_X+n,0,0,0,k.RGBA,k.UNSIGNED_BYTE,o.image[n])}else{o.image.__webglTextureCube=k.createTexture();k.bindTexture(k.TEXTURE_CUBE_MAP,o.image.__webglTextureCube);for(n=0;n<6;++n)k.texImage2D(k.TEXTURE_CUBE_MAP_POSITIVE_X+n,0,k.RGBA,k.RGBA,k.UNSIGNED_BYTE,o.image[n]);o.__webglInit=!0}P(k.TEXTURE_CUBE_MAP,
|
|
|
-o,o.image[0]);k.bindTexture(k.TEXTURE_CUBE_MAP,null);o.needsUpdate=!1}k.activeTexture(k.TEXTURE0+c);k.bindTexture(k.TEXTURE_CUBE_MAP,o.image.__webglTextureCube)}}else V(n,c)}else if(u=="tv"){if(!o._array){o._array=[];u=0;for(v=o.texture.length;u<v;u++)o._array[u]=c+u}k.uniform1iv(n,o._array);u=0;for(v=o.texture.length;u<v;u++)(n=o.texture[u])&&V(n,o._array[u])}k.uniformMatrix4fv(j.modelViewMatrix,!1,g._modelViewMatrixArray);k.uniformMatrix3fv(j.normalMatrix,!1,g._normalMatrixArray);(f instanceof THREE.MeshShaderMaterial||
|
|
|
-f instanceof THREE.MeshPhongMaterial||f.envMap)&&j.cameraPosition!==null&&k.uniform3f(j.cameraPosition,b.position.x,b.position.y,b.position.z);(f instanceof THREE.MeshShaderMaterial||f.envMap||f.skinning||g.receiveShadow)&&j.objectMatrix!==null&&k.uniformMatrix4fv(j.objectMatrix,!1,g._objectMatrixArray);(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshShaderMaterial||f.skinning)&&j.viewMatrix!==null&&k.uniformMatrix4fv(j.viewMatrix,!1,wa);if(f instanceof
|
|
|
-THREE.ShadowVolumeDynamicMaterial)b=m.directionalLightDirection.value,b[0]=-e[1].position.x,b[1]=-e[1].position.y,b[2]=-e[1].position.z,k.uniform3fv(j.directionalLightDirection,b),k.uniformMatrix4fv(j.objectMatrix,!1,g._objectMatrixArray),k.uniformMatrix4fv(j.viewMatrix,!1,wa);f.skinning&&(k.uniformMatrix4fv(j.cameraInverseMatrix,!1,wa),k.uniformMatrix4fv(j.boneGlobalMatrices,!1,g.boneMatrices));return h}function f(b,c,f,g,h,j){if(g.opacity!=0){var m,b=e(b,c,f,g,j).attributes;if(!g.morphTargets&&
|
|
|
-b.position>=0)k.bindBuffer(k.ARRAY_BUFFER,h.__webglVertexBuffer),k.vertexAttribPointer(b.position,3,k.FLOAT,!1,0,0);else if(j.morphTargetBase){c=g.program.attributes;j.morphTargetBase!==-1?(k.bindBuffer(k.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[j.morphTargetBase]),k.vertexAttribPointer(c.position,3,k.FLOAT,!1,0,0)):c.position>=0&&(k.bindBuffer(k.ARRAY_BUFFER,h.__webglVertexBuffer),k.vertexAttribPointer(c.position,3,k.FLOAT,!1,0,0));if(j.morphTargetForcedOrder.length)for(var f=0,o=j.morphTargetForcedOrder,
|
|
|
-p=j.morphTargetInfluences;f<g.numSupportedMorphTargets&&f<o.length;)k.bindBuffer(k.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[o[f]]),k.vertexAttribPointer(c["morphTarget"+f],3,k.FLOAT,!1,0,0),j.__webglMorphTargetInfluences[f]=p[o[f]],f++;else{var o=[],t=-1,n=0,p=j.morphTargetInfluences,u,v=p.length,f=0;for(j.morphTargetBase!==-1&&(o[j.morphTargetBase]=!0);f<g.numSupportedMorphTargets;){for(u=0;u<v;u++)!o[u]&&p[u]>t&&(n=u,t=p[n]);k.bindBuffer(k.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[n]);k.vertexAttribPointer(c["morphTarget"+
|
|
|
-f],3,k.FLOAT,!1,0,0);j.__webglMorphTargetInfluences[f]=t;o[n]=1;t=-1;f++}}g.program.uniforms.morphTargetInfluences!==null&&k.uniform1fv(g.program.uniforms.morphTargetInfluences,j.__webglMorphTargetInfluences)}if(h.__webglCustomAttributes)for(m in h.__webglCustomAttributes)b[m]>=0&&(c=h.__webglCustomAttributes[m],k.bindBuffer(k.ARRAY_BUFFER,c.buffer),k.vertexAttribPointer(b[m],c.size,k.FLOAT,!1,0,0));b.color>=0&&(k.bindBuffer(k.ARRAY_BUFFER,h.__webglColorBuffer),k.vertexAttribPointer(b.color,3,k.FLOAT,
|
|
|
+f.opacity;else if(f instanceof THREE.MeshNormalMaterial)m.opacity.value=f.opacity;if(g.receiveShadow&&!f._shadowPass&&m.shadowMatrix){for(c=0;c<ua.length;c++)m.shadowMatrix.value[c]=ua[c],m.shadowMap.texture[c]=$.shadowMap[c];m.shadowDarkness.value=$.shadowMapDarkness;m.shadowBias.value=$.shadowMapBias}for(var J in m)if(o=h.uniforms[J])if(n=m[J],u=n.type,c=n.value,u=="i")k.uniform1i(o,c);else if(u=="f")k.uniform1f(o,c);else if(u=="fv1")k.uniform1fv(o,c);else if(u=="fv")k.uniform3fv(o,c);else if(u==
|
|
|
+"v2")k.uniform2f(o,c.x,c.y);else if(u=="v3")k.uniform3f(o,c.x,c.y,c.z);else if(u=="v4")k.uniform4f(o,c.x,c.y,c.z,c.w);else if(u=="m4"){if(!n._array)n._array=new Float32Array(16);c.flattenToArray(n._array);k.uniformMatrix4fv(o,!1,n._array)}else if(u=="m4v"){if(!n._array)n._array=new Float32Array(16*c.length);u=0;for(v=c.length;u<v;u++)c[u].flattenToArrayOffset(n._array,u*16);k.uniformMatrix4fv(o,!1,n._array)}else if(u=="c")k.uniform3f(o,c.r,c.g,c.b);else if(u=="t"){if(k.uniform1i(o,c),o=n.texture)if(o.image instanceof
|
|
|
+Array&&o.image.length==6){if(n=o,n.image.length==6){if(n.needsUpdate){if(n.__webglInit){k.bindTexture(k.TEXTURE_CUBE_MAP,n.image.__webglTextureCube);for(o=0;o<6;++o)k.texSubImage2D(k.TEXTURE_CUBE_MAP_POSITIVE_X+o,0,0,0,k.RGBA,k.UNSIGNED_BYTE,n.image[o])}else{n.image.__webglTextureCube=k.createTexture();k.bindTexture(k.TEXTURE_CUBE_MAP,n.image.__webglTextureCube);for(o=0;o<6;++o)k.texImage2D(k.TEXTURE_CUBE_MAP_POSITIVE_X+o,0,k.RGBA,k.RGBA,k.UNSIGNED_BYTE,n.image[o]);n.__webglInit=!0}L(k.TEXTURE_CUBE_MAP,
|
|
|
+n,n.image[0]);k.bindTexture(k.TEXTURE_CUBE_MAP,null);n.needsUpdate=!1}k.activeTexture(k.TEXTURE0+c);k.bindTexture(k.TEXTURE_CUBE_MAP,n.image.__webglTextureCube)}}else O(o,c)}else if(u=="tv"){if(!n._array){n._array=[];u=0;for(v=n.texture.length;u<v;u++)n._array[u]=c+u}k.uniform1iv(o,n._array);u=0;for(v=n.texture.length;u<v;u++)(o=n.texture[u])&&O(o,n._array[u])}k.uniformMatrix4fv(j.modelViewMatrix,!1,g._modelViewMatrixArray);k.uniformMatrix3fv(j.normalMatrix,!1,g._normalMatrixArray);(f instanceof THREE.MeshShaderMaterial||
|
|
|
+f instanceof THREE.MeshPhongMaterial||f.envMap)&&j.cameraPosition!==null&&k.uniform3f(j.cameraPosition,b.position.x,b.position.y,b.position.z);(f instanceof THREE.MeshShaderMaterial||f.envMap||f.skinning||g.receiveShadow)&&j.objectMatrix!==null&&k.uniformMatrix4fv(j.objectMatrix,!1,g._objectMatrixArray);(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshShaderMaterial||f.skinning)&&j.viewMatrix!==null&&k.uniformMatrix4fv(j.viewMatrix,!1,xa);if(f instanceof
|
|
|
+THREE.ShadowVolumeDynamicMaterial)b=m.directionalLightDirection.value,b[0]=-e[1].position.x,b[1]=-e[1].position.y,b[2]=-e[1].position.z,k.uniform3fv(j.directionalLightDirection,b),k.uniformMatrix4fv(j.objectMatrix,!1,g._objectMatrixArray),k.uniformMatrix4fv(j.viewMatrix,!1,xa);f.skinning&&(k.uniformMatrix4fv(j.cameraInverseMatrix,!1,xa),k.uniformMatrix4fv(j.boneGlobalMatrices,!1,g.boneMatrices));return h}function f(b,c,f,g,h,j){if(g.opacity!=0){var m,b=e(b,c,f,g,j).attributes;if(!g.morphTargets&&
|
|
|
+b.position>=0)k.bindBuffer(k.ARRAY_BUFFER,h.__webglVertexBuffer),k.vertexAttribPointer(b.position,3,k.FLOAT,!1,0,0);else if(j.morphTargetBase){c=g.program.attributes;j.morphTargetBase!==-1?(k.bindBuffer(k.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[j.morphTargetBase]),k.vertexAttribPointer(c.position,3,k.FLOAT,!1,0,0)):c.position>=0&&(k.bindBuffer(k.ARRAY_BUFFER,h.__webglVertexBuffer),k.vertexAttribPointer(c.position,3,k.FLOAT,!1,0,0));if(j.morphTargetForcedOrder.length)for(var f=0,n=j.morphTargetForcedOrder,
|
|
|
+p=j.morphTargetInfluences;f<g.numSupportedMorphTargets&&f<n.length;)k.bindBuffer(k.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[n[f]]),k.vertexAttribPointer(c["morphTarget"+f],3,k.FLOAT,!1,0,0),j.__webglMorphTargetInfluences[f]=p[n[f]],f++;else{var n=[],t=-1,o=0,p=j.morphTargetInfluences,u,v=p.length,f=0;for(j.morphTargetBase!==-1&&(n[j.morphTargetBase]=!0);f<g.numSupportedMorphTargets;){for(u=0;u<v;u++)!n[u]&&p[u]>t&&(o=u,t=p[o]);k.bindBuffer(k.ARRAY_BUFFER,h.__webglMorphTargetsBuffers[o]);k.vertexAttribPointer(c["morphTarget"+
|
|
|
+f],3,k.FLOAT,!1,0,0);j.__webglMorphTargetInfluences[f]=t;n[o]=1;t=-1;f++}}g.program.uniforms.morphTargetInfluences!==null&&k.uniform1fv(g.program.uniforms.morphTargetInfluences,j.__webglMorphTargetInfluences)}if(h.__webglCustomAttributes)for(m in h.__webglCustomAttributes)b[m]>=0&&(c=h.__webglCustomAttributes[m],k.bindBuffer(k.ARRAY_BUFFER,c.buffer),k.vertexAttribPointer(b[m],c.size,k.FLOAT,!1,0,0));b.color>=0&&(k.bindBuffer(k.ARRAY_BUFFER,h.__webglColorBuffer),k.vertexAttribPointer(b.color,3,k.FLOAT,
|
|
|
!1,0,0));b.normal>=0&&(k.bindBuffer(k.ARRAY_BUFFER,h.__webglNormalBuffer),k.vertexAttribPointer(b.normal,3,k.FLOAT,!1,0,0));b.tangent>=0&&(k.bindBuffer(k.ARRAY_BUFFER,h.__webglTangentBuffer),k.vertexAttribPointer(b.tangent,4,k.FLOAT,!1,0,0));b.uv>=0&&(h.__webglUVBuffer?(k.bindBuffer(k.ARRAY_BUFFER,h.__webglUVBuffer),k.vertexAttribPointer(b.uv,2,k.FLOAT,!1,0,0),k.enableVertexAttribArray(b.uv)):k.disableVertexAttribArray(b.uv));b.uv2>=0&&(h.__webglUV2Buffer?(k.bindBuffer(k.ARRAY_BUFFER,h.__webglUV2Buffer),
|
|
|
k.vertexAttribPointer(b.uv2,2,k.FLOAT,!1,0,0),k.enableVertexAttribArray(b.uv2)):k.disableVertexAttribArray(b.uv2));g.skinning&&b.skinVertexA>=0&&b.skinVertexB>=0&&b.skinIndex>=0&&b.skinWeight>=0&&(k.bindBuffer(k.ARRAY_BUFFER,h.__webglSkinVertexABuffer),k.vertexAttribPointer(b.skinVertexA,4,k.FLOAT,!1,0,0),k.bindBuffer(k.ARRAY_BUFFER,h.__webglSkinVertexBBuffer),k.vertexAttribPointer(b.skinVertexB,4,k.FLOAT,!1,0,0),k.bindBuffer(k.ARRAY_BUFFER,h.__webglSkinIndicesBuffer),k.vertexAttribPointer(b.skinIndex,
|
|
|
-4,k.FLOAT,!1,0,0),k.bindBuffer(k.ARRAY_BUFFER,h.__webglSkinWeightsBuffer),k.vertexAttribPointer(b.skinWeight,4,k.FLOAT,!1,0,0));j instanceof THREE.Mesh?(g.wireframe?(k.lineWidth(g.wireframeLinewidth),k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,h.__webglLineBuffer),k.drawElements(k.LINES,h.__webglLineCount,k.UNSIGNED_SHORT,0)):(k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,h.__webglFaceBuffer),k.drawElements(k.TRIANGLES,h.__webglFaceCount,k.UNSIGNED_SHORT,0)),T.data.vertices+=h.__webglFaceCount,T.data.faces+=h.__webglFaceCount/
|
|
|
-3,T.data.drawCalls++):j instanceof THREE.Line?(j=j.type==THREE.LineStrip?k.LINE_STRIP:k.LINES,k.lineWidth(g.linewidth),k.drawArrays(j,0,h.__webglLineCount),T.data.drawCalls++):j instanceof THREE.ParticleSystem?(k.drawArrays(k.POINTS,0,h.__webglParticleCount),T.data.drawCalls++):j instanceof THREE.Ribbon&&(k.drawArrays(k.TRIANGLE_STRIP,0,h.__webglVertexCount),T.data.drawCalls++)}}function g(b,e,c){if(!b.__webglVertexBuffer)b.__webglVertexBuffer=k.createBuffer();if(!b.__webglNormalBuffer)b.__webglNormalBuffer=
|
|
|
-k.createBuffer();b.hasPos&&(k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer),k.bufferData(k.ARRAY_BUFFER,b.positionArray,k.DYNAMIC_DRAW),k.enableVertexAttribArray(e.attributes.position),k.vertexAttribPointer(e.attributes.position,3,k.FLOAT,!1,0,0));if(b.hasNormal){k.bindBuffer(k.ARRAY_BUFFER,b.__webglNormalBuffer);if(c==THREE.FlatShading){var f,h,g,j,m,o,p,t,n,u,v=b.count*3;for(u=0;u<v;u+=9)c=b.normalArray,f=c[u],h=c[u+1],g=c[u+2],j=c[u+3],o=c[u+4],t=c[u+5],m=c[u+6],p=c[u+7],n=c[u+8],f=(f+j+m)/
|
|
|
-3,h=(h+o+p)/3,g=(g+t+n)/3,c[u]=f,c[u+1]=h,c[u+2]=g,c[u+3]=f,c[u+4]=h,c[u+5]=g,c[u+6]=f,c[u+7]=h,c[u+8]=g}k.bufferData(k.ARRAY_BUFFER,b.normalArray,k.DYNAMIC_DRAW);k.enableVertexAttribArray(e.attributes.normal);k.vertexAttribPointer(e.attributes.normal,3,k.FLOAT,!1,0,0)}k.drawArrays(k.TRIANGLES,0,b.count);b.count=0}function j(b){if($!=b.doubleSided)b.doubleSided?k.disable(k.CULL_FACE):k.enable(k.CULL_FACE),$=b.doubleSided;if(da!=b.flipSided)b.flipSided?k.frontFace(k.CW):k.frontFace(k.CCW),da=b.flipSided}
|
|
|
-function h(b){fa!=b&&(b?k.enable(k.DEPTH_TEST):k.disable(k.DEPTH_TEST),fa=b)}function m(b,e,c){J!=b&&(b?k.enable(k.POLYGON_OFFSET_FILL):k.disable(k.POLYGON_OFFSET_FILL),J=b);if(b&&(ia!=e||la!=c))k.polygonOffset(e,c),ia=e,la=c}function p(b){ga[0].set(b.n41-b.n11,b.n42-b.n12,b.n43-b.n13,b.n44-b.n14);ga[1].set(b.n41+b.n11,b.n42+b.n12,b.n43+b.n13,b.n44+b.n14);ga[2].set(b.n41+b.n21,b.n42+b.n22,b.n43+b.n23,b.n44+b.n24);ga[3].set(b.n41-b.n21,b.n42-b.n22,b.n43-b.n23,b.n44-b.n24);ga[4].set(b.n41-b.n31,b.n42-
|
|
|
-b.n32,b.n43-b.n33,b.n44-b.n34);ga[5].set(b.n41+b.n31,b.n42+b.n32,b.n43+b.n33,b.n44+b.n34);for(var e,b=0;b<6;b++)e=ga[b],e.divideScalar(Math.sqrt(e.x*e.x+e.y*e.y+e.z*e.z))}function t(b){for(var e=b.matrixWorld,c=-b.geometry.boundingSphere.radius*Math.max(b.scale.x,Math.max(b.scale.y,b.scale.z)),f=0;f<6;f++)if(b=ga[f].x*e.n14+ga[f].y*e.n24+ga[f].z*e.n34+ga[f].w,b<=c)return!1;return!0}function n(b,e){b.list[b.count]=e;b.count+=1}function o(b){var e,c,f=b.object,h=b.opaque,g=b.transparent;g.count=0;b=
|
|
|
-h.count=0;for(e=f.materials.length;b<e;b++)c=f.materials[b],c.transparent?n(g,c):n(h,c)}function v(b){var e,c,f,h,g=b.object,j=b.buffer,k=b.opaque,m=b.transparent;m.count=0;b=k.count=0;for(f=g.materials.length;b<f;b++)if(e=g.materials[b],e instanceof THREE.MeshFaceMaterial){e=0;for(c=j.materials.length;e<c;e++)(h=j.materials[e])&&(h.transparent?n(m,h):n(k,h))}else(h=e)&&(h.transparent?n(m,h):n(k,h))}function u(b,e){return e.z-b.z}function x(b,c){var m,o,n,u=0,v,x,w,y,z=b.lights;sa||(sa=new THREE.Camera(T.shadowCameraFov,
|
|
|
-c.aspect,T.shadowCameraNear,T.shadowCameraFar));m=0;for(o=z.length;m<o;m++)if(n=z[m],n instanceof THREE.SpotLight&&n.castShadow){T.shadowMap[u]||(T.shadowMap[u]=new THREE.WebGLRenderTarget(T.shadowMapWidth,T.shadowMapHeight,{minFilter:THREE.LinearFilter,magFilter:THREE.LinearFilter,format:THREE.RGBAFormat}));ta[u]||(ta[u]=new THREE.Matrix4);v=T.shadowMap[u];x=ta[u];sa.position.copy(n.position);sa.target.position.copy(n.target.position);sa.update(void 0,!0);b.update(void 0,!1,sa);x.set(0.5,0,0,0.5,
|
|
|
-0,0.5,0,0.5,0,0,0.5,0.5,0,0,0,1);x.multiplySelf(sa.projectionMatrix);x.multiplySelf(sa.matrixWorldInverse);sa.matrixWorldInverse.flattenToArray(wa);sa.projectionMatrix.flattenToArray(za);ma.multiply(sa.projectionMatrix,sa.matrixWorldInverse);p(ma);T.initWebGLObjects(b);G(v);k.clearColor(1,1,1,1);T.clear();k.clearColor(ka.r,ka.g,ka.b,qa);x=b.__webglObjects.length;n=b.__webglObjectsImmediate.length;for(v=0;v<x;v++)w=b.__webglObjects[v],y=w.object,y.visible&&y.castShadow?!(y instanceof THREE.Mesh)||
|
|
|
-t(y)?(y.matrixWorld.flattenToArray(y._objectMatrixArray),I(y,sa,!1),w.render=!0):w.render=!1:w.render=!1;h(!0);H(THREE.NormalBlending);for(v=0;v<x;v++)if(w=b.__webglObjects[v],w.render)y=w.object,buffer=w.buffer,j(y),w=y.geometry.morphTargets.length?xa:Da,f(sa,z,null,w,buffer,y);for(v=0;v<n;v++)w=b.__webglObjectsImmediate[v],y=w.object,y.visible&&y.castShadow&&(y.matrixAutoUpdate&&y.matrixWorld.flattenToArray(y._objectMatrixArray),I(y,sa,!1),j(y),program=e(sa,z,null,Da,y),y.render(function(b){g(b,
|
|
|
-program,Da.shading)}));u++}}function z(b){k.enable(k.POLYGON_OFFSET_FILL);k.polygonOffset(0.1,1);k.enable(k.STENCIL_TEST);k.enable(k.DEPTH_TEST);k.depthMask(!1);k.colorMask(!1,!1,!1,!1);k.stencilFunc(k.ALWAYS,1,255);k.stencilOpSeparate(k.BACK,k.KEEP,k.INCR,k.KEEP);k.stencilOpSeparate(k.FRONT,k.KEEP,k.DECR,k.KEEP);var e,c=b.lights.length,f,h=b.lights,g=[],j,m,o,p,t,n=b.__webglShadowVolumes.length;for(e=0;e<c;e++)if(f=b.lights[e],f instanceof THREE.DirectionalLight&&f.castShadow){g[0]=-f.position.x;
|
|
|
-g[1]=-f.position.y;g[2]=-f.position.z;for(t=0;t<n;t++)f=b.__webglShadowVolumes[t].object,j=b.__webglShadowVolumes[t].buffer,m=f.materials[0],m.program||T.initMaterial(m,h,void 0,f),m=m.program,o=m.uniforms,p=m.attributes,ca!==m&&(k.useProgram(m),ca=m,k.uniformMatrix4fv(o.projectionMatrix,!1,za),k.uniformMatrix4fv(o.viewMatrix,!1,wa),k.uniform3fv(o.directionalLightDirection,g)),f.matrixWorld.flattenToArray(f._objectMatrixArray),k.uniformMatrix4fv(o.objectMatrix,!1,f._objectMatrixArray),k.bindBuffer(k.ARRAY_BUFFER,
|
|
|
+4,k.FLOAT,!1,0,0),k.bindBuffer(k.ARRAY_BUFFER,h.__webglSkinWeightsBuffer),k.vertexAttribPointer(b.skinWeight,4,k.FLOAT,!1,0,0));j instanceof THREE.Mesh?(g.wireframe?(k.lineWidth(g.wireframeLinewidth),k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,h.__webglLineBuffer),k.drawElements(k.LINES,h.__webglLineCount,k.UNSIGNED_SHORT,0)):(k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,h.__webglFaceBuffer),k.drawElements(k.TRIANGLES,h.__webglFaceCount,k.UNSIGNED_SHORT,0)),$.data.vertices+=h.__webglFaceCount,$.data.faces+=h.__webglFaceCount/
|
|
|
+3,$.data.drawCalls++):j instanceof THREE.Line?(j=j.type==THREE.LineStrip?k.LINE_STRIP:k.LINES,k.lineWidth(g.linewidth),k.drawArrays(j,0,h.__webglLineCount),$.data.drawCalls++):j instanceof THREE.ParticleSystem?(k.drawArrays(k.POINTS,0,h.__webglParticleCount),$.data.drawCalls++):j instanceof THREE.Ribbon&&(k.drawArrays(k.TRIANGLE_STRIP,0,h.__webglVertexCount),$.data.drawCalls++)}}function g(b,e,c){if(!b.__webglVertexBuffer)b.__webglVertexBuffer=k.createBuffer();if(!b.__webglNormalBuffer)b.__webglNormalBuffer=
|
|
|
+k.createBuffer();b.hasPos&&(k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer),k.bufferData(k.ARRAY_BUFFER,b.positionArray,k.DYNAMIC_DRAW),k.enableVertexAttribArray(e.attributes.position),k.vertexAttribPointer(e.attributes.position,3,k.FLOAT,!1,0,0));if(b.hasNormal){k.bindBuffer(k.ARRAY_BUFFER,b.__webglNormalBuffer);if(c==THREE.FlatShading){var f,h,g,j,m,n,p,t,o,u,v=b.count*3;for(u=0;u<v;u+=9)c=b.normalArray,f=c[u],h=c[u+1],g=c[u+2],j=c[u+3],n=c[u+4],t=c[u+5],m=c[u+6],p=c[u+7],o=c[u+8],f=(f+j+m)/
|
|
|
+3,h=(h+n+p)/3,g=(g+t+o)/3,c[u]=f,c[u+1]=h,c[u+2]=g,c[u+3]=f,c[u+4]=h,c[u+5]=g,c[u+6]=f,c[u+7]=h,c[u+8]=g}k.bufferData(k.ARRAY_BUFFER,b.normalArray,k.DYNAMIC_DRAW);k.enableVertexAttribArray(e.attributes.normal);k.vertexAttribPointer(e.attributes.normal,3,k.FLOAT,!1,0,0)}k.drawArrays(k.TRIANGLES,0,b.count);b.count=0}function j(b){if(ha!=b.doubleSided)b.doubleSided?k.disable(k.CULL_FACE):k.enable(k.CULL_FACE),ha=b.doubleSided;if(la!=b.flipSided)b.flipSided?k.frontFace(k.CW):k.frontFace(k.CCW),la=b.flipSided}
|
|
|
+function h(b){pa!=b&&(b?k.enable(k.DEPTH_TEST):k.disable(k.DEPTH_TEST),pa=b)}function m(b,e,c){D!=b&&(b?k.enable(k.POLYGON_OFFSET_FILL):k.disable(k.POLYGON_OFFSET_FILL),D=b);if(b&&(ea!=e||ca!=c))k.polygonOffset(e,c),ea=e,ca=c}function p(b){ga[0].set(b.n41-b.n11,b.n42-b.n12,b.n43-b.n13,b.n44-b.n14);ga[1].set(b.n41+b.n11,b.n42+b.n12,b.n43+b.n13,b.n44+b.n14);ga[2].set(b.n41+b.n21,b.n42+b.n22,b.n43+b.n23,b.n44+b.n24);ga[3].set(b.n41-b.n21,b.n42-b.n22,b.n43-b.n23,b.n44-b.n24);ga[4].set(b.n41-b.n31,b.n42-
|
|
|
+b.n32,b.n43-b.n33,b.n44-b.n34);ga[5].set(b.n41+b.n31,b.n42+b.n32,b.n43+b.n33,b.n44+b.n34);for(var e,b=0;b<6;b++)e=ga[b],e.divideScalar(Math.sqrt(e.x*e.x+e.y*e.y+e.z*e.z))}function t(b){for(var e=b.matrixWorld,c=-b.geometry.boundingSphere.radius*Math.max(b.scale.x,Math.max(b.scale.y,b.scale.z)),f=0;f<6;f++)if(b=ga[f].x*e.n14+ga[f].y*e.n24+ga[f].z*e.n34+ga[f].w,b<=c)return!1;return!0}function o(b,e){b.list[b.count]=e;b.count+=1}function n(b){var e,c,f=b.object,h=b.opaque,g=b.transparent;g.count=0;b=
|
|
|
+h.count=0;for(e=f.materials.length;b<e;b++)c=f.materials[b],c.transparent?o(g,c):o(h,c)}function v(b){var e,c,f,h,g=b.object,j=b.buffer,k=b.opaque,m=b.transparent;m.count=0;b=k.count=0;for(f=g.materials.length;b<f;b++)if(e=g.materials[b],e instanceof THREE.MeshFaceMaterial){e=0;for(c=j.materials.length;e<c;e++)(h=j.materials[e])&&(h.transparent?o(m,h):o(k,h))}else(h=e)&&(h.transparent?o(m,h):o(k,h))}function u(b,e){return e.z-b.z}function y(b,c){var m,n,o,u=0,v,y,x,w,C=b.lights;ta||(ta=new THREE.Camera($.shadowCameraFov,
|
|
|
+c.aspect,$.shadowCameraNear,$.shadowCameraFar));m=0;for(n=C.length;m<n;m++)if(o=C[m],o instanceof THREE.SpotLight&&o.castShadow){$.shadowMap[u]||($.shadowMap[u]=new THREE.WebGLRenderTarget($.shadowMapWidth,$.shadowMapHeight,{minFilter:THREE.LinearFilter,magFilter:THREE.LinearFilter,format:THREE.RGBAFormat}));ua[u]||(ua[u]=new THREE.Matrix4);v=$.shadowMap[u];y=ua[u];ta.position.copy(o.position);ta.target.position.copy(o.target.position);ta.update(void 0,!0);b.update(void 0,!1,ta);y.set(0.5,0,0,0.5,
|
|
|
+0,0.5,0,0.5,0,0,0.5,0.5,0,0,0,1);y.multiplySelf(ta.projectionMatrix);y.multiplySelf(ta.matrixWorldInverse);ta.matrixWorldInverse.flattenToArray(xa);ta.projectionMatrix.flattenToArray(sa);ka.multiply(ta.projectionMatrix,ta.matrixWorldInverse);p(ka);$.initWebGLObjects(b);P(v);k.clearColor(1,1,1,1);$.clear();k.clearColor(ia.r,ia.g,ia.b,qa);y=b.__webglObjects.length;o=b.__webglObjectsImmediate.length;for(v=0;v<y;v++)x=b.__webglObjects[v],w=x.object,w.visible&&w.castShadow?!(w instanceof THREE.Mesh)||
|
|
|
+t(w)?(w.matrixWorld.flattenToArray(w._objectMatrixArray),I(w,ta,!1),x.render=!0):x.render=!1:x.render=!1;h(!0);H(THREE.NormalBlending);for(v=0;v<y;v++)if(x=b.__webglObjects[v],x.render)w=x.object,buffer=x.buffer,j(w),x=w.geometry.morphTargets.length?ya:Da,f(ta,C,null,x,buffer,w);for(v=0;v<o;v++)x=b.__webglObjectsImmediate[v],w=x.object,w.visible&&w.castShadow&&(w.matrixAutoUpdate&&w.matrixWorld.flattenToArray(w._objectMatrixArray),I(w,ta,!1),j(w),program=e(ta,C,null,Da,w),w.render(function(b){g(b,
|
|
|
+program,Da.shading)}));u++}}function w(b){k.enable(k.POLYGON_OFFSET_FILL);k.polygonOffset(0.1,1);k.enable(k.STENCIL_TEST);k.enable(k.DEPTH_TEST);k.depthMask(!1);k.colorMask(!1,!1,!1,!1);k.stencilFunc(k.ALWAYS,1,255);k.stencilOpSeparate(k.BACK,k.KEEP,k.INCR,k.KEEP);k.stencilOpSeparate(k.FRONT,k.KEEP,k.DECR,k.KEEP);var e,c=b.lights.length,f,h=b.lights,g=[],j,m,n,p,t,o=b.__webglShadowVolumes.length;for(e=0;e<c;e++)if(f=b.lights[e],f instanceof THREE.DirectionalLight&&f.castShadow){g[0]=-f.position.x;
|
|
|
+g[1]=-f.position.y;g[2]=-f.position.z;for(t=0;t<o;t++)f=b.__webglShadowVolumes[t].object,j=b.__webglShadowVolumes[t].buffer,m=f.materials[0],m.program||$.initMaterial(m,h,void 0,f),m=m.program,n=m.uniforms,p=m.attributes,da!==m&&(k.useProgram(m),da=m,k.uniformMatrix4fv(n.projectionMatrix,!1,sa),k.uniformMatrix4fv(n.viewMatrix,!1,xa),k.uniform3fv(n.directionalLightDirection,g)),f.matrixWorld.flattenToArray(f._objectMatrixArray),k.uniformMatrix4fv(n.objectMatrix,!1,f._objectMatrixArray),k.bindBuffer(k.ARRAY_BUFFER,
|
|
|
j.__webglVertexBuffer),k.vertexAttribPointer(p.position,3,k.FLOAT,!1,0,0),k.bindBuffer(k.ARRAY_BUFFER,j.__webglNormalBuffer),k.vertexAttribPointer(p.normal,3,k.FLOAT,!1,0,0),k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,j.__webglFaceBuffer),k.cullFace(k.FRONT),k.drawElements(k.TRIANGLES,j.__webglFaceCount,k.UNSIGNED_SHORT,0),k.cullFace(k.BACK),k.drawElements(k.TRIANGLES,j.__webglFaceCount,k.UNSIGNED_SHORT,0)}k.disable(k.POLYGON_OFFSET_FILL);k.colorMask(!0,!0,!0,!0);k.stencilFunc(k.NOTEQUAL,0,255);k.stencilOp(k.KEEP,
|
|
|
-k.KEEP,k.KEEP);k.disable(k.DEPTH_TEST);fa=ea=-1;ca=Y.program;k.useProgram(Y.program);k.uniformMatrix4fv(Y.projectionLocation,!1,za);k.uniform1f(Y.darknessLocation,Y.darkness);k.bindBuffer(k.ARRAY_BUFFER,Y.vertexBuffer);k.vertexAttribPointer(Y.vertexLocation,3,k.FLOAT,!1,0,0);k.enableVertexAttribArray(Y.vertexLocation);k.blendFunc(k.ONE,k.ONE_MINUS_SRC_ALPHA);k.blendEquation(k.FUNC_ADD);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,Y.elementBuffer);k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0);k.disable(k.STENCIL_TEST);
|
|
|
-k.enable(k.DEPTH_TEST);k.depthMask(X)}function y(b,e){var c,f,h;c=M.attributes;var g=M.uniforms,j=ha/U,m,o=[],p=U*0.5,t=ha*0.5,n=!0;k.useProgram(M.program);ca=M.program;fa=ea=-1;ya||(k.enableVertexAttribArray(M.attributes.position),k.enableVertexAttribArray(M.attributes.uv),ya=!0);k.disable(k.CULL_FACE);k.enable(k.BLEND);k.depthMask(!0);k.bindBuffer(k.ARRAY_BUFFER,M.vertexBuffer);k.vertexAttribPointer(c.position,2,k.FLOAT,!1,16,0);k.vertexAttribPointer(c.uv,2,k.FLOAT,!1,16,8);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,
|
|
|
-M.elementBuffer);k.uniformMatrix4fv(g.projectionMatrix,!1,za);k.activeTexture(k.TEXTURE0);k.uniform1i(g.map,0);c=0;for(f=b.__webglSprites.length;c<f;c++)h=b.__webglSprites[c],h.useScreenCoordinates?h.z=-h.position.z:(h._modelViewMatrix.multiplyToArray(e.matrixWorldInverse,h.matrixWorld,h._modelViewMatrixArray),h.z=-h._modelViewMatrix.n34);b.__webglSprites.sort(u);c=0;for(f=b.__webglSprites.length;c<f;c++)h=b.__webglSprites[c],h.material===void 0&&h.map&&h.map.image&&h.map.image.width&&(h.useScreenCoordinates?
|
|
|
-(k.uniform1i(g.useScreenCoordinates,1),k.uniform3f(g.screenPosition,(h.position.x-p)/p,(t-h.position.y)/t,Math.max(0,Math.min(1,h.position.z)))):(k.uniform1i(g.useScreenCoordinates,0),k.uniform1i(g.affectedByDistance,h.affectedByDistance?1:0),k.uniformMatrix4fv(g.modelViewMatrix,!1,h._modelViewMatrixArray)),m=h.map.image.width/(h.scaleByViewport?ha:1),o[0]=m*j*h.scale.x,o[1]=m*h.scale.y,k.uniform2f(g.uvScale,h.uvScale.x,h.uvScale.y),k.uniform2f(g.uvOffset,h.uvOffset.x,h.uvOffset.y),k.uniform2f(g.alignment,
|
|
|
-h.alignment.x,h.alignment.y),k.uniform1f(g.opacity,h.opacity),k.uniform1f(g.rotation,h.rotation),k.uniform2fv(g.scale,o),h.mergeWith3D&&!n?(k.enable(k.DEPTH_TEST),n=!0):!h.mergeWith3D&&n&&(k.disable(k.DEPTH_TEST),n=!1),H(h.blending),V(h.map,0),k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0));k.enable(k.CULL_FACE);k.enable(k.DEPTH_TEST);k.depthMask(X)}function w(b,e){var c,f,h=b.__webglLensFlares.length,g,j,m,o=new THREE.Vector3,p=ha/U,t=U*0.5,n=ha*0.5,u=16/ha,v=[u*p,u],x=[1,1,0],w=[1,1],y=R.uniforms;
|
|
|
-c=R.attributes;k.useProgram(R.program);ca=R.program;fa=ea=-1;ua||(k.enableVertexAttribArray(R.attributes.vertex),k.enableVertexAttribArray(R.attributes.uv),ua=!0);k.uniform1i(y.occlusionMap,0);k.uniform1i(y.map,1);k.bindBuffer(k.ARRAY_BUFFER,R.vertexBuffer);k.vertexAttribPointer(c.vertex,2,k.FLOAT,!1,16,0);k.vertexAttribPointer(c.uv,2,k.FLOAT,!1,16,8);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,R.elementBuffer);k.disable(k.CULL_FACE);k.depthMask(!1);k.activeTexture(k.TEXTURE0);k.bindTexture(k.TEXTURE_2D,
|
|
|
-R.occlusionTexture);k.activeTexture(k.TEXTURE1);for(f=0;f<h;f++)if(c=b.__webglLensFlares[f].object,o.set(c.matrixWorld.n14,c.matrixWorld.n24,c.matrixWorld.n34),e.matrixWorldInverse.multiplyVector3(o),e.projectionMatrix.multiplyVector3(o),x[0]=o.x,x[1]=o.y,x[2]=o.z,w[0]=x[0]*t+t,w[1]=x[1]*n+n,R.hasVertexTexture||w[0]>0&&w[0]<U&&w[1]>0&&w[1]<ha){k.bindTexture(k.TEXTURE_2D,R.tempTexture);k.copyTexImage2D(k.TEXTURE_2D,0,k.RGB,w[0]-8,w[1]-8,16,16,0);k.uniform1i(y.renderType,0);k.uniform2fv(y.scale,v);
|
|
|
-k.uniform3fv(y.screenPosition,x);k.disable(k.BLEND);k.enable(k.DEPTH_TEST);k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0);k.bindTexture(k.TEXTURE_2D,R.occlusionTexture);k.copyTexImage2D(k.TEXTURE_2D,0,k.RGBA,w[0]-8,w[1]-8,16,16,0);k.uniform1i(y.renderType,1);k.disable(k.DEPTH_TEST);k.bindTexture(k.TEXTURE_2D,R.tempTexture);k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0);c.positionScreen.x=x[0];c.positionScreen.y=x[1];c.positionScreen.z=x[2];c.customUpdateCallback?c.customUpdateCallback(c):c.updateLensFlares();
|
|
|
-k.uniform1i(y.renderType,2);k.enable(k.BLEND);g=0;for(j=c.lensFlares.length;g<j;g++)if(m=c.lensFlares[g],m.opacity>0.0010&&m.scale>0.0010)x[0]=m.x,x[1]=m.y,x[2]=m.z,u=m.size*m.scale/ha,v[0]=u*p,v[1]=u,k.uniform3fv(y.screenPosition,x),k.uniform2fv(y.scale,v),k.uniform1f(y.rotation,m.rotation),k.uniform1f(y.opacity,m.opacity),H(m.blending),V(m.texture,1),k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0)}k.enable(k.CULL_FACE);k.enable(k.DEPTH_TEST);k.depthMask(X)}function I(b,e,c){b._modelViewMatrix.multiplyToArray(e.matrixWorldInverse,
|
|
|
-b.matrixWorld,b._modelViewMatrixArray);c&&THREE.Matrix4.makeInvert3x3(b._modelViewMatrix).transposeIntoArray(b._normalMatrixArray)}function C(b){var e,c,f,h;h=b.__materials;b=0;for(c=h.length;b<c;b++)if(f=h[b],f.attributes)for(e in f.attributes)if(f.attributes[e].needsUpdate)return!0;return!1}function K(b){var e,c,f,h;h=b.__materials;b=0;for(c=h.length;b<c;b++)if(f=h[b],f.attributes)for(e in f.attributes)f.attributes[e].needsUpdate=!1}function F(b){var e,f,h,g;if(b instanceof THREE.Mesh){f=b.geometry;
|
|
|
-for(e in f.geometryGroups)if(h=f.geometryGroups[e],g=C(h),f.__dirtyVertices||f.__dirtyMorphTargets||f.__dirtyElements||f.__dirtyUvs||f.__dirtyNormals||f.__dirtyColors||f.__dirtyTangents||g){g=h;var j=b,m=k.DYNAMIC_DRAW;if(g.__inittedArrays){var o=void 0,p=void 0,t=void 0,n=void 0,u=t=void 0,v=void 0,x=void 0,w=void 0,y=void 0,z=void 0,E=void 0,F=void 0,I=void 0,B=void 0,U=void 0,H=void 0,ha=void 0,D=n=w=n=x=v=void 0,G=void 0,A=G=D=v=void 0,L=void 0,P=A=G=D=t=t=u=w=n=A=G=D=L=A=G=D=L=A=G=D=void 0,J=
|
|
|
-0,ga=0,Q=0,X=0,O=0,R=0,M=0,S=0,ma=0,N=0,V=0,G=D=0,T=g.__vertexArray,aa=g.__uvArray,ca=g.__uv2Array,Z=g.__normalArray,W=g.__tangentArray,Y=g.__colorArray,da=g.__skinVertexAArray,ea=g.__skinVertexBArray,$=g.__skinIndexArray,fa=g.__skinWeightArray,za=g.__morphTargetsArrays,la=g.__webglCustomAttributes,A=void 0,ia=g.__faceArray,ja=g.__lineArray,oa=g.__needsSmoothNormals,z=g.__vertexColorType,y=g.__uvType,E=g.__normalType,ka=j.geometry,qa=ka.__dirtyVertices,ra=ka.__dirtyElements,wa=ka.__dirtyUvs,sa=ka.__dirtyNormals,
|
|
|
-ta=ka.__dirtyTangents,va=ka.__dirtyColors,Aa=ka.__dirtyMorphTargets,ua=ka.vertices,Ba=g.faces,Da=ka.faces,Ia=ka.faceVertexUvs[0],Ea=ka.faceVertexUvs[1],xa=ka.skinVerticesA,ya=ka.skinVerticesB,Oa=ka.skinIndices,Ha=ka.skinWeights,Ma=j instanceof THREE.ShadowVolume?ka.edgeFaces:void 0,Fa=ka.morphTargets;if(la)for(P in la)la[P].offset=0,la[P].offsetSrc=0;o=0;for(p=Ba.length;o<p;o++)if(t=Ba[o],n=Da[t],Ia&&(F=Ia[t]),Ea&&(I=Ea[t]),t=n.vertexNormals,u=n.normal,v=n.vertexColors,x=n.color,w=n.vertexTangents,
|
|
|
-n instanceof THREE.Face3){if(qa)B=ua[n.a].position,U=ua[n.b].position,H=ua[n.c].position,T[ga]=B.x,T[ga+1]=B.y,T[ga+2]=B.z,T[ga+3]=U.x,T[ga+4]=U.y,T[ga+5]=U.z,T[ga+6]=H.x,T[ga+7]=H.y,T[ga+8]=H.z,ga+=9;if(la)for(P in la)if(A=la[P],A.__original.needsUpdate)D=A.offset,G=A.offsetSrc,A.size===1?(A.boundTo===void 0||A.boundTo==="vertices"?(A.array[D+0]=A.value[n.a],A.array[D+1]=A.value[n.b],A.array[D+2]=A.value[n.c]):A.boundTo==="faces"?(A.array[D+0]=A.value[G],A.array[D+1]=A.value[G],A.array[D+2]=A.value[G],
|
|
|
-A.offsetSrc++):A.boundTo==="faceVertices"&&(A.array[D+0]=A.value[G+0],A.array[D+1]=A.value[G+1],A.array[D+2]=A.value[G+2],A.offsetSrc+=3),A.offset+=3):(A.boundTo===void 0||A.boundTo==="vertices"?(B=A.value[n.a],U=A.value[n.b],H=A.value[n.c]):A.boundTo==="faces"?(B=A.value[G],U=A.value[G],H=A.value[G],A.offsetSrc++):A.boundTo==="faceVertices"&&(B=A.value[G+0],U=A.value[G+1],H=A.value[G+2],A.offsetSrc+=3),A.size===2?(A.array[D+0]=B.x,A.array[D+1]=B.y,A.array[D+2]=U.x,A.array[D+3]=U.y,A.array[D+4]=H.x,
|
|
|
-A.array[D+5]=H.y,A.offset+=6):A.size===3?(A.type==="c"?(A.array[D+0]=B.r,A.array[D+1]=B.g,A.array[D+2]=B.b,A.array[D+3]=U.r,A.array[D+4]=U.g,A.array[D+5]=U.b,A.array[D+6]=H.r,A.array[D+7]=H.g,A.array[D+8]=H.b):(A.array[D+0]=B.x,A.array[D+1]=B.y,A.array[D+2]=B.z,A.array[D+3]=U.x,A.array[D+4]=U.y,A.array[D+5]=U.z,A.array[D+6]=H.x,A.array[D+7]=H.y,A.array[D+8]=H.z),A.offset+=9):(A.array[D+0]=B.x,A.array[D+1]=B.y,A.array[D+2]=B.z,A.array[D+3]=B.w,A.array[D+4]=U.x,A.array[D+5]=U.y,A.array[D+6]=U.z,A.array[D+
|
|
|
-7]=U.w,A.array[D+8]=H.x,A.array[D+9]=H.y,A.array[D+10]=H.z,A.array[D+11]=H.w,A.offset+=12));if(Aa){D=0;for(G=Fa.length;D<G;D++)B=Fa[D].vertices[n.a].position,U=Fa[D].vertices[n.b].position,H=Fa[D].vertices[n.c].position,A=za[D],A[V+0]=B.x,A[V+1]=B.y,A[V+2]=B.z,A[V+3]=U.x,A[V+4]=U.y,A[V+5]=U.z,A[V+6]=H.x,A[V+7]=H.y,A[V+8]=H.z;V+=9}if(Ha.length)D=Ha[n.a],G=Ha[n.b],A=Ha[n.c],fa[N]=D.x,fa[N+1]=D.y,fa[N+2]=D.z,fa[N+3]=D.w,fa[N+4]=G.x,fa[N+5]=G.y,fa[N+6]=G.z,fa[N+7]=G.w,fa[N+8]=A.x,fa[N+9]=A.y,fa[N+10]=
|
|
|
-A.z,fa[N+11]=A.w,D=Oa[n.a],G=Oa[n.b],A=Oa[n.c],$[N]=D.x,$[N+1]=D.y,$[N+2]=D.z,$[N+3]=D.w,$[N+4]=G.x,$[N+5]=G.y,$[N+6]=G.z,$[N+7]=G.w,$[N+8]=A.x,$[N+9]=A.y,$[N+10]=A.z,$[N+11]=A.w,D=xa[n.a],G=xa[n.b],A=xa[n.c],da[N]=D.x,da[N+1]=D.y,da[N+2]=D.z,da[N+3]=1,da[N+4]=G.x,da[N+5]=G.y,da[N+6]=G.z,da[N+7]=1,da[N+8]=A.x,da[N+9]=A.y,da[N+10]=A.z,da[N+11]=1,D=ya[n.a],G=ya[n.b],A=ya[n.c],ea[N]=D.x,ea[N+1]=D.y,ea[N+2]=D.z,ea[N+3]=1,ea[N+4]=G.x,ea[N+5]=G.y,ea[N+6]=G.z,ea[N+7]=1,ea[N+8]=A.x,ea[N+9]=A.y,ea[N+10]=A.z,
|
|
|
-ea[N+11]=1,N+=12;if(va&&z)v.length==3&&z==THREE.VertexColors?(n=v[0],D=v[1],G=v[2]):G=D=n=x,Y[ma]=n.r,Y[ma+1]=n.g,Y[ma+2]=n.b,Y[ma+3]=D.r,Y[ma+4]=D.g,Y[ma+5]=D.b,Y[ma+6]=G.r,Y[ma+7]=G.g,Y[ma+8]=G.b,ma+=9;if(ta&&ka.hasTangents)v=w[0],x=w[1],n=w[2],W[M]=v.x,W[M+1]=v.y,W[M+2]=v.z,W[M+3]=v.w,W[M+4]=x.x,W[M+5]=x.y,W[M+6]=x.z,W[M+7]=x.w,W[M+8]=n.x,W[M+9]=n.y,W[M+10]=n.z,W[M+11]=n.w,M+=12;if(sa&&E)if(t.length==3&&oa)for(w=0;w<3;w++)u=t[w],Z[R]=u.x,Z[R+1]=u.y,Z[R+2]=u.z,R+=3;else for(w=0;w<3;w++)Z[R]=u.x,
|
|
|
-Z[R+1]=u.y,Z[R+2]=u.z,R+=3;if(wa&&F!==void 0&&y)for(w=0;w<3;w++)t=F[w],aa[Q]=t.u,aa[Q+1]=t.v,Q+=2;if(wa&&I!==void 0&&y)for(w=0;w<3;w++)t=I[w],ca[X]=t.u,ca[X+1]=t.v,X+=2;ra&&(ia[O]=J,ia[O+1]=J+1,ia[O+2]=J+2,O+=3,ja[S]=J,ja[S+1]=J+1,ja[S+2]=J,ja[S+3]=J+2,ja[S+4]=J+1,ja[S+5]=J+2,S+=6,J+=3)}else if(n instanceof THREE.Face4){if(qa)B=ua[n.a].position,U=ua[n.b].position,H=ua[n.c].position,ha=ua[n.d].position,T[ga]=B.x,T[ga+1]=B.y,T[ga+2]=B.z,T[ga+3]=U.x,T[ga+4]=U.y,T[ga+5]=U.z,T[ga+6]=H.x,T[ga+7]=H.y,T[ga+
|
|
|
-8]=H.z,T[ga+9]=ha.x,T[ga+10]=ha.y,T[ga+11]=ha.z,ga+=12;if(la)for(P in la)if(A=la[P],A.__original.needsUpdate)D=A.offset,G=A.offsetSrc,A.size===1?(A.boundTo===void 0||A.boundTo==="vertices"?(A.array[D+0]=A.value[n.a],A.array[D+1]=A.value[n.b],A.array[D+2]=A.value[n.c],A.array[D+3]=A.value[n.d]):A.boundTo==="faces"?(A.array[D+0]=A.value[G],A.array[D+1]=A.value[G],A.array[D+2]=A.value[G],A.array[D+3]=A.value[G],A.offsetSrc++):A.boundTo==="faceVertices"&&(A.array[D+0]=A.value[G+0],A.array[D+1]=A.value[G+
|
|
|
-1],A.array[D+2]=A.value[G+2],A.array[D+3]=A.value[G+3],A.offsetSrc+=4),A.offset+=4):(A.boundTo===void 0||A.boundTo==="vertices"?(B=A.value[n.a],U=A.value[n.b],H=A.value[n.c],ha=A.value[n.d]):A.boundTo==="faces"?(B=A.value[G],U=A.value[G],H=A.value[G],ha=A.value[G],A.offsetSrc++):A.boundTo==="faceVertices"&&(B=A.value[G+0],U=A.value[G+1],H=A.value[G+2],ha=A.value[G+3],A.offsetSrc+=4),A.size===2?(A.array[D+0]=B.x,A.array[D+1]=B.y,A.array[D+2]=U.x,A.array[D+3]=U.y,A.array[D+4]=H.x,A.array[D+5]=H.y,A.array[D+
|
|
|
-6]=ha.x,A.array[D+7]=ha.y,A.offset+=8):A.size===3?(A.type==="c"?(A.array[D+0]=B.r,A.array[D+1]=B.g,A.array[D+2]=B.b,A.array[D+3]=U.r,A.array[D+4]=U.g,A.array[D+5]=U.b,A.array[D+6]=H.r,A.array[D+7]=H.g,A.array[D+8]=H.b,A.array[D+9]=ha.r,A.array[D+10]=ha.g,A.array[D+11]=ha.b):(A.array[D+0]=B.x,A.array[D+1]=B.y,A.array[D+2]=B.z,A.array[D+3]=U.x,A.array[D+4]=U.y,A.array[D+5]=U.z,A.array[D+6]=H.x,A.array[D+7]=H.y,A.array[D+8]=H.z,A.array[D+9]=ha.x,A.array[D+10]=ha.y,A.array[D+11]=ha.z),A.offset+=12):(A.array[D+
|
|
|
-0]=B.x,A.array[D+1]=B.y,A.array[D+2]=B.z,A.array[D+3]=B.w,A.array[D+4]=U.x,A.array[D+5]=U.y,A.array[D+6]=U.z,A.array[D+7]=U.w,A.array[D+8]=H.x,A.array[D+9]=H.y,A.array[D+10]=H.z,A.array[D+11]=H.w,A.array[D+12]=ha.x,A.array[D+13]=ha.y,A.array[D+14]=ha.z,A.array[D+15]=ha.w,A.offset+=16));if(Aa){D=0;for(G=Fa.length;D<G;D++)B=Fa[D].vertices[n.a].position,U=Fa[D].vertices[n.b].position,H=Fa[D].vertices[n.c].position,ha=Fa[D].vertices[n.d].position,A=za[D],A[V+0]=B.x,A[V+1]=B.y,A[V+2]=B.z,A[V+3]=U.x,A[V+
|
|
|
-4]=U.y,A[V+5]=U.z,A[V+6]=H.x,A[V+7]=H.y,A[V+8]=H.z,A[V+9]=ha.x,A[V+10]=ha.y,A[V+11]=ha.z;V+=12}if(Ha.length)D=Ha[n.a],G=Ha[n.b],A=Ha[n.c],L=Ha[n.d],fa[N]=D.x,fa[N+1]=D.y,fa[N+2]=D.z,fa[N+3]=D.w,fa[N+4]=G.x,fa[N+5]=G.y,fa[N+6]=G.z,fa[N+7]=G.w,fa[N+8]=A.x,fa[N+9]=A.y,fa[N+10]=A.z,fa[N+11]=A.w,fa[N+12]=L.x,fa[N+13]=L.y,fa[N+14]=L.z,fa[N+15]=L.w,D=Oa[n.a],G=Oa[n.b],A=Oa[n.c],L=Oa[n.d],$[N]=D.x,$[N+1]=D.y,$[N+2]=D.z,$[N+3]=D.w,$[N+4]=G.x,$[N+5]=G.y,$[N+6]=G.z,$[N+7]=G.w,$[N+8]=A.x,$[N+9]=A.y,$[N+10]=A.z,
|
|
|
-$[N+11]=A.w,$[N+12]=L.x,$[N+13]=L.y,$[N+14]=L.z,$[N+15]=L.w,D=xa[n.a],G=xa[n.b],A=xa[n.c],L=xa[n.d],da[N]=D.x,da[N+1]=D.y,da[N+2]=D.z,da[N+3]=1,da[N+4]=G.x,da[N+5]=G.y,da[N+6]=G.z,da[N+7]=1,da[N+8]=A.x,da[N+9]=A.y,da[N+10]=A.z,da[N+11]=1,da[N+12]=L.x,da[N+13]=L.y,da[N+14]=L.z,da[N+15]=1,D=ya[n.a],G=ya[n.b],A=ya[n.c],n=ya[n.d],ea[N]=D.x,ea[N+1]=D.y,ea[N+2]=D.z,ea[N+3]=1,ea[N+4]=G.x,ea[N+5]=G.y,ea[N+6]=G.z,ea[N+7]=1,ea[N+8]=A.x,ea[N+9]=A.y,ea[N+10]=A.z,ea[N+11]=1,ea[N+12]=n.x,ea[N+13]=n.y,ea[N+14]=
|
|
|
-n.z,ea[N+15]=1,N+=16;if(va&&z)v.length==4&&z==THREE.VertexColors?(n=v[0],D=v[1],G=v[2],v=v[3]):v=G=D=n=x,Y[ma]=n.r,Y[ma+1]=n.g,Y[ma+2]=n.b,Y[ma+3]=D.r,Y[ma+4]=D.g,Y[ma+5]=D.b,Y[ma+6]=G.r,Y[ma+7]=G.g,Y[ma+8]=G.b,Y[ma+9]=v.r,Y[ma+10]=v.g,Y[ma+11]=v.b,ma+=12;if(ta&&ka.hasTangents)v=w[0],x=w[1],n=w[2],w=w[3],W[M]=v.x,W[M+1]=v.y,W[M+2]=v.z,W[M+3]=v.w,W[M+4]=x.x,W[M+5]=x.y,W[M+6]=x.z,W[M+7]=x.w,W[M+8]=n.x,W[M+9]=n.y,W[M+10]=n.z,W[M+11]=n.w,W[M+12]=w.x,W[M+13]=w.y,W[M+14]=w.z,W[M+15]=w.w,M+=16;if(sa&&E)if(t.length==
|
|
|
-4&&oa)for(w=0;w<4;w++)u=t[w],Z[R]=u.x,Z[R+1]=u.y,Z[R+2]=u.z,R+=3;else for(w=0;w<4;w++)Z[R]=u.x,Z[R+1]=u.y,Z[R+2]=u.z,R+=3;if(wa&&F!==void 0&&y)for(w=0;w<4;w++)t=F[w],aa[Q]=t.u,aa[Q+1]=t.v,Q+=2;if(wa&&I!==void 0&&y)for(w=0;w<4;w++)t=I[w],ca[X]=t.u,ca[X+1]=t.v,X+=2;ra&&(ia[O]=J,ia[O+1]=J+1,ia[O+2]=J+3,ia[O+3]=J+1,ia[O+4]=J+2,ia[O+5]=J+3,O+=6,ja[S]=J,ja[S+1]=J+1,ja[S+2]=J,ja[S+3]=J+3,ja[S+4]=J+1,ja[S+5]=J+2,ja[S+6]=J+2,ja[S+7]=J+3,S+=8,J+=4)}if(Ma){o=0;for(p=Ma.length;o<p;o++)ia[O]=Ma[o].a,ia[O+1]=Ma[o].b,
|
|
|
-ia[O+2]=Ma[o].c,ia[O+3]=Ma[o].a,ia[O+4]=Ma[o].c,ia[O+5]=Ma[o].d,O+=6}qa&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglVertexBuffer),k.bufferData(k.ARRAY_BUFFER,T,m));if(la)for(P in la)A=la[P],A.__original.needsUpdate&&(k.bindBuffer(k.ARRAY_BUFFER,A.buffer),k.bufferData(k.ARRAY_BUFFER,A.array,m));if(Aa){D=0;for(G=Fa.length;D<G;D++)k.bindBuffer(k.ARRAY_BUFFER,g.__webglMorphTargetsBuffers[D]),k.bufferData(k.ARRAY_BUFFER,za[D],m)}va&&ma>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglColorBuffer),k.bufferData(k.ARRAY_BUFFER,
|
|
|
-Y,m));sa&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglNormalBuffer),k.bufferData(k.ARRAY_BUFFER,Z,m));ta&&ka.hasTangents&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglTangentBuffer),k.bufferData(k.ARRAY_BUFFER,W,m));wa&&Q>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglUVBuffer),k.bufferData(k.ARRAY_BUFFER,aa,m));wa&&X>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglUV2Buffer),k.bufferData(k.ARRAY_BUFFER,ca,m));ra&&(k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,g.__webglFaceBuffer),k.bufferData(k.ELEMENT_ARRAY_BUFFER,ia,m),k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,
|
|
|
-g.__webglLineBuffer),k.bufferData(k.ELEMENT_ARRAY_BUFFER,ja,m));N>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinVertexABuffer),k.bufferData(k.ARRAY_BUFFER,da,m),k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinVertexBBuffer),k.bufferData(k.ARRAY_BUFFER,ea,m),k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinIndicesBuffer),k.bufferData(k.ARRAY_BUFFER,$,m),k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinWeightsBuffer),k.bufferData(k.ARRAY_BUFFER,fa,m));j.dynamic||(delete g.__inittedArrays,delete g.__colorArray,delete g.__normalArray,
|
|
|
-delete g.__tangentArray,delete g.__uvArray,delete g.__uv2Array,delete g.__faceArray,delete g.__vertexArray,delete g.__lineArray,delete g.__skinVertexAArray,delete g.__skinVertexBArray,delete g.__skinIndexArray,delete g.__skinWeightArray)}}f.__dirtyVertices=!1;f.__dirtyMorphTargets=!1;f.__dirtyElements=!1;f.__dirtyUvs=!1;f.__dirtyNormals=!1;f.__dirtyTangents=!1;f.__dirtyColors=!1;K(h)}else if(b instanceof THREE.Ribbon){f=b.geometry;if(f.__dirtyVertices||f.__dirtyColors){b=f;e=k.DYNAMIC_DRAW;y=b.vertices;
|
|
|
-g=b.colors;z=y.length;j=g.length;E=b.__vertexArray;m=b.__colorArray;F=b.__dirtyColors;if(b.__dirtyVertices){for(o=0;o<z;o++)p=y[o].position,h=o*3,E[h]=p.x,E[h+1]=p.y,E[h+2]=p.z;k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer);k.bufferData(k.ARRAY_BUFFER,E,e)}if(F){for(o=0;o<j;o++)color=g[o],h=o*3,m[h]=color.r,m[h+1]=color.g,m[h+2]=color.b;k.bindBuffer(k.ARRAY_BUFFER,b.__webglColorBuffer);k.bufferData(k.ARRAY_BUFFER,m,e)}}f.__dirtyVertices=!1;f.__dirtyColors=!1}else if(b instanceof THREE.Line){f=
|
|
|
-b.geometry;if(f.__dirtyVertices||f.__dirtyColors){b=f;e=k.DYNAMIC_DRAW;y=b.vertices;g=b.colors;z=y.length;j=g.length;E=b.__vertexArray;m=b.__colorArray;F=b.__dirtyColors;if(b.__dirtyVertices){for(o=0;o<z;o++)p=y[o].position,h=o*3,E[h]=p.x,E[h+1]=p.y,E[h+2]=p.z;k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer);k.bufferData(k.ARRAY_BUFFER,E,e)}if(F){for(o=0;o<j;o++)color=g[o],h=o*3,m[h]=color.r,m[h+1]=color.g,m[h+2]=color.b;k.bindBuffer(k.ARRAY_BUFFER,b.__webglColorBuffer);k.bufferData(k.ARRAY_BUFFER,
|
|
|
-m,e)}}f.__dirtyVertices=!1;f.__dirtyColors=!1}else if(b instanceof THREE.ParticleSystem)f=b.geometry,g=C(f),(f.__dirtyVertices||f.__dirtyColors||b.sortParticles||g)&&c(f,k.DYNAMIC_DRAW,b),f.__dirtyVertices=!1,f.__dirtyColors=!1,K(f)}function B(b,e){var c;for(c=b.length-1;c>=0;c--)b[c].object==e&&b.splice(c,1)}function O(b){function e(b){var h=[];c=0;for(f=b.length;c<f;c++)b[c]==void 0?h.push("undefined"):h.push(b[c].id);return h.join("_")}var c,f,h,g,j,k,m,o,n={},p=b.morphTargets!==void 0?b.morphTargets.length:
|
|
|
-0;b.geometryGroups={};h=0;for(g=b.faces.length;h<g;h++)j=b.faces[h],k=j.materials,m=e(k),n[m]==void 0&&(n[m]={hash:m,counter:0}),o=n[m].hash+"_"+n[m].counter,b.geometryGroups[o]==void 0&&(b.geometryGroups[o]={faces:[],materials:k,vertices:0,numMorphTargets:p}),j=j instanceof THREE.Face3?3:4,b.geometryGroups[o].vertices+j>65535&&(n[m].counter+=1,o=n[m].hash+"_"+n[m].counter,b.geometryGroups[o]==void 0&&(b.geometryGroups[o]={faces:[],materials:k,vertices:0,numMorphTargets:p})),b.geometryGroups[o].faces.push(h),
|
|
|
-b.geometryGroups[o].vertices+=j}function E(b,e,c){b.push({buffer:e,object:c,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function H(b){if(b!=ea){switch(b){case THREE.AdditiveBlending:k.blendEquation(k.FUNC_ADD);k.blendFunc(k.SRC_ALPHA,k.ONE);break;case THREE.SubtractiveBlending:k.blendEquation(k.FUNC_ADD);k.blendFunc(k.ZERO,k.ONE_MINUS_SRC_COLOR);break;case THREE.MultiplyBlending:k.blendEquation(k.FUNC_ADD);k.blendFunc(k.ZERO,k.SRC_COLOR);break;default:k.blendEquationSeparate(k.FUNC_ADD,
|
|
|
-k.FUNC_ADD),k.blendFuncSeparate(k.SRC_ALPHA,k.ONE_MINUS_SRC_ALPHA,k.ONE,k.ONE_MINUS_SRC_ALPHA)}ea=b}}function P(b,e,c){(c.width&c.width-1)==0&&(c.height&c.height-1)==0?(k.texParameteri(b,k.TEXTURE_WRAP_S,S(e.wrapS)),k.texParameteri(b,k.TEXTURE_WRAP_T,S(e.wrapT)),k.texParameteri(b,k.TEXTURE_MAG_FILTER,S(e.magFilter)),k.texParameteri(b,k.TEXTURE_MIN_FILTER,S(e.minFilter)),k.generateMipmap(b)):(k.texParameteri(b,k.TEXTURE_WRAP_S,k.CLAMP_TO_EDGE),k.texParameteri(b,k.TEXTURE_WRAP_T,k.CLAMP_TO_EDGE),k.texParameteri(b,
|
|
|
-k.TEXTURE_MAG_FILTER,Q(e.magFilter)),k.texParameteri(b,k.TEXTURE_MIN_FILTER,Q(e.minFilter)))}function V(b,e){if(b.needsUpdate)b.__webglInit?(k.bindTexture(k.TEXTURE_2D,b.__webglTexture),k.texImage2D(k.TEXTURE_2D,0,k.RGBA,k.RGBA,k.UNSIGNED_BYTE,b.image)):(b.__webglTexture=k.createTexture(),k.bindTexture(k.TEXTURE_2D,b.__webglTexture),k.texImage2D(k.TEXTURE_2D,0,k.RGBA,k.RGBA,k.UNSIGNED_BYTE,b.image),b.__webglInit=!0),P(k.TEXTURE_2D,b,b.image),k.bindTexture(k.TEXTURE_2D,null),b.needsUpdate=!1;k.activeTexture(k.TEXTURE0+
|
|
|
-e);k.bindTexture(k.TEXTURE_2D,b.__webglTexture)}function G(b){if(b&&!b.__webglFramebuffer){if(b.depthBuffer===void 0)b.depthBuffer=!0;if(b.stencilBuffer===void 0)b.stencilBuffer=!0;b.__webglFramebuffer=k.createFramebuffer();b.__webglRenderbuffer=k.createRenderbuffer();b.__webglTexture=k.createTexture();k.bindTexture(k.TEXTURE_2D,b.__webglTexture);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_S,S(b.wrapS));k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_T,S(b.wrapT));k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MAG_FILTER,
|
|
|
+k.KEEP,k.KEEP);k.disable(k.DEPTH_TEST);pa=fa=-1;da=Y.program;k.useProgram(Y.program);k.uniformMatrix4fv(Y.projectionLocation,!1,sa);k.uniform1f(Y.darknessLocation,Y.darkness);k.bindBuffer(k.ARRAY_BUFFER,Y.vertexBuffer);k.vertexAttribPointer(Y.vertexLocation,3,k.FLOAT,!1,0,0);k.enableVertexAttribArray(Y.vertexLocation);k.blendFunc(k.ONE,k.ONE_MINUS_SRC_ALPHA);k.blendEquation(k.FUNC_ADD);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,Y.elementBuffer);k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0);k.disable(k.STENCIL_TEST);
|
|
|
+k.enable(k.DEPTH_TEST);k.depthMask(aa)}function C(b,e){var c,f,h;c=T.attributes;var g=T.uniforms,j=U/V,m,n=[],p=V*0.5,t=U*0.5,o=!0;k.useProgram(T.program);da=T.program;pa=fa=-1;za||(k.enableVertexAttribArray(T.attributes.position),k.enableVertexAttribArray(T.attributes.uv),za=!0);k.disable(k.CULL_FACE);k.enable(k.BLEND);k.depthMask(!0);k.bindBuffer(k.ARRAY_BUFFER,T.vertexBuffer);k.vertexAttribPointer(c.position,2,k.FLOAT,!1,16,0);k.vertexAttribPointer(c.uv,2,k.FLOAT,!1,16,8);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,
|
|
|
+T.elementBuffer);k.uniformMatrix4fv(g.projectionMatrix,!1,sa);k.activeTexture(k.TEXTURE0);k.uniform1i(g.map,0);c=0;for(f=b.__webglSprites.length;c<f;c++)h=b.__webglSprites[c],h.useScreenCoordinates?h.z=-h.position.z:(h._modelViewMatrix.multiplyToArray(e.matrixWorldInverse,h.matrixWorld,h._modelViewMatrixArray),h.z=-h._modelViewMatrix.n34);b.__webglSprites.sort(u);c=0;for(f=b.__webglSprites.length;c<f;c++)h=b.__webglSprites[c],h.material===void 0&&h.map&&h.map.image&&h.map.image.width&&(h.useScreenCoordinates?
|
|
|
+(k.uniform1i(g.useScreenCoordinates,1),k.uniform3f(g.screenPosition,(h.position.x-p)/p,(t-h.position.y)/t,Math.max(0,Math.min(1,h.position.z)))):(k.uniform1i(g.useScreenCoordinates,0),k.uniform1i(g.affectedByDistance,h.affectedByDistance?1:0),k.uniformMatrix4fv(g.modelViewMatrix,!1,h._modelViewMatrixArray)),m=h.map.image.width/(h.scaleByViewport?U:1),n[0]=m*j*h.scale.x,n[1]=m*h.scale.y,k.uniform2f(g.uvScale,h.uvScale.x,h.uvScale.y),k.uniform2f(g.uvOffset,h.uvOffset.x,h.uvOffset.y),k.uniform2f(g.alignment,
|
|
|
+h.alignment.x,h.alignment.y),k.uniform1f(g.opacity,h.opacity),k.uniform1f(g.rotation,h.rotation),k.uniform2fv(g.scale,n),h.mergeWith3D&&!o?(k.enable(k.DEPTH_TEST),o=!0):!h.mergeWith3D&&o&&(k.disable(k.DEPTH_TEST),o=!1),H(h.blending),O(h.map,0),k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0));k.enable(k.CULL_FACE);k.enable(k.DEPTH_TEST);k.depthMask(aa)}function x(b,e){var c,f,h=b.__webglLensFlares.length,g,j,m,n=new THREE.Vector3,p=U/V,t=V*0.5,o=U*0.5,u=16/U,v=[u*p,u],y=[1,1,0],x=[1,1],w=R.uniforms;
|
|
|
+c=R.attributes;k.useProgram(R.program);da=R.program;pa=fa=-1;va||(k.enableVertexAttribArray(R.attributes.vertex),k.enableVertexAttribArray(R.attributes.uv),va=!0);k.uniform1i(w.occlusionMap,0);k.uniform1i(w.map,1);k.bindBuffer(k.ARRAY_BUFFER,R.vertexBuffer);k.vertexAttribPointer(c.vertex,2,k.FLOAT,!1,16,0);k.vertexAttribPointer(c.uv,2,k.FLOAT,!1,16,8);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,R.elementBuffer);k.disable(k.CULL_FACE);k.depthMask(!1);k.activeTexture(k.TEXTURE0);k.bindTexture(k.TEXTURE_2D,
|
|
|
+R.occlusionTexture);k.activeTexture(k.TEXTURE1);for(f=0;f<h;f++)if(c=b.__webglLensFlares[f].object,n.set(c.matrixWorld.n14,c.matrixWorld.n24,c.matrixWorld.n34),e.matrixWorldInverse.multiplyVector3(n),e.projectionMatrix.multiplyVector3(n),y[0]=n.x,y[1]=n.y,y[2]=n.z,x[0]=y[0]*t+t,x[1]=y[1]*o+o,R.hasVertexTexture||x[0]>0&&x[0]<V&&x[1]>0&&x[1]<U){k.bindTexture(k.TEXTURE_2D,R.tempTexture);k.copyTexImage2D(k.TEXTURE_2D,0,k.RGB,x[0]-8,x[1]-8,16,16,0);k.uniform1i(w.renderType,0);k.uniform2fv(w.scale,v);k.uniform3fv(w.screenPosition,
|
|
|
+y);k.disable(k.BLEND);k.enable(k.DEPTH_TEST);k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0);k.bindTexture(k.TEXTURE_2D,R.occlusionTexture);k.copyTexImage2D(k.TEXTURE_2D,0,k.RGBA,x[0]-8,x[1]-8,16,16,0);k.uniform1i(w.renderType,1);k.disable(k.DEPTH_TEST);k.bindTexture(k.TEXTURE_2D,R.tempTexture);k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0);c.positionScreen.x=y[0];c.positionScreen.y=y[1];c.positionScreen.z=y[2];c.customUpdateCallback?c.customUpdateCallback(c):c.updateLensFlares();k.uniform1i(w.renderType,
|
|
|
+2);k.enable(k.BLEND);g=0;for(j=c.lensFlares.length;g<j;g++)if(m=c.lensFlares[g],m.opacity>0.0010&&m.scale>0.0010)y[0]=m.x,y[1]=m.y,y[2]=m.z,u=m.size*m.scale/U,v[0]=u*p,v[1]=u,k.uniform3fv(w.screenPosition,y),k.uniform2fv(w.scale,v),k.uniform1f(w.rotation,m.rotation),k.uniform1f(w.opacity,m.opacity),H(m.blending),O(m.texture,1),k.drawElements(k.TRIANGLES,6,k.UNSIGNED_SHORT,0)}k.enable(k.CULL_FACE);k.enable(k.DEPTH_TEST);k.depthMask(aa)}function I(b,e,c){b._modelViewMatrix.multiplyToArray(e.matrixWorldInverse,
|
|
|
+b.matrixWorld,b._modelViewMatrixArray);c&&THREE.Matrix4.makeInvert3x3(b._modelViewMatrix).transposeIntoArray(b._normalMatrixArray)}function B(b){var e,c,f,h;h=b.__materials;b=0;for(c=h.length;b<c;b++)if(f=h[b],f.attributes)for(e in f.attributes)if(f.attributes[e].needsUpdate)return!0;return!1}function J(b){var e,c,f,h;h=b.__materials;b=0;for(c=h.length;b<c;b++)if(f=h[b],f.attributes)for(e in f.attributes)f.attributes[e].needsUpdate=!1}function F(b){var e,f,h,g;if(b instanceof THREE.Mesh){f=b.geometry;
|
|
|
+for(e in f.geometryGroups)if(h=f.geometryGroups[e],g=B(h),f.__dirtyVertices||f.__dirtyMorphTargets||f.__dirtyElements||f.__dirtyUvs||f.__dirtyNormals||f.__dirtyColors||f.__dirtyTangents||g){g=h;var j=b,m=k.DYNAMIC_DRAW;if(g.__inittedArrays){var n=void 0,p=void 0,t=void 0,o=void 0,u=t=void 0,v=void 0,y=void 0,x=void 0,w=void 0,C=void 0,F=void 0,G=void 0,I=void 0,A=void 0,V=void 0,H=void 0,U=void 0,E=o=x=o=y=v=void 0,D=void 0,z=D=E=v=void 0,L=void 0,O=z=D=E=t=t=u=x=o=z=D=E=L=z=D=E=L=z=D=E=void 0,K=
|
|
|
+0,ga=0,aa=0,X=0,P=0,R=0,N=0,T=0,ka=0,M=0,Q=0,D=E=0,S=g.__vertexArray,$=g.__uvArray,da=g.__uv2Array,la=g.__normalArray,W=g.__tangentArray,Z=g.__colorArray,Y=g.__skinVertexAArray,fa=g.__skinVertexBArray,ea=g.__skinIndexArray,ca=g.__skinWeightArray,pa=g.__morphTargetsArrays,ja=g.__webglCustomAttributes,z=void 0,ha=g.__faceArray,sa=g.__lineArray,na=g.__needsSmoothNormals,C=g.__vertexColorType,w=g.__uvType,F=g.__normalType,ia=j.geometry,qa=ia.__dirtyVertices,ra=ia.__dirtyElements,xa=ia.__dirtyUvs,ta=ia.__dirtyNormals,
|
|
|
+ua=ia.__dirtyTangents,wa=ia.__dirtyColors,Aa=ia.__dirtyMorphTargets,va=ia.vertices,Ba=g.faces,Da=ia.faces,Ia=ia.faceVertexUvs[0],Ea=ia.faceVertexUvs[1],ya=ia.skinVerticesA,za=ia.skinVerticesB,Oa=ia.skinIndices,Ha=ia.skinWeights,Ma=j instanceof THREE.ShadowVolume?ia.edgeFaces:void 0,Fa=ia.morphTargets;if(ja)for(O in ja)ja[O].offset=0,ja[O].offsetSrc=0;n=0;for(p=Ba.length;n<p;n++)if(t=Ba[n],o=Da[t],Ia&&(G=Ia[t]),Ea&&(I=Ea[t]),t=o.vertexNormals,u=o.normal,v=o.vertexColors,y=o.color,x=o.vertexTangents,
|
|
|
+o instanceof THREE.Face3){if(qa)A=va[o.a].position,V=va[o.b].position,H=va[o.c].position,S[ga]=A.x,S[ga+1]=A.y,S[ga+2]=A.z,S[ga+3]=V.x,S[ga+4]=V.y,S[ga+5]=V.z,S[ga+6]=H.x,S[ga+7]=H.y,S[ga+8]=H.z,ga+=9;if(ja)for(O in ja)if(z=ja[O],z.__original.needsUpdate)E=z.offset,D=z.offsetSrc,z.size===1?(z.boundTo===void 0||z.boundTo==="vertices"?(z.array[E+0]=z.value[o.a],z.array[E+1]=z.value[o.b],z.array[E+2]=z.value[o.c]):z.boundTo==="faces"?(z.array[E+0]=z.value[D],z.array[E+1]=z.value[D],z.array[E+2]=z.value[D],
|
|
|
+z.offsetSrc++):z.boundTo==="faceVertices"&&(z.array[E+0]=z.value[D+0],z.array[E+1]=z.value[D+1],z.array[E+2]=z.value[D+2],z.offsetSrc+=3),z.offset+=3):(z.boundTo===void 0||z.boundTo==="vertices"?(A=z.value[o.a],V=z.value[o.b],H=z.value[o.c]):z.boundTo==="faces"?(A=z.value[D],V=z.value[D],H=z.value[D],z.offsetSrc++):z.boundTo==="faceVertices"&&(A=z.value[D+0],V=z.value[D+1],H=z.value[D+2],z.offsetSrc+=3),z.size===2?(z.array[E+0]=A.x,z.array[E+1]=A.y,z.array[E+2]=V.x,z.array[E+3]=V.y,z.array[E+4]=H.x,
|
|
|
+z.array[E+5]=H.y,z.offset+=6):z.size===3?(z.type==="c"?(z.array[E+0]=A.r,z.array[E+1]=A.g,z.array[E+2]=A.b,z.array[E+3]=V.r,z.array[E+4]=V.g,z.array[E+5]=V.b,z.array[E+6]=H.r,z.array[E+7]=H.g,z.array[E+8]=H.b):(z.array[E+0]=A.x,z.array[E+1]=A.y,z.array[E+2]=A.z,z.array[E+3]=V.x,z.array[E+4]=V.y,z.array[E+5]=V.z,z.array[E+6]=H.x,z.array[E+7]=H.y,z.array[E+8]=H.z),z.offset+=9):(z.array[E+0]=A.x,z.array[E+1]=A.y,z.array[E+2]=A.z,z.array[E+3]=A.w,z.array[E+4]=V.x,z.array[E+5]=V.y,z.array[E+6]=V.z,z.array[E+
|
|
|
+7]=V.w,z.array[E+8]=H.x,z.array[E+9]=H.y,z.array[E+10]=H.z,z.array[E+11]=H.w,z.offset+=12));if(Aa){E=0;for(D=Fa.length;E<D;E++)A=Fa[E].vertices[o.a].position,V=Fa[E].vertices[o.b].position,H=Fa[E].vertices[o.c].position,z=pa[E],z[Q+0]=A.x,z[Q+1]=A.y,z[Q+2]=A.z,z[Q+3]=V.x,z[Q+4]=V.y,z[Q+5]=V.z,z[Q+6]=H.x,z[Q+7]=H.y,z[Q+8]=H.z;Q+=9}if(Ha.length)E=Ha[o.a],D=Ha[o.b],z=Ha[o.c],ca[M]=E.x,ca[M+1]=E.y,ca[M+2]=E.z,ca[M+3]=E.w,ca[M+4]=D.x,ca[M+5]=D.y,ca[M+6]=D.z,ca[M+7]=D.w,ca[M+8]=z.x,ca[M+9]=z.y,ca[M+10]=
|
|
|
+z.z,ca[M+11]=z.w,E=Oa[o.a],D=Oa[o.b],z=Oa[o.c],ea[M]=E.x,ea[M+1]=E.y,ea[M+2]=E.z,ea[M+3]=E.w,ea[M+4]=D.x,ea[M+5]=D.y,ea[M+6]=D.z,ea[M+7]=D.w,ea[M+8]=z.x,ea[M+9]=z.y,ea[M+10]=z.z,ea[M+11]=z.w,E=ya[o.a],D=ya[o.b],z=ya[o.c],Y[M]=E.x,Y[M+1]=E.y,Y[M+2]=E.z,Y[M+3]=1,Y[M+4]=D.x,Y[M+5]=D.y,Y[M+6]=D.z,Y[M+7]=1,Y[M+8]=z.x,Y[M+9]=z.y,Y[M+10]=z.z,Y[M+11]=1,E=za[o.a],D=za[o.b],z=za[o.c],fa[M]=E.x,fa[M+1]=E.y,fa[M+2]=E.z,fa[M+3]=1,fa[M+4]=D.x,fa[M+5]=D.y,fa[M+6]=D.z,fa[M+7]=1,fa[M+8]=z.x,fa[M+9]=z.y,fa[M+10]=z.z,
|
|
|
+fa[M+11]=1,M+=12;if(wa&&C)v.length==3&&C==THREE.VertexColors?(o=v[0],E=v[1],D=v[2]):D=E=o=y,Z[ka]=o.r,Z[ka+1]=o.g,Z[ka+2]=o.b,Z[ka+3]=E.r,Z[ka+4]=E.g,Z[ka+5]=E.b,Z[ka+6]=D.r,Z[ka+7]=D.g,Z[ka+8]=D.b,ka+=9;if(ua&&ia.hasTangents)v=x[0],y=x[1],o=x[2],W[N]=v.x,W[N+1]=v.y,W[N+2]=v.z,W[N+3]=v.w,W[N+4]=y.x,W[N+5]=y.y,W[N+6]=y.z,W[N+7]=y.w,W[N+8]=o.x,W[N+9]=o.y,W[N+10]=o.z,W[N+11]=o.w,N+=12;if(ta&&F)if(t.length==3&&na)for(x=0;x<3;x++)u=t[x],la[R]=u.x,la[R+1]=u.y,la[R+2]=u.z,R+=3;else for(x=0;x<3;x++)la[R]=
|
|
|
+u.x,la[R+1]=u.y,la[R+2]=u.z,R+=3;if(xa&&G!==void 0&&w)for(x=0;x<3;x++)t=G[x],$[aa]=t.u,$[aa+1]=t.v,aa+=2;if(xa&&I!==void 0&&w)for(x=0;x<3;x++)t=I[x],da[X]=t.u,da[X+1]=t.v,X+=2;ra&&(ha[P]=K,ha[P+1]=K+1,ha[P+2]=K+2,P+=3,sa[T]=K,sa[T+1]=K+1,sa[T+2]=K,sa[T+3]=K+2,sa[T+4]=K+1,sa[T+5]=K+2,T+=6,K+=3)}else if(o instanceof THREE.Face4){if(qa)A=va[o.a].position,V=va[o.b].position,H=va[o.c].position,U=va[o.d].position,S[ga]=A.x,S[ga+1]=A.y,S[ga+2]=A.z,S[ga+3]=V.x,S[ga+4]=V.y,S[ga+5]=V.z,S[ga+6]=H.x,S[ga+7]=
|
|
|
+H.y,S[ga+8]=H.z,S[ga+9]=U.x,S[ga+10]=U.y,S[ga+11]=U.z,ga+=12;if(ja)for(O in ja)if(z=ja[O],z.__original.needsUpdate)E=z.offset,D=z.offsetSrc,z.size===1?(z.boundTo===void 0||z.boundTo==="vertices"?(z.array[E+0]=z.value[o.a],z.array[E+1]=z.value[o.b],z.array[E+2]=z.value[o.c],z.array[E+3]=z.value[o.d]):z.boundTo==="faces"?(z.array[E+0]=z.value[D],z.array[E+1]=z.value[D],z.array[E+2]=z.value[D],z.array[E+3]=z.value[D],z.offsetSrc++):z.boundTo==="faceVertices"&&(z.array[E+0]=z.value[D+0],z.array[E+1]=
|
|
|
+z.value[D+1],z.array[E+2]=z.value[D+2],z.array[E+3]=z.value[D+3],z.offsetSrc+=4),z.offset+=4):(z.boundTo===void 0||z.boundTo==="vertices"?(A=z.value[o.a],V=z.value[o.b],H=z.value[o.c],U=z.value[o.d]):z.boundTo==="faces"?(A=z.value[D],V=z.value[D],H=z.value[D],U=z.value[D],z.offsetSrc++):z.boundTo==="faceVertices"&&(A=z.value[D+0],V=z.value[D+1],H=z.value[D+2],U=z.value[D+3],z.offsetSrc+=4),z.size===2?(z.array[E+0]=A.x,z.array[E+1]=A.y,z.array[E+2]=V.x,z.array[E+3]=V.y,z.array[E+4]=H.x,z.array[E+5]=
|
|
|
+H.y,z.array[E+6]=U.x,z.array[E+7]=U.y,z.offset+=8):z.size===3?(z.type==="c"?(z.array[E+0]=A.r,z.array[E+1]=A.g,z.array[E+2]=A.b,z.array[E+3]=V.r,z.array[E+4]=V.g,z.array[E+5]=V.b,z.array[E+6]=H.r,z.array[E+7]=H.g,z.array[E+8]=H.b,z.array[E+9]=U.r,z.array[E+10]=U.g,z.array[E+11]=U.b):(z.array[E+0]=A.x,z.array[E+1]=A.y,z.array[E+2]=A.z,z.array[E+3]=V.x,z.array[E+4]=V.y,z.array[E+5]=V.z,z.array[E+6]=H.x,z.array[E+7]=H.y,z.array[E+8]=H.z,z.array[E+9]=U.x,z.array[E+10]=U.y,z.array[E+11]=U.z),z.offset+=
|
|
|
+12):(z.array[E+0]=A.x,z.array[E+1]=A.y,z.array[E+2]=A.z,z.array[E+3]=A.w,z.array[E+4]=V.x,z.array[E+5]=V.y,z.array[E+6]=V.z,z.array[E+7]=V.w,z.array[E+8]=H.x,z.array[E+9]=H.y,z.array[E+10]=H.z,z.array[E+11]=H.w,z.array[E+12]=U.x,z.array[E+13]=U.y,z.array[E+14]=U.z,z.array[E+15]=U.w,z.offset+=16));if(Aa){E=0;for(D=Fa.length;E<D;E++)A=Fa[E].vertices[o.a].position,V=Fa[E].vertices[o.b].position,H=Fa[E].vertices[o.c].position,U=Fa[E].vertices[o.d].position,z=pa[E],z[Q+0]=A.x,z[Q+1]=A.y,z[Q+2]=A.z,z[Q+
|
|
|
+3]=V.x,z[Q+4]=V.y,z[Q+5]=V.z,z[Q+6]=H.x,z[Q+7]=H.y,z[Q+8]=H.z,z[Q+9]=U.x,z[Q+10]=U.y,z[Q+11]=U.z;Q+=12}if(Ha.length)E=Ha[o.a],D=Ha[o.b],z=Ha[o.c],L=Ha[o.d],ca[M]=E.x,ca[M+1]=E.y,ca[M+2]=E.z,ca[M+3]=E.w,ca[M+4]=D.x,ca[M+5]=D.y,ca[M+6]=D.z,ca[M+7]=D.w,ca[M+8]=z.x,ca[M+9]=z.y,ca[M+10]=z.z,ca[M+11]=z.w,ca[M+12]=L.x,ca[M+13]=L.y,ca[M+14]=L.z,ca[M+15]=L.w,E=Oa[o.a],D=Oa[o.b],z=Oa[o.c],L=Oa[o.d],ea[M]=E.x,ea[M+1]=E.y,ea[M+2]=E.z,ea[M+3]=E.w,ea[M+4]=D.x,ea[M+5]=D.y,ea[M+6]=D.z,ea[M+7]=D.w,ea[M+8]=z.x,ea[M+
|
|
|
+9]=z.y,ea[M+10]=z.z,ea[M+11]=z.w,ea[M+12]=L.x,ea[M+13]=L.y,ea[M+14]=L.z,ea[M+15]=L.w,E=ya[o.a],D=ya[o.b],z=ya[o.c],L=ya[o.d],Y[M]=E.x,Y[M+1]=E.y,Y[M+2]=E.z,Y[M+3]=1,Y[M+4]=D.x,Y[M+5]=D.y,Y[M+6]=D.z,Y[M+7]=1,Y[M+8]=z.x,Y[M+9]=z.y,Y[M+10]=z.z,Y[M+11]=1,Y[M+12]=L.x,Y[M+13]=L.y,Y[M+14]=L.z,Y[M+15]=1,E=za[o.a],D=za[o.b],z=za[o.c],o=za[o.d],fa[M]=E.x,fa[M+1]=E.y,fa[M+2]=E.z,fa[M+3]=1,fa[M+4]=D.x,fa[M+5]=D.y,fa[M+6]=D.z,fa[M+7]=1,fa[M+8]=z.x,fa[M+9]=z.y,fa[M+10]=z.z,fa[M+11]=1,fa[M+12]=o.x,fa[M+13]=o.y,
|
|
|
+fa[M+14]=o.z,fa[M+15]=1,M+=16;if(wa&&C)v.length==4&&C==THREE.VertexColors?(o=v[0],E=v[1],D=v[2],v=v[3]):v=D=E=o=y,Z[ka]=o.r,Z[ka+1]=o.g,Z[ka+2]=o.b,Z[ka+3]=E.r,Z[ka+4]=E.g,Z[ka+5]=E.b,Z[ka+6]=D.r,Z[ka+7]=D.g,Z[ka+8]=D.b,Z[ka+9]=v.r,Z[ka+10]=v.g,Z[ka+11]=v.b,ka+=12;if(ua&&ia.hasTangents)v=x[0],y=x[1],o=x[2],x=x[3],W[N]=v.x,W[N+1]=v.y,W[N+2]=v.z,W[N+3]=v.w,W[N+4]=y.x,W[N+5]=y.y,W[N+6]=y.z,W[N+7]=y.w,W[N+8]=o.x,W[N+9]=o.y,W[N+10]=o.z,W[N+11]=o.w,W[N+12]=x.x,W[N+13]=x.y,W[N+14]=x.z,W[N+15]=x.w,N+=16;
|
|
|
+if(ta&&F)if(t.length==4&&na)for(x=0;x<4;x++)u=t[x],la[R]=u.x,la[R+1]=u.y,la[R+2]=u.z,R+=3;else for(x=0;x<4;x++)la[R]=u.x,la[R+1]=u.y,la[R+2]=u.z,R+=3;if(xa&&G!==void 0&&w)for(x=0;x<4;x++)t=G[x],$[aa]=t.u,$[aa+1]=t.v,aa+=2;if(xa&&I!==void 0&&w)for(x=0;x<4;x++)t=I[x],da[X]=t.u,da[X+1]=t.v,X+=2;ra&&(ha[P]=K,ha[P+1]=K+1,ha[P+2]=K+3,ha[P+3]=K+1,ha[P+4]=K+2,ha[P+5]=K+3,P+=6,sa[T]=K,sa[T+1]=K+1,sa[T+2]=K,sa[T+3]=K+3,sa[T+4]=K+1,sa[T+5]=K+2,sa[T+6]=K+2,sa[T+7]=K+3,T+=8,K+=4)}if(Ma){n=0;for(p=Ma.length;n<
|
|
|
+p;n++)ha[P]=Ma[n].a,ha[P+1]=Ma[n].b,ha[P+2]=Ma[n].c,ha[P+3]=Ma[n].a,ha[P+4]=Ma[n].c,ha[P+5]=Ma[n].d,P+=6}qa&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglVertexBuffer),k.bufferData(k.ARRAY_BUFFER,S,m));if(ja)for(O in ja)z=ja[O],z.__original.needsUpdate&&(k.bindBuffer(k.ARRAY_BUFFER,z.buffer),k.bufferData(k.ARRAY_BUFFER,z.array,m));if(Aa){E=0;for(D=Fa.length;E<D;E++)k.bindBuffer(k.ARRAY_BUFFER,g.__webglMorphTargetsBuffers[E]),k.bufferData(k.ARRAY_BUFFER,pa[E],m)}wa&&ka>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglColorBuffer),
|
|
|
+k.bufferData(k.ARRAY_BUFFER,Z,m));ta&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglNormalBuffer),k.bufferData(k.ARRAY_BUFFER,la,m));ua&&ia.hasTangents&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglTangentBuffer),k.bufferData(k.ARRAY_BUFFER,W,m));xa&&aa>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglUVBuffer),k.bufferData(k.ARRAY_BUFFER,$,m));xa&&X>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglUV2Buffer),k.bufferData(k.ARRAY_BUFFER,da,m));ra&&(k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,g.__webglFaceBuffer),k.bufferData(k.ELEMENT_ARRAY_BUFFER,
|
|
|
+ha,m),k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,g.__webglLineBuffer),k.bufferData(k.ELEMENT_ARRAY_BUFFER,sa,m));M>0&&(k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinVertexABuffer),k.bufferData(k.ARRAY_BUFFER,Y,m),k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinVertexBBuffer),k.bufferData(k.ARRAY_BUFFER,fa,m),k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinIndicesBuffer),k.bufferData(k.ARRAY_BUFFER,ea,m),k.bindBuffer(k.ARRAY_BUFFER,g.__webglSkinWeightsBuffer),k.bufferData(k.ARRAY_BUFFER,ca,m));j.dynamic||(delete g.__inittedArrays,
|
|
|
+delete g.__colorArray,delete g.__normalArray,delete g.__tangentArray,delete g.__uvArray,delete g.__uv2Array,delete g.__faceArray,delete g.__vertexArray,delete g.__lineArray,delete g.__skinVertexAArray,delete g.__skinVertexBArray,delete g.__skinIndexArray,delete g.__skinWeightArray)}}f.__dirtyVertices=!1;f.__dirtyMorphTargets=!1;f.__dirtyElements=!1;f.__dirtyUvs=!1;f.__dirtyNormals=!1;f.__dirtyTangents=!1;f.__dirtyColors=!1;J(h)}else if(b instanceof THREE.Ribbon){f=b.geometry;if(f.__dirtyVertices||
|
|
|
+f.__dirtyColors){b=f;e=k.DYNAMIC_DRAW;w=b.vertices;g=b.colors;C=w.length;j=g.length;F=b.__vertexArray;m=b.__colorArray;G=b.__dirtyColors;if(b.__dirtyVertices){for(n=0;n<C;n++)p=w[n].position,h=n*3,F[h]=p.x,F[h+1]=p.y,F[h+2]=p.z;k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer);k.bufferData(k.ARRAY_BUFFER,F,e)}if(G){for(n=0;n<j;n++)color=g[n],h=n*3,m[h]=color.r,m[h+1]=color.g,m[h+2]=color.b;k.bindBuffer(k.ARRAY_BUFFER,b.__webglColorBuffer);k.bufferData(k.ARRAY_BUFFER,m,e)}}f.__dirtyVertices=!1;f.__dirtyColors=
|
|
|
+!1}else if(b instanceof THREE.Line){f=b.geometry;if(f.__dirtyVertices||f.__dirtyColors){b=f;e=k.DYNAMIC_DRAW;w=b.vertices;g=b.colors;C=w.length;j=g.length;F=b.__vertexArray;m=b.__colorArray;G=b.__dirtyColors;if(b.__dirtyVertices){for(n=0;n<C;n++)p=w[n].position,h=n*3,F[h]=p.x,F[h+1]=p.y,F[h+2]=p.z;k.bindBuffer(k.ARRAY_BUFFER,b.__webglVertexBuffer);k.bufferData(k.ARRAY_BUFFER,F,e)}if(G){for(n=0;n<j;n++)color=g[n],h=n*3,m[h]=color.r,m[h+1]=color.g,m[h+2]=color.b;k.bindBuffer(k.ARRAY_BUFFER,b.__webglColorBuffer);
|
|
|
+k.bufferData(k.ARRAY_BUFFER,m,e)}}f.__dirtyVertices=!1;f.__dirtyColors=!1}else if(b instanceof THREE.ParticleSystem)f=b.geometry,g=B(f),(f.__dirtyVertices||f.__dirtyColors||b.sortParticles||g)&&c(f,k.DYNAMIC_DRAW,b),f.__dirtyVertices=!1,f.__dirtyColors=!1,J(f)}function A(b,e){var c;for(c=b.length-1;c>=0;c--)b[c].object==e&&b.splice(c,1)}function X(b){function e(b){var h=[];c=0;for(f=b.length;c<f;c++)b[c]==void 0?h.push("undefined"):h.push(b[c].id);return h.join("_")}var c,f,h,g,j,k,m,n,o={},p=b.morphTargets!==
|
|
|
+void 0?b.morphTargets.length:0;b.geometryGroups={};h=0;for(g=b.faces.length;h<g;h++)j=b.faces[h],k=j.materials,m=e(k),o[m]==void 0&&(o[m]={hash:m,counter:0}),n=o[m].hash+"_"+o[m].counter,b.geometryGroups[n]==void 0&&(b.geometryGroups[n]={faces:[],materials:k,vertices:0,numMorphTargets:p}),j=j instanceof THREE.Face3?3:4,b.geometryGroups[n].vertices+j>65535&&(o[m].counter+=1,n=o[m].hash+"_"+o[m].counter,b.geometryGroups[n]==void 0&&(b.geometryGroups[n]={faces:[],materials:k,vertices:0,numMorphTargets:p})),
|
|
|
+b.geometryGroups[n].faces.push(h),b.geometryGroups[n].vertices+=j}function G(b,e,c){b.push({buffer:e,object:c,opaque:{list:[],count:0},transparent:{list:[],count:0}})}function H(b){if(b!=fa){switch(b){case THREE.AdditiveBlending:k.blendEquation(k.FUNC_ADD);k.blendFunc(k.SRC_ALPHA,k.ONE);break;case THREE.SubtractiveBlending:k.blendEquation(k.FUNC_ADD);k.blendFunc(k.ZERO,k.ONE_MINUS_SRC_COLOR);break;case THREE.MultiplyBlending:k.blendEquation(k.FUNC_ADD);k.blendFunc(k.ZERO,k.SRC_COLOR);break;default:k.blendEquationSeparate(k.FUNC_ADD,
|
|
|
+k.FUNC_ADD),k.blendFuncSeparate(k.SRC_ALPHA,k.ONE_MINUS_SRC_ALPHA,k.ONE,k.ONE_MINUS_SRC_ALPHA)}fa=b}}function L(b,e,c){(c.width&c.width-1)==0&&(c.height&c.height-1)==0?(k.texParameteri(b,k.TEXTURE_WRAP_S,S(e.wrapS)),k.texParameteri(b,k.TEXTURE_WRAP_T,S(e.wrapT)),k.texParameteri(b,k.TEXTURE_MAG_FILTER,S(e.magFilter)),k.texParameteri(b,k.TEXTURE_MIN_FILTER,S(e.minFilter)),k.generateMipmap(b)):(k.texParameteri(b,k.TEXTURE_WRAP_S,k.CLAMP_TO_EDGE),k.texParameteri(b,k.TEXTURE_WRAP_T,k.CLAMP_TO_EDGE),k.texParameteri(b,
|
|
|
+k.TEXTURE_MAG_FILTER,Q(e.magFilter)),k.texParameteri(b,k.TEXTURE_MIN_FILTER,Q(e.minFilter)))}function O(b,e){if(b.needsUpdate)b.__webglInit?(k.bindTexture(k.TEXTURE_2D,b.__webglTexture),k.texImage2D(k.TEXTURE_2D,0,k.RGBA,k.RGBA,k.UNSIGNED_BYTE,b.image)):(b.__webglTexture=k.createTexture(),k.bindTexture(k.TEXTURE_2D,b.__webglTexture),k.texImage2D(k.TEXTURE_2D,0,k.RGBA,k.RGBA,k.UNSIGNED_BYTE,b.image),b.__webglInit=!0),L(k.TEXTURE_2D,b,b.image),k.bindTexture(k.TEXTURE_2D,null),b.needsUpdate=!1;k.activeTexture(k.TEXTURE0+
|
|
|
+e);k.bindTexture(k.TEXTURE_2D,b.__webglTexture)}function P(b){if(b&&!b.__webglFramebuffer){if(b.depthBuffer===void 0)b.depthBuffer=!0;if(b.stencilBuffer===void 0)b.stencilBuffer=!0;b.__webglFramebuffer=k.createFramebuffer();b.__webglRenderbuffer=k.createRenderbuffer();b.__webglTexture=k.createTexture();k.bindTexture(k.TEXTURE_2D,b.__webglTexture);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_S,S(b.wrapS));k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_T,S(b.wrapT));k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MAG_FILTER,
|
|
|
S(b.magFilter));k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MIN_FILTER,S(b.minFilter));k.texImage2D(k.TEXTURE_2D,0,S(b.format),b.width,b.height,0,S(b.format),S(b.type),null);k.bindRenderbuffer(k.RENDERBUFFER,b.__webglRenderbuffer);k.bindFramebuffer(k.FRAMEBUFFER,b.__webglFramebuffer);k.framebufferTexture2D(k.FRAMEBUFFER,k.COLOR_ATTACHMENT0,k.TEXTURE_2D,b.__webglTexture,0);b.depthBuffer&&!b.stencilBuffer?(k.renderbufferStorage(k.RENDERBUFFER,k.DEPTH_COMPONENT16,b.width,b.height),k.framebufferRenderbuffer(k.FRAMEBUFFER,
|
|
|
k.DEPTH_ATTACHMENT,k.RENDERBUFFER,b.__webglRenderbuffer)):b.depthBuffer&&b.stencilBuffer?(k.renderbufferStorage(k.RENDERBUFFER,k.DEPTH_STENCIL,b.width,b.height),k.framebufferRenderbuffer(k.FRAMEBUFFER,k.DEPTH_STENCIL_ATTACHMENT,k.RENDERBUFFER,b.__webglRenderbuffer)):k.renderbufferStorage(k.RENDERBUFFER,k.RGBA4,b.width,b.height);k.bindTexture(k.TEXTURE_2D,null);k.bindRenderbuffer(k.RENDERBUFFER,null);k.bindFramebuffer(k.FRAMEBUFFER,null)}var e,c;b?(e=b.__webglFramebuffer,c=b.width,b=b.height):(e=null,
|
|
|
-c=U,b=ha);e!=W&&(k.bindFramebuffer(k.FRAMEBUFFER,e),k.viewport(ja,oa,c,b),W=e)}function aa(b,e){var c;b=="fragment"?c=k.createShader(k.FRAGMENT_SHADER):b=="vertex"&&(c=k.createShader(k.VERTEX_SHADER));k.shaderSource(c,e);k.compileShader(c);if(!k.getShaderParameter(c,k.COMPILE_STATUS))return console.error(k.getShaderInfoLog(c)),console.error(e),null;return c}function Q(b){switch(b){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return k.NEAREST;
|
|
|
-default:return k.LINEAR}}function S(b){switch(b){case THREE.RepeatWrapping:return k.REPEAT;case THREE.ClampToEdgeWrapping:return k.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return k.MIRRORED_REPEAT;case THREE.NearestFilter:return k.NEAREST;case THREE.NearestMipMapNearestFilter:return k.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return k.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return k.LINEAR;case THREE.LinearMipMapNearestFilter:return k.LINEAR_MIPMAP_NEAREST;case THREE.LinearMipMapLinearFilter:return k.LINEAR_MIPMAP_LINEAR;
|
|
|
+c=V,b=U);e!=Z&&(k.bindFramebuffer(k.FRAMEBUFFER,e),k.viewport(ja,na,c,b),Z=e)}function N(b,e){var c;b=="fragment"?c=k.createShader(k.FRAGMENT_SHADER):b=="vertex"&&(c=k.createShader(k.VERTEX_SHADER));k.shaderSource(c,e);k.compileShader(c);if(!k.getShaderParameter(c,k.COMPILE_STATUS))return console.error(k.getShaderInfoLog(c)),console.error(e),null;return c}function Q(b){switch(b){case THREE.NearestFilter:case THREE.NearestMipMapNearestFilter:case THREE.NearestMipMapLinearFilter:return k.NEAREST;default:return k.LINEAR}}
|
|
|
+function S(b){switch(b){case THREE.RepeatWrapping:return k.REPEAT;case THREE.ClampToEdgeWrapping:return k.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return k.MIRRORED_REPEAT;case THREE.NearestFilter:return k.NEAREST;case THREE.NearestMipMapNearestFilter:return k.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return k.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return k.LINEAR;case THREE.LinearMipMapNearestFilter:return k.LINEAR_MIPMAP_NEAREST;case THREE.LinearMipMapLinearFilter:return k.LINEAR_MIPMAP_LINEAR;
|
|
|
case THREE.ByteType:return k.BYTE;case THREE.UnsignedByteType:return k.UNSIGNED_BYTE;case THREE.ShortType:return k.SHORT;case THREE.UnsignedShortType:return k.UNSIGNED_SHORT;case THREE.IntType:return k.INT;case THREE.UnsignedShortType:return k.UNSIGNED_INT;case THREE.FloatType:return k.FLOAT;case THREE.AlphaFormat:return k.ALPHA;case THREE.RGBFormat:return k.RGB;case THREE.RGBAFormat:return k.RGBA;case THREE.LuminanceFormat:return k.LUMINANCE;case THREE.LuminanceAlphaFormat:return k.LUMINANCE_ALPHA}return 0}
|
|
|
-var T=this,k,L=[],ca=null,W=null,X=!0,$=null,da=null,ea=null,fa=null,J=null,ia=null,la=null,ja=0,oa=0,U=0,ha=0,ga=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],ma=new THREE.Matrix4,za=new Float32Array(16),wa=new Float32Array(16),Aa=new THREE.Vector4,Ia={ambient:[0,0,0],directional:{length:0,colors:[],positions:[]},point:{length:0,colors:[],positions:[],distances:[]}},b=b||{},Ba=b.canvas!==void 0?b.canvas:document.createElement("canvas"),
|
|
|
-Pa=b.stencil!==void 0?b.stencil:!0,Z=b.antialias!==void 0?b.antialias:!1,ka=b.clearColor!==void 0?new THREE.Color(b.clearColor):new THREE.Color(0),qa=b.clearAlpha!==void 0?b.clearAlpha:0;this.data={vertices:0,faces:0,drawCalls:0};this.maxMorphTargets=8;this.domElement=Ba;this.sortObjects=this.autoClear=!0;this.shadowMapBias=0.0039;this.shadowMapDarkness=0.5;this.shadowMapHeight=this.shadowMapWidth=512;this.shadowCameraNear=1;this.shadowCameraFar=5E3;this.shadowCameraFov=50;this.shadowMap=[];this.shadowMapEnabled=
|
|
|
-!1;this.shadowMapSoft=!0;var sa,ta=[],b=THREE.ShaderLib.depthRGBA,va=THREE.UniformsUtils.clone(b.uniforms),Da=new THREE.MeshShaderMaterial({fragmentShader:b.fragmentShader,vertexShader:b.vertexShader,uniforms:va}),xa=new THREE.MeshShaderMaterial({fragmentShader:b.fragmentShader,vertexShader:b.vertexShader,uniforms:va,morphTargets:!0});Da._shadowPass=!0;xa._shadowPass=!0;try{if(!(k=Ba.getContext("experimental-webgl",{antialias:Z,stencil:Pa})))throw"Error creating WebGL context.";console.log(navigator.userAgent+
|
|
|
-" | "+k.getParameter(k.VERSION)+" | "+k.getParameter(k.VENDOR)+" | "+k.getParameter(k.RENDERER)+" | "+k.getParameter(k.SHADING_LANGUAGE_VERSION))}catch(ra){console.error(ra)}k.clearColor(0,0,0,1);k.clearDepth(1);k.enable(k.DEPTH_TEST);k.depthFunc(k.LEQUAL);k.frontFace(k.CCW);k.cullFace(k.BACK);k.enable(k.CULL_FACE);k.enable(k.BLEND);k.blendEquation(k.FUNC_ADD);k.blendFunc(k.SRC_ALPHA,k.ONE_MINUS_SRC_ALPHA);k.clearColor(ka.r,ka.g,ka.b,qa);this.context=k;var Ea=k.getParameter(k.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>
|
|
|
+var $=this,k,K=[],da=null,Z=null,aa=!0,ha=null,la=null,fa=null,pa=null,D=null,ea=null,ca=null,ja=0,na=0,V=0,U=0,ga=[new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4,new THREE.Vector4],ka=new THREE.Matrix4,sa=new Float32Array(16),xa=new Float32Array(16),Aa=new THREE.Vector4,Ia={ambient:[0,0,0],directional:{length:0,colors:[],positions:[]},point:{length:0,colors:[],positions:[],distances:[]}},b=b||{},Ba=b.canvas!==void 0?b.canvas:document.createElement("canvas"),
|
|
|
+Pa=b.stencil!==void 0?b.stencil:!0,W=b.antialias!==void 0?b.antialias:!1,ia=b.clearColor!==void 0?new THREE.Color(b.clearColor):new THREE.Color(0),qa=b.clearAlpha!==void 0?b.clearAlpha:0;this.data={vertices:0,faces:0,drawCalls:0};this.maxMorphTargets=8;this.domElement=Ba;this.sortObjects=this.autoClear=!0;this.shadowMapBias=0.0039;this.shadowMapDarkness=0.5;this.shadowMapHeight=this.shadowMapWidth=512;this.shadowCameraNear=1;this.shadowCameraFar=5E3;this.shadowCameraFov=50;this.shadowMap=[];this.shadowMapEnabled=
|
|
|
+!1;this.shadowMapSoft=!0;var ta,ua=[],b=THREE.ShaderLib.depthRGBA,wa=THREE.UniformsUtils.clone(b.uniforms),Da=new THREE.MeshShaderMaterial({fragmentShader:b.fragmentShader,vertexShader:b.vertexShader,uniforms:wa}),ya=new THREE.MeshShaderMaterial({fragmentShader:b.fragmentShader,vertexShader:b.vertexShader,uniforms:wa,morphTargets:!0});Da._shadowPass=!0;ya._shadowPass=!0;try{if(!(k=Ba.getContext("experimental-webgl",{antialias:W,stencil:Pa})))throw"Error creating WebGL context.";console.log(navigator.userAgent+
|
|
|
+" | "+k.getParameter(k.VERSION)+" | "+k.getParameter(k.VENDOR)+" | "+k.getParameter(k.RENDERER)+" | "+k.getParameter(k.SHADING_LANGUAGE_VERSION))}catch(ra){console.error(ra)}k.clearColor(0,0,0,1);k.clearDepth(1);k.enable(k.DEPTH_TEST);k.depthFunc(k.LEQUAL);k.frontFace(k.CCW);k.cullFace(k.BACK);k.enable(k.CULL_FACE);k.enable(k.BLEND);k.blendEquation(k.FUNC_ADD);k.blendFunc(k.SRC_ALPHA,k.ONE_MINUS_SRC_ALPHA);k.clearColor(ia.r,ia.g,ia.b,qa);this.context=k;var Ea=k.getParameter(k.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>
|
|
|
0;if(Pa){var Y={};Y.vertices=new Float32Array(12);Y.faces=new Uint16Array(6);Y.darkness=0.5;Y.vertices[0]=-20;Y.vertices[1]=-20;Y.vertices[2]=-1;Y.vertices[3]=20;Y.vertices[4]=-20;Y.vertices[5]=-1;Y.vertices[6]=20;Y.vertices[7]=20;Y.vertices[8]=-1;Y.vertices[9]=-20;Y.vertices[10]=20;Y.vertices[11]=-1;Y.faces[0]=0;Y.faces[1]=1;Y.faces[2]=2;Y.faces[3]=0;Y.faces[4]=2;Y.faces[5]=3;Y.vertexBuffer=k.createBuffer();Y.elementBuffer=k.createBuffer();k.bindBuffer(k.ARRAY_BUFFER,Y.vertexBuffer);k.bufferData(k.ARRAY_BUFFER,
|
|
|
-Y.vertices,k.STATIC_DRAW);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,Y.elementBuffer);k.bufferData(k.ELEMENT_ARRAY_BUFFER,Y.faces,k.STATIC_DRAW);Y.program=k.createProgram();k.attachShader(Y.program,aa("fragment",THREE.ShaderLib.shadowPost.fragmentShader));k.attachShader(Y.program,aa("vertex",THREE.ShaderLib.shadowPost.vertexShader));k.linkProgram(Y.program);Y.vertexLocation=k.getAttribLocation(Y.program,"position");Y.projectionLocation=k.getUniformLocation(Y.program,"projectionMatrix");Y.darknessLocation=
|
|
|
-k.getUniformLocation(Y.program,"darkness")}var R={};R.vertices=new Float32Array(16);R.faces=new Uint16Array(6);Z=0;R.vertices[Z++]=-1;R.vertices[Z++]=-1;R.vertices[Z++]=0;R.vertices[Z++]=0;R.vertices[Z++]=1;R.vertices[Z++]=-1;R.vertices[Z++]=1;R.vertices[Z++]=0;R.vertices[Z++]=1;R.vertices[Z++]=1;R.vertices[Z++]=1;R.vertices[Z++]=1;R.vertices[Z++]=-1;R.vertices[Z++]=1;R.vertices[Z++]=0;R.vertices[Z++]=1;Z=0;R.faces[Z++]=0;R.faces[Z++]=1;R.faces[Z++]=2;R.faces[Z++]=0;R.faces[Z++]=2;R.faces[Z++]=3;
|
|
|
+Y.vertices,k.STATIC_DRAW);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,Y.elementBuffer);k.bufferData(k.ELEMENT_ARRAY_BUFFER,Y.faces,k.STATIC_DRAW);Y.program=k.createProgram();k.attachShader(Y.program,N("fragment",THREE.ShaderLib.shadowPost.fragmentShader));k.attachShader(Y.program,N("vertex",THREE.ShaderLib.shadowPost.vertexShader));k.linkProgram(Y.program);Y.vertexLocation=k.getAttribLocation(Y.program,"position");Y.projectionLocation=k.getUniformLocation(Y.program,"projectionMatrix");Y.darknessLocation=
|
|
|
+k.getUniformLocation(Y.program,"darkness")}var R={};R.vertices=new Float32Array(16);R.faces=new Uint16Array(6);W=0;R.vertices[W++]=-1;R.vertices[W++]=-1;R.vertices[W++]=0;R.vertices[W++]=0;R.vertices[W++]=1;R.vertices[W++]=-1;R.vertices[W++]=1;R.vertices[W++]=0;R.vertices[W++]=1;R.vertices[W++]=1;R.vertices[W++]=1;R.vertices[W++]=1;R.vertices[W++]=-1;R.vertices[W++]=1;R.vertices[W++]=0;R.vertices[W++]=1;W=0;R.faces[W++]=0;R.faces[W++]=1;R.faces[W++]=2;R.faces[W++]=0;R.faces[W++]=2;R.faces[W++]=3;
|
|
|
R.vertexBuffer=k.createBuffer();R.elementBuffer=k.createBuffer();R.tempTexture=k.createTexture();R.occlusionTexture=k.createTexture();k.bindBuffer(k.ARRAY_BUFFER,R.vertexBuffer);k.bufferData(k.ARRAY_BUFFER,R.vertices,k.STATIC_DRAW);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,R.elementBuffer);k.bufferData(k.ELEMENT_ARRAY_BUFFER,R.faces,k.STATIC_DRAW);k.bindTexture(k.TEXTURE_2D,R.tempTexture);k.texImage2D(k.TEXTURE_2D,0,k.RGB,16,16,0,k.RGB,k.UNSIGNED_BYTE,null);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_S,
|
|
|
k.CLAMP_TO_EDGE);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_T,k.CLAMP_TO_EDGE);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MAG_FILTER,k.NEAREST);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MIN_FILTER,k.NEAREST);k.bindTexture(k.TEXTURE_2D,R.occlusionTexture);k.texImage2D(k.TEXTURE_2D,0,k.RGBA,16,16,0,k.RGBA,k.UNSIGNED_BYTE,null);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_S,k.CLAMP_TO_EDGE);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_WRAP_T,k.CLAMP_TO_EDGE);k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MAG_FILTER,k.NEAREST);
|
|
|
-k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MIN_FILTER,k.NEAREST);k.getParameter(k.MAX_VERTEX_TEXTURE_IMAGE_UNITS)<=0?(R.hasVertexTexture=!1,R.program=k.createProgram(),k.attachShader(R.program,aa("fragment",THREE.ShaderLib.lensFlare.fragmentShader)),k.attachShader(R.program,aa("vertex",THREE.ShaderLib.lensFlare.vertexShader))):(R.hasVertexTexture=!0,R.program=k.createProgram(),k.attachShader(R.program,aa("fragment",THREE.ShaderLib.lensFlareVertexTexture.fragmentShader)),k.attachShader(R.program,aa("vertex",
|
|
|
+k.texParameteri(k.TEXTURE_2D,k.TEXTURE_MIN_FILTER,k.NEAREST);k.getParameter(k.MAX_VERTEX_TEXTURE_IMAGE_UNITS)<=0?(R.hasVertexTexture=!1,R.program=k.createProgram(),k.attachShader(R.program,N("fragment",THREE.ShaderLib.lensFlare.fragmentShader)),k.attachShader(R.program,N("vertex",THREE.ShaderLib.lensFlare.vertexShader))):(R.hasVertexTexture=!0,R.program=k.createProgram(),k.attachShader(R.program,N("fragment",THREE.ShaderLib.lensFlareVertexTexture.fragmentShader)),k.attachShader(R.program,N("vertex",
|
|
|
THREE.ShaderLib.lensFlareVertexTexture.vertexShader)));k.linkProgram(R.program);R.attributes={};R.uniforms={};R.attributes.vertex=k.getAttribLocation(R.program,"position");R.attributes.uv=k.getAttribLocation(R.program,"UV");R.uniforms.renderType=k.getUniformLocation(R.program,"renderType");R.uniforms.map=k.getUniformLocation(R.program,"map");R.uniforms.occlusionMap=k.getUniformLocation(R.program,"occlusionMap");R.uniforms.opacity=k.getUniformLocation(R.program,"opacity");R.uniforms.scale=k.getUniformLocation(R.program,
|
|
|
-"scale");R.uniforms.rotation=k.getUniformLocation(R.program,"rotation");R.uniforms.screenPosition=k.getUniformLocation(R.program,"screenPosition");var ua=!1,M={};M.vertices=new Float32Array(16);M.faces=new Uint16Array(6);Z=0;M.vertices[Z++]=-1;M.vertices[Z++]=-1;M.vertices[Z++]=0;M.vertices[Z++]=1;M.vertices[Z++]=1;M.vertices[Z++]=-1;M.vertices[Z++]=1;M.vertices[Z++]=1;M.vertices[Z++]=1;M.vertices[Z++]=1;M.vertices[Z++]=1;M.vertices[Z++]=0;M.vertices[Z++]=-1;M.vertices[Z++]=1;M.vertices[Z++]=0;Z=
|
|
|
-M.vertices[Z++]=0;M.faces[Z++]=0;M.faces[Z++]=1;M.faces[Z++]=2;M.faces[Z++]=0;M.faces[Z++]=2;M.faces[Z++]=3;M.vertexBuffer=k.createBuffer();M.elementBuffer=k.createBuffer();k.bindBuffer(k.ARRAY_BUFFER,M.vertexBuffer);k.bufferData(k.ARRAY_BUFFER,M.vertices,k.STATIC_DRAW);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,M.elementBuffer);k.bufferData(k.ELEMENT_ARRAY_BUFFER,M.faces,k.STATIC_DRAW);M.program=k.createProgram();k.attachShader(M.program,aa("fragment",THREE.ShaderLib.sprite.fragmentShader));k.attachShader(M.program,
|
|
|
-aa("vertex",THREE.ShaderLib.sprite.vertexShader));k.linkProgram(M.program);M.attributes={};M.uniforms={};M.attributes.position=k.getAttribLocation(M.program,"position");M.attributes.uv=k.getAttribLocation(M.program,"uv");M.uniforms.uvOffset=k.getUniformLocation(M.program,"uvOffset");M.uniforms.uvScale=k.getUniformLocation(M.program,"uvScale");M.uniforms.rotation=k.getUniformLocation(M.program,"rotation");M.uniforms.scale=k.getUniformLocation(M.program,"scale");M.uniforms.alignment=k.getUniformLocation(M.program,
|
|
|
-"alignment");M.uniforms.map=k.getUniformLocation(M.program,"map");M.uniforms.opacity=k.getUniformLocation(M.program,"opacity");M.uniforms.useScreenCoordinates=k.getUniformLocation(M.program,"useScreenCoordinates");M.uniforms.affectedByDistance=k.getUniformLocation(M.program,"affectedByDistance");M.uniforms.screenPosition=k.getUniformLocation(M.program,"screenPosition");M.uniforms.modelViewMatrix=k.getUniformLocation(M.program,"modelViewMatrix");M.uniforms.projectionMatrix=k.getUniformLocation(M.program,
|
|
|
-"projectionMatrix");var ya=!1;this.setSize=function(b,e){Ba.width=b;Ba.height=e;this.setViewport(0,0,Ba.width,Ba.height)};this.setViewport=function(b,e,c,f){ja=b;oa=e;U=c;ha=f;k.viewport(ja,oa,U,ha)};this.setScissor=function(b,e,c,f){k.scissor(b,e,c,f)};this.enableScissorTest=function(b){b?k.enable(k.SCISSOR_TEST):k.disable(k.SCISSOR_TEST)};this.enableDepthBufferWrite=function(b){X=b;k.depthMask(b)};this.setClearColorHex=function(b,e){ka.setHex(b);qa=e;k.clearColor(ka.r,ka.g,ka.b,qa)};this.setClearColor=
|
|
|
-function(b,e){ka.copy(b);qa=e;k.clearColor(ka.r,ka.g,ka.b,qa)};this.clear=function(){k.clear(k.COLOR_BUFFER_BIT|k.DEPTH_BUFFER_BIT|k.STENCIL_BUFFER_BIT)};this.setStencilShadowDarkness=function(b){Y.darkness=b};this.getContext=function(){return k};this.initMaterial=function(b,e,c,f){var h,g,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 m=THREE.ShaderLib[j];b.uniforms=THREE.UniformsUtils.clone(m.uniforms);b.vertexShader=m.vertexShader;b.fragmentShader=m.fragmentShader}var o,n,p;o=p=m=0;for(n=e.length;o<n;o++)g=e[o],g instanceof THREE.SpotLight&&p++,g instanceof THREE.DirectionalLight&&p++,g instanceof THREE.PointLight&&
|
|
|
-m++;m+p<=4?o=p:(o=Math.ceil(4*p/(m+p)),m=4-o);g={directional:o,point:m};m=p=0;for(o=e.length;m<o;m++)n=e[m],n instanceof THREE.SpotLight&&n.castShadow&&p++;var t=50;if(f!==void 0&&f instanceof THREE.SkinnedMesh)t=f.bones.length;var u;a:{o=b.fragmentShader;n=b.vertexShader;var m=b.uniforms,e=b.attributes,c={map:!!b.map,envMap:!!b.envMap,lightMap:!!b.lightMap,vertexColors:b.vertexColors,fog:c,sizeAttenuation:b.sizeAttenuation,skinning:b.skinning,morphTargets:b.morphTargets,maxMorphTargets:this.maxMorphTargets,
|
|
|
-maxDirLights:g.directional,maxPointLights:g.point,maxBones:t,shadowMapEnabled:this.shadowMapEnabled&&f.receiveShadow,shadowMapSoft:this.shadowMapSoft,shadowMapWidth:this.shadowMapWidth,shadowMapHeight:this.shadowMapHeight,maxShadows:p},v,f=[];j?f.push(j):(f.push(o),f.push(n));for(v in c)f.push(v),f.push(c[v]);j=f.join();v=0;for(f=L.length;v<f;v++)if(L[v].code==j){u=L[v].program;break a}v=k.createProgram();f=[Ea?"#define VERTEX_TEXTURES":"","#define MAX_DIR_LIGHTS "+c.maxDirLights,"#define MAX_POINT_LIGHTS "+
|
|
|
+"scale");R.uniforms.rotation=k.getUniformLocation(R.program,"rotation");R.uniforms.screenPosition=k.getUniformLocation(R.program,"screenPosition");var va=!1,T={};T.vertices=new Float32Array(16);T.faces=new Uint16Array(6);W=0;T.vertices[W++]=-1;T.vertices[W++]=-1;T.vertices[W++]=0;T.vertices[W++]=1;T.vertices[W++]=1;T.vertices[W++]=-1;T.vertices[W++]=1;T.vertices[W++]=1;T.vertices[W++]=1;T.vertices[W++]=1;T.vertices[W++]=1;T.vertices[W++]=0;T.vertices[W++]=-1;T.vertices[W++]=1;T.vertices[W++]=0;W=
|
|
|
+T.vertices[W++]=0;T.faces[W++]=0;T.faces[W++]=1;T.faces[W++]=2;T.faces[W++]=0;T.faces[W++]=2;T.faces[W++]=3;T.vertexBuffer=k.createBuffer();T.elementBuffer=k.createBuffer();k.bindBuffer(k.ARRAY_BUFFER,T.vertexBuffer);k.bufferData(k.ARRAY_BUFFER,T.vertices,k.STATIC_DRAW);k.bindBuffer(k.ELEMENT_ARRAY_BUFFER,T.elementBuffer);k.bufferData(k.ELEMENT_ARRAY_BUFFER,T.faces,k.STATIC_DRAW);T.program=k.createProgram();k.attachShader(T.program,N("fragment",THREE.ShaderLib.sprite.fragmentShader));k.attachShader(T.program,
|
|
|
+N("vertex",THREE.ShaderLib.sprite.vertexShader));k.linkProgram(T.program);T.attributes={};T.uniforms={};T.attributes.position=k.getAttribLocation(T.program,"position");T.attributes.uv=k.getAttribLocation(T.program,"uv");T.uniforms.uvOffset=k.getUniformLocation(T.program,"uvOffset");T.uniforms.uvScale=k.getUniformLocation(T.program,"uvScale");T.uniforms.rotation=k.getUniformLocation(T.program,"rotation");T.uniforms.scale=k.getUniformLocation(T.program,"scale");T.uniforms.alignment=k.getUniformLocation(T.program,
|
|
|
+"alignment");T.uniforms.map=k.getUniformLocation(T.program,"map");T.uniforms.opacity=k.getUniformLocation(T.program,"opacity");T.uniforms.useScreenCoordinates=k.getUniformLocation(T.program,"useScreenCoordinates");T.uniforms.affectedByDistance=k.getUniformLocation(T.program,"affectedByDistance");T.uniforms.screenPosition=k.getUniformLocation(T.program,"screenPosition");T.uniforms.modelViewMatrix=k.getUniformLocation(T.program,"modelViewMatrix");T.uniforms.projectionMatrix=k.getUniformLocation(T.program,
|
|
|
+"projectionMatrix");var za=!1;this.setSize=function(b,e){Ba.width=b;Ba.height=e;this.setViewport(0,0,Ba.width,Ba.height)};this.setViewport=function(b,e,c,f){ja=b;na=e;V=c;U=f;k.viewport(ja,na,V,U)};this.setScissor=function(b,e,c,f){k.scissor(b,e,c,f)};this.enableScissorTest=function(b){b?k.enable(k.SCISSOR_TEST):k.disable(k.SCISSOR_TEST)};this.enableDepthBufferWrite=function(b){aa=b;k.depthMask(b)};this.setClearColorHex=function(b,e){ia.setHex(b);qa=e;k.clearColor(ia.r,ia.g,ia.b,qa)};this.setClearColor=
|
|
|
+function(b,e){ia.copy(b);qa=e;k.clearColor(ia.r,ia.g,ia.b,qa)};this.clear=function(){k.clear(k.COLOR_BUFFER_BIT|k.DEPTH_BUFFER_BIT|k.STENCIL_BUFFER_BIT)};this.setStencilShadowDarkness=function(b){Y.darkness=b};this.getContext=function(){return k};this.initMaterial=function(b,e,c,f){var h,g,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 m=THREE.ShaderLib[j];b.uniforms=THREE.UniformsUtils.clone(m.uniforms);b.vertexShader=m.vertexShader;b.fragmentShader=m.fragmentShader}var n,o,p;n=p=m=0;for(o=e.length;n<o;n++)g=e[n],g instanceof THREE.SpotLight&&p++,g instanceof THREE.DirectionalLight&&p++,g instanceof THREE.PointLight&&
|
|
|
+m++;m+p<=4?n=p:(n=Math.ceil(4*p/(m+p)),m=4-n);g={directional:n,point:m};m=p=0;for(n=e.length;m<n;m++)o=e[m],o instanceof THREE.SpotLight&&o.castShadow&&p++;var t=50;if(f!==void 0&&f instanceof THREE.SkinnedMesh)t=f.bones.length;var u;a:{n=b.fragmentShader;o=b.vertexShader;var m=b.uniforms,e=b.attributes,c={map:!!b.map,envMap:!!b.envMap,lightMap:!!b.lightMap,vertexColors:b.vertexColors,fog:c,sizeAttenuation:b.sizeAttenuation,skinning:b.skinning,morphTargets:b.morphTargets,maxMorphTargets:this.maxMorphTargets,
|
|
|
+maxDirLights:g.directional,maxPointLights:g.point,maxBones:t,shadowMapEnabled:this.shadowMapEnabled&&f.receiveShadow,shadowMapSoft:this.shadowMapSoft,shadowMapWidth:this.shadowMapWidth,shadowMapHeight:this.shadowMapHeight,maxShadows:p},v,f=[];j?f.push(j):(f.push(n),f.push(o));for(v in c)f.push(v),f.push(c[v]);j=f.join();v=0;for(f=K.length;v<f;v++)if(K[v].code==j){u=K[v].program;break a}v=k.createProgram();f=[Ea?"#define VERTEX_TEXTURES":"","#define MAX_DIR_LIGHTS "+c.maxDirLights,"#define MAX_POINT_LIGHTS "+
|
|
|
c.maxPointLights,"#define MAX_SHADOWS "+c.maxShadows,"#define MAX_BONES "+c.maxBones,c.map?"#define USE_MAP":"",c.envMap?"#define USE_ENVMAP":"",c.lightMap?"#define USE_LIGHTMAP":"",c.vertexColors?"#define USE_COLOR":"",c.skinning?"#define USE_SKINNING":"",c.morphTargets?"#define USE_MORPHTARGETS":"",c.shadowMapEnabled?"#define USE_SHADOWMAP":"",c.shadowMapSoft?"#define SHADOWMAP_SOFT":"",c.sizeAttenuation?"#define USE_SIZEATTENUATION":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nuniform mat4 cameraInverseMatrix;\nattribute vec3 position;\nattribute vec3 normal;\nattribute vec2 uv;\nattribute vec2 uv2;\n#ifdef USE_COLOR\nattribute vec3 color;\n#endif\n#ifdef USE_MORPHTARGETS\nattribute vec3 morphTarget0;\nattribute vec3 morphTarget1;\nattribute vec3 morphTarget2;\nattribute vec3 morphTarget3;\nattribute vec3 morphTarget4;\nattribute vec3 morphTarget5;\nattribute vec3 morphTarget6;\nattribute vec3 morphTarget7;\n#endif\n#ifdef USE_SKINNING\nattribute vec4 skinVertexA;\nattribute vec4 skinVertexB;\nattribute vec4 skinIndex;\nattribute vec4 skinWeight;\n#endif\n"].join("\n");
|
|
|
g=["#ifdef GL_ES\nprecision highp float;\n#endif","#define MAX_DIR_LIGHTS "+c.maxDirLights,"#define MAX_POINT_LIGHTS "+c.maxPointLights,"#define MAX_SHADOWS "+c.maxShadows,c.fog?"#define USE_FOG":"",c.fog instanceof THREE.FogExp2?"#define FOG_EXP2":"",c.map?"#define USE_MAP":"",c.envMap?"#define USE_ENVMAP":"",c.lightMap?"#define USE_LIGHTMAP":"",c.vertexColors?"#define USE_COLOR":"",c.shadowMapEnabled?"#define USE_SHADOWMAP":"",c.shadowMapSoft?"#define SHADOWMAP_SOFT":"",c.shadowMapSoft?"#define SHADOWMAP_WIDTH "+
|
|
|
-c.shadowMapWidth.toFixed(1):"",c.shadowMapSoft?"#define SHADOWMAP_HEIGHT "+c.shadowMapHeight.toFixed(1):"","uniform mat4 viewMatrix;\nuniform vec3 cameraPosition;\n"].join("\n");k.attachShader(v,aa("fragment",g+o));k.attachShader(v,aa("vertex",f+n));k.linkProgram(v);k.getProgramParameter(v,k.LINK_STATUS)||console.error("Could not initialise shader\nVALIDATE_STATUS: "+k.getProgramParameter(v,k.VALIDATE_STATUS)+", gl error ["+k.getError()+"]");v.uniforms={};v.attributes={};var w,f=["viewMatrix","modelViewMatrix",
|
|
|
-"projectionMatrix","normalMatrix","objectMatrix","cameraPosition","cameraInverseMatrix","boneGlobalMatrices","morphTargetInfluences"];for(w in m)f.push(w);w=f;f=0;for(m=w.length;f<m;f++)o=w[f],v.uniforms[o]=k.getUniformLocation(v,o);f=["position","normal","uv","uv2","tangent","color","skinVertexA","skinVertexB","skinIndex","skinWeight"];for(w=0;w<c.maxMorphTargets;w++)f.push("morphTarget"+w);for(u in e)f.push(u);u=f;w=0;for(e=u.length;w<e;w++)c=u[w],v.attributes[c]=k.getAttribLocation(v,c);L.push({program:v,
|
|
|
+c.shadowMapWidth.toFixed(1):"",c.shadowMapSoft?"#define SHADOWMAP_HEIGHT "+c.shadowMapHeight.toFixed(1):"","uniform mat4 viewMatrix;\nuniform vec3 cameraPosition;\n"].join("\n");k.attachShader(v,N("fragment",g+n));k.attachShader(v,N("vertex",f+o));k.linkProgram(v);k.getProgramParameter(v,k.LINK_STATUS)||console.error("Could not initialise shader\nVALIDATE_STATUS: "+k.getProgramParameter(v,k.VALIDATE_STATUS)+", gl error ["+k.getError()+"]");v.uniforms={};v.attributes={};var x,f=["viewMatrix","modelViewMatrix",
|
|
|
+"projectionMatrix","normalMatrix","objectMatrix","cameraPosition","cameraInverseMatrix","boneGlobalMatrices","morphTargetInfluences"];for(x in m)f.push(x);x=f;f=0;for(m=x.length;f<m;f++)n=x[f],v.uniforms[n]=k.getUniformLocation(v,n);f=["position","normal","uv","uv2","tangent","color","skinVertexA","skinVertexB","skinIndex","skinWeight"];for(x=0;x<c.maxMorphTargets;x++)f.push("morphTarget"+x);for(u in e)f.push(u);u=f;x=0;for(e=u.length;x<e;x++)c=u[x],v.attributes[c]=k.getAttribLocation(v,c);K.push({program:v,
|
|
|
code:j});u=v}b.program=u;u=b.program.attributes;u.position>=0&&k.enableVertexAttribArray(u.position);u.color>=0&&k.enableVertexAttribArray(u.color);u.normal>=0&&k.enableVertexAttribArray(u.normal);u.tangent>=0&&k.enableVertexAttribArray(u.tangent);b.skinning&&u.skinVertexA>=0&&u.skinVertexB>=0&&u.skinIndex>=0&&u.skinWeight>=0&&(k.enableVertexAttribArray(u.skinVertexA),k.enableVertexAttribArray(u.skinVertexB),k.enableVertexAttribArray(u.skinIndex),k.enableVertexAttribArray(u.skinWeight));if(b.attributes)for(h in b.attributes)u[h]!==
|
|
|
void 0&&u[h]>=0&&k.enableVertexAttribArray(u[h]);if(b.morphTargets)b.numSupportedMorphTargets=0,u.morphTarget0>=0&&(k.enableVertexAttribArray(u.morphTarget0),b.numSupportedMorphTargets++),u.morphTarget1>=0&&(k.enableVertexAttribArray(u.morphTarget1),b.numSupportedMorphTargets++),u.morphTarget2>=0&&(k.enableVertexAttribArray(u.morphTarget2),b.numSupportedMorphTargets++),u.morphTarget3>=0&&(k.enableVertexAttribArray(u.morphTarget3),b.numSupportedMorphTargets++),u.morphTarget4>=0&&(k.enableVertexAttribArray(u.morphTarget4),
|
|
|
-b.numSupportedMorphTargets++),u.morphTarget5>=0&&(k.enableVertexAttribArray(u.morphTarget5),b.numSupportedMorphTargets++),u.morphTarget6>=0&&(k.enableVertexAttribArray(u.morphTarget6),b.numSupportedMorphTargets++),u.morphTarget7>=0&&(k.enableVertexAttribArray(u.morphTarget7),b.numSupportedMorphTargets++)};this.render=function(b,c,n,C){var B,U,E,F,K,ha,J,L,ga=b.lights,M=b.fog;this.shadowMapEnabled&&x(b,c);T.data.vertices=0;T.data.faces=0;T.data.drawCalls=0;c.matrixAutoUpdate&&c.update(void 0,!0);b.update(void 0,
|
|
|
-!1,c);c.matrixWorldInverse.flattenToArray(wa);c.projectionMatrix.flattenToArray(za);ma.multiply(c.projectionMatrix,c.matrixWorldInverse);p(ma);this.initWebGLObjects(b);G(n);(this.autoClear||C)&&this.clear();K=b.__webglObjects.length;for(C=0;C<K;C++)if(B=b.__webglObjects[C],J=B.object,J.visible)if(!(J instanceof THREE.Mesh)||t(J)){if(J.matrixWorld.flattenToArray(J._objectMatrixArray),I(J,c,!0),v(B),B.render=!0,this.sortObjects)B.object.renderDepth?B.z=B.object.renderDepth:(Aa.copy(J.position),ma.multiplyVector3(Aa),
|
|
|
-B.z=Aa.z)}else B.render=!1;else B.render=!1;this.sortObjects&&b.__webglObjects.sort(u);ha=b.__webglObjectsImmediate.length;for(C=0;C<ha;C++)B=b.__webglObjectsImmediate[C],J=B.object,J.visible&&(J.matrixAutoUpdate&&J.matrixWorld.flattenToArray(J._objectMatrixArray),I(J,c,!0),o(B));if(b.overrideMaterial){h(b.overrideMaterial.depthTest);H(b.overrideMaterial.blending);for(C=0;C<K;C++)if(B=b.__webglObjects[C],B.render)J=B.object,L=B.buffer,j(J),f(c,ga,M,b.overrideMaterial,L,J);for(C=0;C<ha;C++)B=b.__webglObjectsImmediate[C],
|
|
|
-J=B.object,J.visible&&(j(J),U=e(c,ga,M,b.overrideMaterial,J),J.render(function(c){g(c,U,b.overrideMaterial.shading)}))}else{H(THREE.NormalBlending);for(C=0;C<K;C++)if(B=b.__webglObjects[C],B.render){J=B.object;L=B.buffer;E=B.opaque;j(J);for(B=0;B<E.count;B++)F=E.list[B],h(F.depthTest),m(F.polygonOffset,F.polygonOffsetFactor,F.polygonOffsetUnits),f(c,ga,M,F,L,J)}for(C=0;C<ha;C++)if(B=b.__webglObjectsImmediate[C],J=B.object,J.visible){E=B.opaque;j(J);for(B=0;B<E.count;B++)F=E.list[B],h(F.depthTest),
|
|
|
-m(F.polygonOffset,F.polygonOffsetFactor,F.polygonOffsetUnits),U=e(c,ga,M,F,J),J.render(function(b){g(b,U,F.shading)})}for(C=0;C<K;C++)if(B=b.__webglObjects[C],B.render){J=B.object;L=B.buffer;E=B.transparent;j(J);for(B=0;B<E.count;B++)F=E.list[B],H(F.blending),h(F.depthTest),m(F.polygonOffset,F.polygonOffsetFactor,F.polygonOffsetUnits),f(c,ga,M,F,L,J)}for(C=0;C<ha;C++)if(B=b.__webglObjectsImmediate[C],J=B.object,J.visible){E=B.transparent;j(J);for(B=0;B<E.count;B++)F=E.list[B],H(F.blending),h(F.depthTest),
|
|
|
-m(F.polygonOffset,F.polygonOffsetFactor,F.polygonOffsetUnits),U=e(c,ga,M,F,J),J.render(function(b){g(b,U,F.shading)})}}b.__webglSprites.length&&y(b,c);Pa&&b.__webglShadowVolumes.length&&b.lights.length&&z(b);b.__webglLensFlares.length&&w(b,c);n&&n.minFilter!==THREE.NearestFilter&&n.minFilter!==THREE.LinearFilter&&(k.bindTexture(k.TEXTURE_2D,n.__webglTexture),k.generateMipmap(k.TEXTURE_2D),k.bindTexture(k.TEXTURE_2D,null))};this.initWebGLObjects=function(b){if(!b.__webglObjects)b.__webglObjects=[],
|
|
|
+b.numSupportedMorphTargets++),u.morphTarget5>=0&&(k.enableVertexAttribArray(u.morphTarget5),b.numSupportedMorphTargets++),u.morphTarget6>=0&&(k.enableVertexAttribArray(u.morphTarget6),b.numSupportedMorphTargets++),u.morphTarget7>=0&&(k.enableVertexAttribArray(u.morphTarget7),b.numSupportedMorphTargets++)};this.render=function(b,c,o,B){var A,V,F,D,G,J,U,K,L=b.lights,ga=b.fog;this.shadowMapEnabled&&y(b,c);$.data.vertices=0;$.data.faces=0;$.data.drawCalls=0;c.matrixAutoUpdate&&c.update(void 0,!0);b.update(void 0,
|
|
|
+!1,c);c.matrixWorldInverse.flattenToArray(xa);c.projectionMatrix.flattenToArray(sa);ka.multiply(c.projectionMatrix,c.matrixWorldInverse);p(ka);this.initWebGLObjects(b);P(o);(this.autoClear||B)&&this.clear();G=b.__webglObjects.length;for(B=0;B<G;B++)if(A=b.__webglObjects[B],U=A.object,U.visible)if(!(U instanceof THREE.Mesh)||t(U)){if(U.matrixWorld.flattenToArray(U._objectMatrixArray),I(U,c,!0),v(A),A.render=!0,this.sortObjects)A.object.renderDepth?A.z=A.object.renderDepth:(Aa.copy(U.position),ka.multiplyVector3(Aa),
|
|
|
+A.z=Aa.z)}else A.render=!1;else A.render=!1;this.sortObjects&&b.__webglObjects.sort(u);J=b.__webglObjectsImmediate.length;for(B=0;B<J;B++)A=b.__webglObjectsImmediate[B],U=A.object,U.visible&&(U.matrixAutoUpdate&&U.matrixWorld.flattenToArray(U._objectMatrixArray),I(U,c,!0),n(A));if(b.overrideMaterial){h(b.overrideMaterial.depthTest);H(b.overrideMaterial.blending);for(B=0;B<G;B++)if(A=b.__webglObjects[B],A.render)U=A.object,K=A.buffer,j(U),f(c,L,ga,b.overrideMaterial,K,U);for(B=0;B<J;B++)A=b.__webglObjectsImmediate[B],
|
|
|
+U=A.object,U.visible&&(j(U),V=e(c,L,ga,b.overrideMaterial,U),U.render(function(c){g(c,V,b.overrideMaterial.shading)}))}else{H(THREE.NormalBlending);for(B=0;B<G;B++)if(A=b.__webglObjects[B],A.render){U=A.object;K=A.buffer;F=A.opaque;j(U);for(A=0;A<F.count;A++)D=F.list[A],h(D.depthTest),m(D.polygonOffset,D.polygonOffsetFactor,D.polygonOffsetUnits),f(c,L,ga,D,K,U)}for(B=0;B<J;B++)if(A=b.__webglObjectsImmediate[B],U=A.object,U.visible){F=A.opaque;j(U);for(A=0;A<F.count;A++)D=F.list[A],h(D.depthTest),
|
|
|
+m(D.polygonOffset,D.polygonOffsetFactor,D.polygonOffsetUnits),V=e(c,L,ga,D,U),U.render(function(b){g(b,V,D.shading)})}for(B=0;B<G;B++)if(A=b.__webglObjects[B],A.render){U=A.object;K=A.buffer;F=A.transparent;j(U);for(A=0;A<F.count;A++)D=F.list[A],H(D.blending),h(D.depthTest),m(D.polygonOffset,D.polygonOffsetFactor,D.polygonOffsetUnits),f(c,L,ga,D,K,U)}for(B=0;B<J;B++)if(A=b.__webglObjectsImmediate[B],U=A.object,U.visible){F=A.transparent;j(U);for(A=0;A<F.count;A++)D=F.list[A],H(D.blending),h(D.depthTest),
|
|
|
+m(D.polygonOffset,D.polygonOffsetFactor,D.polygonOffsetUnits),V=e(c,L,ga,D,U),U.render(function(b){g(b,V,D.shading)})}}b.__webglSprites.length&&C(b,c);Pa&&b.__webglShadowVolumes.length&&b.lights.length&&w(b);b.__webglLensFlares.length&&x(b,c);o&&o.minFilter!==THREE.NearestFilter&&o.minFilter!==THREE.LinearFilter&&(k.bindTexture(k.TEXTURE_2D,o.__webglTexture),k.generateMipmap(k.TEXTURE_2D),k.bindTexture(k.TEXTURE_2D,null))};this.initWebGLObjects=function(b){if(!b.__webglObjects)b.__webglObjects=[],
|
|
|
b.__webglObjectsImmediate=[],b.__webglShadowVolumes=[],b.__webglLensFlares=[],b.__webglSprites=[];for(;b.__objectsAdded.length;){var c=b.__objectsAdded[0],e=b,f=void 0,h=void 0,g=void 0;if(c._modelViewMatrix==void 0)c._modelViewMatrix=new THREE.Matrix4,c._normalMatrixArray=new Float32Array(9),c._modelViewMatrixArray=new Float32Array(16),c._objectMatrixArray=new Float32Array(16),c.matrixWorld.flattenToArray(c._objectMatrixArray);if(c instanceof THREE.Mesh)for(f in h=c.geometry,h.geometryGroups==void 0&&
|
|
|
-O(h),h.geometryGroups){g=h.geometryGroups[f];if(!g.__webglVertexBuffer){var j=g;j.__webglVertexBuffer=k.createBuffer();j.__webglNormalBuffer=k.createBuffer();j.__webglTangentBuffer=k.createBuffer();j.__webglColorBuffer=k.createBuffer();j.__webglUVBuffer=k.createBuffer();j.__webglUV2Buffer=k.createBuffer();j.__webglSkinVertexABuffer=k.createBuffer();j.__webglSkinVertexBBuffer=k.createBuffer();j.__webglSkinIndicesBuffer=k.createBuffer();j.__webglSkinWeightsBuffer=k.createBuffer();j.__webglFaceBuffer=
|
|
|
-k.createBuffer();j.__webglLineBuffer=k.createBuffer();if(j.numMorphTargets){var m=void 0,o=void 0;j.__webglMorphTargetsBuffers=[];m=0;for(o=j.numMorphTargets;m<o;m++)j.__webglMorphTargetsBuffers.push(k.createBuffer())}for(var j=g,m=c,n=void 0,p=void 0,t=void 0,u=t=void 0,v=void 0,w=void 0,x=w=o=0,y=t=p=void 0,z=y=p=n=void 0,t=void 0,u=m.geometry,v=u.faces,y=j.faces,n=0,p=y.length;n<p;n++)t=y[n],t=v[t],t instanceof THREE.Face3?(o+=3,w+=1,x+=3):t instanceof THREE.Face4&&(o+=4,w+=2,x+=4);for(var n=j,
|
|
|
-p=m,C=y=v=void 0,U=void 0,C=void 0,t=[],v=0,y=p.materials.length;v<y;v++)if(C=p.materials[v],C instanceof THREE.MeshFaceMaterial){C=0;for(l=n.materials.length;C<l;C++)(U=n.materials[C])&&t.push(U)}else(U=C)&&t.push(U);n=t;j.__materials=n;a:{v=p=void 0;y=n.length;for(p=0;p<y;p++)if(v=n[p],v.map||v.lightMap||v instanceof THREE.MeshShaderMaterial){p=!0;break a}p=!1}a:{y=v=void 0;t=n.length;for(v=0;v<t;v++)if(y=n[v],!(y instanceof THREE.MeshBasicMaterial&&!y.envMap||y instanceof THREE.MeshDepthMaterial)){y=
|
|
|
-y&&y.shading!=void 0&&y.shading==THREE.SmoothShading?THREE.SmoothShading:THREE.FlatShading;break a}y=!1}a:{t=v=void 0;C=n.length;for(v=0;v<C;v++)if(t=n[v],t.vertexColors){t=t.vertexColors;break a}t=!1}j.__vertexArray=new Float32Array(o*3);if(y)j.__normalArray=new Float32Array(o*3);if(u.hasTangents)j.__tangentArray=new Float32Array(o*4);if(t)j.__colorArray=new Float32Array(o*3);if(p){if(u.faceUvs.length>0||u.faceVertexUvs.length>0)j.__uvArray=new Float32Array(o*2);if(u.faceUvs.length>1||u.faceVertexUvs.length>
|
|
|
-1)j.__uv2Array=new Float32Array(o*2)}if(m.geometry.skinWeights.length&&m.geometry.skinIndices.length)j.__skinVertexAArray=new Float32Array(o*4),j.__skinVertexBArray=new Float32Array(o*4),j.__skinIndexArray=new Float32Array(o*4),j.__skinWeightArray=new Float32Array(o*4);j.__faceArray=new Uint16Array(w*3+(m.geometry.edgeFaces?m.geometry.edgeFaces.length*6:0));j.__lineArray=new Uint16Array(x*2);if(j.numMorphTargets){j.__morphTargetsArrays=[];u=0;for(v=j.numMorphTargets;u<v;u++)j.__morphTargetsArrays.push(new Float32Array(o*
|
|
|
-3))}j.__needsSmoothNormals=y==THREE.SmoothShading;j.__uvType=p;j.__vertexColorType=t;j.__normalType=y;j.__webglFaceCount=w*3+(m.geometry.edgeFaces?m.geometry.edgeFaces.length*6:0);j.__webglLineCount=x*2;u=0;for(v=n.length;u<v;u++)if(p=n[u],p.attributes){if(j.__webglCustomAttributes===void 0)j.__webglCustomAttributes={};for(a in p.attributes){t=p.attributes[a];y={};for(z in t)y[z]=t[z];if(!y.__webglInitialized||y.createUniqueBuffers)y.__webglInitialized=!0,w=1,y.type==="v2"?w=2:y.type==="v3"?w=3:y.type===
|
|
|
-"v4"?w=4:y.type==="c"&&(w=3),y.size=w,y.array=new Float32Array(o*w),y.buffer=k.createBuffer(),y.buffer.belongsToAttribute=a,t.needsUpdate=!0,y.__original=t;j.__webglCustomAttributes[a]=y}}j.__inittedArrays=!0;h.__dirtyVertices=!0;h.__dirtyMorphTargets=!0;h.__dirtyElements=!0;h.__dirtyUvs=!0;h.__dirtyNormals=!0;h.__dirtyTangents=!0;h.__dirtyColors=!0}c instanceof THREE.ShadowVolume?E(e.__webglShadowVolumes,g,c):E(e.__webglObjects,g,c)}else if(c instanceof THREE.LensFlare)E(e.__webglLensFlares,void 0,
|
|
|
-c);else if(c instanceof THREE.Ribbon){h=c.geometry;if(!h.__webglVertexBuffer)f=h,f.__webglVertexBuffer=k.createBuffer(),f.__webglColorBuffer=k.createBuffer(),f=h,g=f.vertices.length,f.__vertexArray=new Float32Array(g*3),f.__colorArray=new Float32Array(g*3),f.__webglVertexCount=g,h.__dirtyVertices=!0,h.__dirtyColors=!0;E(e.__webglObjects,h,c)}else if(c instanceof THREE.Line){h=c.geometry;if(!h.__webglVertexBuffer)f=h,f.__webglVertexBuffer=k.createBuffer(),f.__webglColorBuffer=k.createBuffer(),f=h,
|
|
|
-g=f.vertices.length,f.__vertexArray=new Float32Array(g*3),f.__colorArray=new Float32Array(g*3),f.__webglLineCount=g,h.__dirtyVertices=!0,h.__dirtyColors=!0;E(e.__webglObjects,h,c)}else if(c instanceof THREE.ParticleSystem){h=c.geometry;if(!h.__webglVertexBuffer){f=h;f.__webglVertexBuffer=k.createBuffer();f.__webglColorBuffer=k.createBuffer();f=h;g=c;j=f.vertices.length;f.__vertexArray=new Float32Array(j*3);f.__colorArray=new Float32Array(j*3);f.__sortArray=[];f.__webglParticleCount=j;f.__materials=
|
|
|
-g.materials;z=o=m=void 0;m=0;for(o=g.materials.length;m<o;m++)if(z=g.materials[m],z.attributes){if(f.__webglCustomAttributes===void 0)f.__webglCustomAttributes={};for(a in z.attributes){originalAttribute=z.attributes[a];attribute={};for(property in originalAttribute)attribute[property]=originalAttribute[property];if(!attribute.__webglInitialized||attribute.createUniqueBuffers)attribute.__webglInitialized=!0,size=1,attribute.type==="v2"?size=2:attribute.type==="v3"?size=3:attribute.type==="v4"?size=
|
|
|
-4:attribute.type==="c"&&(size=3),attribute.size=size,attribute.array=new Float32Array(j*size),attribute.buffer=k.createBuffer(),attribute.buffer.belongsToAttribute=a,originalAttribute.needsUpdate=!0,attribute.__original=originalAttribute;f.__webglCustomAttributes[a]=attribute}}h.__dirtyVertices=!0;h.__dirtyColors=!0}E(e.__webglObjects,h,c)}else THREE.MarchingCubes!==void 0&&c instanceof THREE.MarchingCubes?e.__webglObjectsImmediate.push({object:c,opaque:{list:[],count:0},transparent:{list:[],count:0}}):
|
|
|
-c instanceof THREE.Sprite&&e.__webglSprites.push(c);b.__objectsAdded.splice(0,1)}for(;b.__objectsRemoved.length;){e=b.__objectsRemoved[0];c=b;if(e instanceof THREE.ShadowVolume)B(c.__webglShadowVolumes,e);else if(e instanceof THREE.Mesh||e instanceof THREE.ParticleSystem||e instanceof THREE.Ribbon||e instanceof THREE.Line)B(c.__webglObjects,e);else if(e instanceof THREE.Sprite){c=c.__webglSprites;h=void 0;for(h=c.length-1;h>=0;h--)c[h]==e&&c.splice(h,1)}else e instanceof THREE.LensFlare?B(c.__webglLensFlares,
|
|
|
-e):e instanceof THREE.MarchingCubes&&B(c.__webglObjectsImmediate,e);b.__objectsRemoved.splice(0,1)}c=0;for(e=b.__webglObjects.length;c<e;c++)F(b.__webglObjects[c].object,b);c=0;for(e=b.__webglShadowVolumes.length;c<e;c++)F(b.__webglShadowVolumes[c].object,b);c=0;for(e=b.__webglLensFlares.length;c<e;c++)F(b.__webglLensFlares[c].object,b)};this.setFaceCulling=function(b,c){b?(!c||c=="ccw"?k.frontFace(k.CCW):k.frontFace(k.CW),b=="back"?k.cullFace(k.BACK):b=="front"?k.cullFace(k.FRONT):k.cullFace(k.FRONT_AND_BACK),
|
|
|
+X(h),h.geometryGroups){g=h.geometryGroups[f];if(!g.__webglVertexBuffer){var j=g;j.__webglVertexBuffer=k.createBuffer();j.__webglNormalBuffer=k.createBuffer();j.__webglTangentBuffer=k.createBuffer();j.__webglColorBuffer=k.createBuffer();j.__webglUVBuffer=k.createBuffer();j.__webglUV2Buffer=k.createBuffer();j.__webglSkinVertexABuffer=k.createBuffer();j.__webglSkinVertexBBuffer=k.createBuffer();j.__webglSkinIndicesBuffer=k.createBuffer();j.__webglSkinWeightsBuffer=k.createBuffer();j.__webglFaceBuffer=
|
|
|
+k.createBuffer();j.__webglLineBuffer=k.createBuffer();if(j.numMorphTargets){var m=void 0,n=void 0;j.__webglMorphTargetsBuffers=[];m=0;for(n=j.numMorphTargets;m<n;m++)j.__webglMorphTargetsBuffers.push(k.createBuffer())}for(var j=g,m=c,o=void 0,p=void 0,t=void 0,u=t=void 0,v=void 0,x=void 0,y=x=n=0,w=t=p=void 0,C=w=p=o=void 0,t=void 0,u=m.geometry,v=u.faces,w=j.faces,o=0,p=w.length;o<p;o++)t=w[o],t=v[t],t instanceof THREE.Face3?(n+=3,x+=1,y+=3):t instanceof THREE.Face4&&(n+=4,x+=2,y+=4);for(var o=j,
|
|
|
+p=m,B=w=v=void 0,D=void 0,B=void 0,t=[],v=0,w=p.materials.length;v<w;v++)if(B=p.materials[v],B instanceof THREE.MeshFaceMaterial){B=0;for(l=o.materials.length;B<l;B++)(D=o.materials[B])&&t.push(D)}else(D=B)&&t.push(D);o=t;j.__materials=o;a:{v=p=void 0;w=o.length;for(p=0;p<w;p++)if(v=o[p],v.map||v.lightMap||v instanceof THREE.MeshShaderMaterial){p=!0;break a}p=!1}a:{w=v=void 0;t=o.length;for(v=0;v<t;v++)if(w=o[v],!(w instanceof THREE.MeshBasicMaterial&&!w.envMap||w instanceof THREE.MeshDepthMaterial)){w=
|
|
|
+w&&w.shading!=void 0&&w.shading==THREE.SmoothShading?THREE.SmoothShading:THREE.FlatShading;break a}w=!1}a:{t=v=void 0;B=o.length;for(v=0;v<B;v++)if(t=o[v],t.vertexColors){t=t.vertexColors;break a}t=!1}j.__vertexArray=new Float32Array(n*3);if(w)j.__normalArray=new Float32Array(n*3);if(u.hasTangents)j.__tangentArray=new Float32Array(n*4);if(t)j.__colorArray=new Float32Array(n*3);if(p){if(u.faceUvs.length>0||u.faceVertexUvs.length>0)j.__uvArray=new Float32Array(n*2);if(u.faceUvs.length>1||u.faceVertexUvs.length>
|
|
|
+1)j.__uv2Array=new Float32Array(n*2)}if(m.geometry.skinWeights.length&&m.geometry.skinIndices.length)j.__skinVertexAArray=new Float32Array(n*4),j.__skinVertexBArray=new Float32Array(n*4),j.__skinIndexArray=new Float32Array(n*4),j.__skinWeightArray=new Float32Array(n*4);j.__faceArray=new Uint16Array(x*3+(m.geometry.edgeFaces?m.geometry.edgeFaces.length*6:0));j.__lineArray=new Uint16Array(y*2);if(j.numMorphTargets){j.__morphTargetsArrays=[];u=0;for(v=j.numMorphTargets;u<v;u++)j.__morphTargetsArrays.push(new Float32Array(n*
|
|
|
+3))}j.__needsSmoothNormals=w==THREE.SmoothShading;j.__uvType=p;j.__vertexColorType=t;j.__normalType=w;j.__webglFaceCount=x*3+(m.geometry.edgeFaces?m.geometry.edgeFaces.length*6:0);j.__webglLineCount=y*2;u=0;for(v=o.length;u<v;u++)if(p=o[u],p.attributes){if(j.__webglCustomAttributes===void 0)j.__webglCustomAttributes={};for(a in p.attributes){t=p.attributes[a];w={};for(C in t)w[C]=t[C];if(!w.__webglInitialized||w.createUniqueBuffers)w.__webglInitialized=!0,x=1,w.type==="v2"?x=2:w.type==="v3"?x=3:w.type===
|
|
|
+"v4"?x=4:w.type==="c"&&(x=3),w.size=x,w.array=new Float32Array(n*x),w.buffer=k.createBuffer(),w.buffer.belongsToAttribute=a,t.needsUpdate=!0,w.__original=t;j.__webglCustomAttributes[a]=w}}j.__inittedArrays=!0;h.__dirtyVertices=!0;h.__dirtyMorphTargets=!0;h.__dirtyElements=!0;h.__dirtyUvs=!0;h.__dirtyNormals=!0;h.__dirtyTangents=!0;h.__dirtyColors=!0}c instanceof THREE.ShadowVolume?G(e.__webglShadowVolumes,g,c):G(e.__webglObjects,g,c)}else if(c instanceof THREE.LensFlare)G(e.__webglLensFlares,void 0,
|
|
|
+c);else if(c instanceof THREE.Ribbon){h=c.geometry;if(!h.__webglVertexBuffer)f=h,f.__webglVertexBuffer=k.createBuffer(),f.__webglColorBuffer=k.createBuffer(),f=h,g=f.vertices.length,f.__vertexArray=new Float32Array(g*3),f.__colorArray=new Float32Array(g*3),f.__webglVertexCount=g,h.__dirtyVertices=!0,h.__dirtyColors=!0;G(e.__webglObjects,h,c)}else if(c instanceof THREE.Line){h=c.geometry;if(!h.__webglVertexBuffer)f=h,f.__webglVertexBuffer=k.createBuffer(),f.__webglColorBuffer=k.createBuffer(),f=h,
|
|
|
+g=f.vertices.length,f.__vertexArray=new Float32Array(g*3),f.__colorArray=new Float32Array(g*3),f.__webglLineCount=g,h.__dirtyVertices=!0,h.__dirtyColors=!0;G(e.__webglObjects,h,c)}else if(c instanceof THREE.ParticleSystem){h=c.geometry;if(!h.__webglVertexBuffer){f=h;f.__webglVertexBuffer=k.createBuffer();f.__webglColorBuffer=k.createBuffer();f=h;g=c;j=f.vertices.length;f.__vertexArray=new Float32Array(j*3);f.__colorArray=new Float32Array(j*3);f.__sortArray=[];f.__webglParticleCount=j;f.__materials=
|
|
|
+g.materials;C=n=m=void 0;m=0;for(n=g.materials.length;m<n;m++)if(C=g.materials[m],C.attributes){if(f.__webglCustomAttributes===void 0)f.__webglCustomAttributes={};for(a in C.attributes){originalAttribute=C.attributes[a];attribute={};for(property in originalAttribute)attribute[property]=originalAttribute[property];if(!attribute.__webglInitialized||attribute.createUniqueBuffers)attribute.__webglInitialized=!0,size=1,attribute.type==="v2"?size=2:attribute.type==="v3"?size=3:attribute.type==="v4"?size=
|
|
|
+4:attribute.type==="c"&&(size=3),attribute.size=size,attribute.array=new Float32Array(j*size),attribute.buffer=k.createBuffer(),attribute.buffer.belongsToAttribute=a,originalAttribute.needsUpdate=!0,attribute.__original=originalAttribute;f.__webglCustomAttributes[a]=attribute}}h.__dirtyVertices=!0;h.__dirtyColors=!0}G(e.__webglObjects,h,c)}else THREE.MarchingCubes!==void 0&&c instanceof THREE.MarchingCubes?e.__webglObjectsImmediate.push({object:c,opaque:{list:[],count:0},transparent:{list:[],count:0}}):
|
|
|
+c instanceof THREE.Sprite&&e.__webglSprites.push(c);b.__objectsAdded.splice(0,1)}for(;b.__objectsRemoved.length;){e=b.__objectsRemoved[0];c=b;if(e instanceof THREE.ShadowVolume)A(c.__webglShadowVolumes,e);else if(e instanceof THREE.Mesh||e instanceof THREE.ParticleSystem||e instanceof THREE.Ribbon||e instanceof THREE.Line)A(c.__webglObjects,e);else if(e instanceof THREE.Sprite){c=c.__webglSprites;h=void 0;for(h=c.length-1;h>=0;h--)c[h]==e&&c.splice(h,1)}else e instanceof THREE.LensFlare?A(c.__webglLensFlares,
|
|
|
+e):e instanceof THREE.MarchingCubes&&A(c.__webglObjectsImmediate,e);b.__objectsRemoved.splice(0,1)}c=0;for(e=b.__webglObjects.length;c<e;c++)F(b.__webglObjects[c].object,b);c=0;for(e=b.__webglShadowVolumes.length;c<e;c++)F(b.__webglShadowVolumes[c].object,b);c=0;for(e=b.__webglLensFlares.length;c<e;c++)F(b.__webglLensFlares[c].object,b)};this.setFaceCulling=function(b,c){b?(!c||c=="ccw"?k.frontFace(k.CCW):k.frontFace(k.CW),b=="back"?k.cullFace(k.BACK):b=="front"?k.cullFace(k.FRONT):k.cullFace(k.FRONT_AND_BACK),
|
|
|
k.enable(k.CULL_FACE)):k.disable(k.CULL_FACE)};this.supportsVertexTextures=function(){return Ea}};
|
|
|
THREE.WebGLRenderTarget=function(b,c,e){this.width=b;this.height=c;e=e||{};this.wrapS=e.wrapS!==void 0?e.wrapS:THREE.ClampToEdgeWrapping;this.wrapT=e.wrapT!==void 0?e.wrapT:THREE.ClampToEdgeWrapping;this.magFilter=e.magFilter!==void 0?e.magFilter:THREE.LinearFilter;this.minFilter=e.minFilter!==void 0?e.minFilter:THREE.LinearMipMapLinearFilter;this.offset=new THREE.Vector2(0,0);this.repeat=new THREE.Vector2(1,1);this.format=e.format!==void 0?e.format:THREE.RGBAFormat;this.type=e.type!==void 0?e.type:
|
|
|
THREE.UnsignedByteType;this.depthBuffer=e.depthBuffer!==void 0?e.depthBuffer:!0;this.stencilBuffer=e.stencilBuffer!==void 0?e.stencilBuffer:!0};THREE.RenderableVertex=function(){this.positionWorld=new THREE.Vector3;this.positionScreen=new THREE.Vector4;this.visible=!0};THREE.RenderableVertex.prototype.copy=function(b){this.positionWorld.copy(b.positionWorld);this.positionScreen.copy(b.positionScreen)};
|
|
@@ -357,13 +358,13 @@ THREE.RenderableFace4=function(){this.v1=new THREE.RenderableVertex;this.v2=new
|
|
|
THREE.RenderableObject=function(){this.z=this.object=null};THREE.RenderableParticle=function(){this.rotation=this.z=this.y=this.x=null;this.scale=new THREE.Vector2;this.materials=null};THREE.RenderableLine=function(){this.z=null;this.v1=new THREE.RenderableVertex;this.v2=new THREE.RenderableVertex;this.materials=null};
|
|
|
THREE.ColorUtils={adjustHSV:function(b,c,e,f){var g=THREE.ColorUtils.__hsv;THREE.ColorUtils.rgbToHsv(b,g);g.h=THREE.ColorUtils.clamp(g.h+c,0,1);g.s=THREE.ColorUtils.clamp(g.s+e,0,1);g.v=THREE.ColorUtils.clamp(g.v+f,0,1);b.setHSV(g.h,g.s,g.v)},rgbToHsv:function(b,c){var e=b.r,f=b.g,g=b.b,j=Math.max(Math.max(e,f),g),h=Math.min(Math.min(e,f),g);if(h==j)h=e=0;else{var m=j-h,h=m/j,e=e==j?(f-g)/m:f==j?2+(g-e)/m:4+(e-f)/m;e/=6;e<0&&(e+=1);e>1&&(e-=1)}c===void 0&&(c={h:0,s:0,v:0});c.h=e;c.s=h;c.v=j;return c},
|
|
|
clamp:function(b,c,e){return b<c?c:b>e?e:b}};THREE.ColorUtils.__hsv={h:0,s:0,v:0};
|
|
|
-THREE.GeometryUtils={merge:function(b,c){var e=c instanceof THREE.Mesh,f=b.vertices.length,g=e?c.geometry:c,j=b.vertices,h=g.vertices,m=b.faces,p=g.faces,t=b.faceVertexUvs[0],g=g.faceVertexUvs[0];e&&c.matrixAutoUpdate&&c.updateMatrix();for(var n=0,o=h.length;n<o;n++){var v=new THREE.Vertex(h[n].position.clone());e&&c.matrix.multiplyVector3(v.position);j.push(v)}n=0;for(o=p.length;n<o;n++){var h=p[n],u,x,z=h.vertexNormals,v=h.vertexColors;h instanceof THREE.Face3?u=new THREE.Face3(h.a+f,h.b+f,h.c+
|
|
|
-f):h instanceof THREE.Face4&&(u=new THREE.Face4(h.a+f,h.b+f,h.c+f,h.d+f));u.normal.copy(h.normal);e=0;for(j=z.length;e<j;e++)x=z[e],u.vertexNormals.push(x.clone());u.color.copy(h.color);e=0;for(j=v.length;e<j;e++)x=v[e],u.vertexColors.push(x.clone());u.materials=h.materials.slice();u.centroid.copy(h.centroid);m.push(u)}n=0;for(o=g.length;n<o;n++){f=g[n];m=[];e=0;for(j=f.length;e<j;e++)m.push(new THREE.UV(f[e].u,f[e].v));t.push(m)}},clone:function(b){var c=new THREE.Geometry,e,f=b.vertices,g=b.faces,
|
|
|
-j=b.faceVertexUvs[0],b=0;for(e=f.length;b<e;b++){var h=new THREE.Vertex(f[b].position.clone());c.vertices.push(h)}b=0;for(e=g.length;b<e;b++){var m=g[b],p,t,n=m.vertexNormals,o=m.vertexColors;m instanceof THREE.Face3?p=new THREE.Face3(m.a,m.b,m.c):m instanceof THREE.Face4&&(p=new THREE.Face4(m.a,m.b,m.c,m.d));p.normal.copy(m.normal);f=0;for(h=n.length;f<h;f++)t=n[f],p.vertexNormals.push(t.clone());p.color.copy(m.color);f=0;for(h=o.length;f<h;f++)t=o[f],p.vertexColors.push(t.clone());p.materials=m.materials.slice();
|
|
|
+THREE.GeometryUtils={merge:function(b,c){var e=c instanceof THREE.Mesh,f=b.vertices.length,g=e?c.geometry:c,j=b.vertices,h=g.vertices,m=b.faces,p=g.faces,t=b.faceVertexUvs[0],g=g.faceVertexUvs[0];e&&c.matrixAutoUpdate&&c.updateMatrix();for(var o=0,n=h.length;o<n;o++){var v=new THREE.Vertex(h[o].position.clone());e&&c.matrix.multiplyVector3(v.position);j.push(v)}o=0;for(n=p.length;o<n;o++){var h=p[o],u,y,w=h.vertexNormals,v=h.vertexColors;h instanceof THREE.Face3?u=new THREE.Face3(h.a+f,h.b+f,h.c+
|
|
|
+f):h instanceof THREE.Face4&&(u=new THREE.Face4(h.a+f,h.b+f,h.c+f,h.d+f));u.normal.copy(h.normal);e=0;for(j=w.length;e<j;e++)y=w[e],u.vertexNormals.push(y.clone());u.color.copy(h.color);e=0;for(j=v.length;e<j;e++)y=v[e],u.vertexColors.push(y.clone());u.materials=h.materials.slice();u.centroid.copy(h.centroid);m.push(u)}o=0;for(n=g.length;o<n;o++){f=g[o];m=[];e=0;for(j=f.length;e<j;e++)m.push(new THREE.UV(f[e].u,f[e].v));t.push(m)}},clone:function(b){var c=new THREE.Geometry,e,f=b.vertices,g=b.faces,
|
|
|
+j=b.faceVertexUvs[0],b=0;for(e=f.length;b<e;b++){var h=new THREE.Vertex(f[b].position.clone());c.vertices.push(h)}b=0;for(e=g.length;b<e;b++){var m=g[b],p,t,o=m.vertexNormals,n=m.vertexColors;m instanceof THREE.Face3?p=new THREE.Face3(m.a,m.b,m.c):m instanceof THREE.Face4&&(p=new THREE.Face4(m.a,m.b,m.c,m.d));p.normal.copy(m.normal);f=0;for(h=o.length;f<h;f++)t=o[f],p.vertexNormals.push(t.clone());p.color.copy(m.color);f=0;for(h=n.length;f<h;f++)t=n[f],p.vertexColors.push(t.clone());p.materials=m.materials.slice();
|
|
|
p.centroid.copy(m.centroid);c.faces.push(p)}b=0;for(e=j.length;b<e;b++){g=j[b];p=[];f=0;for(h=g.length;f<h;f++)p.push(new THREE.UV(g[f].u,g[f].v));c.faceVertexUvs[0].push(p)}return c},randomPointInTriangle:function(b,c,e){var f,g,j,h=new THREE.Vector3,m=THREE.GeometryUtils.__v1;f=Math.random();g=Math.random();f+g>1&&(f=1-f,g=1-g);j=1-f-g;h.copy(b);h.multiplyScalar(f);m.copy(c);m.multiplyScalar(g);h.addSelf(m);m.copy(e);m.multiplyScalar(j);h.addSelf(m);return h},randomPointInFace:function(b,c,e){var f,
|
|
|
g,j;if(b instanceof THREE.Face3)return f=c.vertices[b.a].position,g=c.vertices[b.b].position,j=c.vertices[b.c].position,THREE.GeometryUtils.randomPointInTriangle(f,g,j);else if(b instanceof THREE.Face4){f=c.vertices[b.a].position;g=c.vertices[b.b].position;j=c.vertices[b.c].position;var c=c.vertices[b.d].position,h;e?b._area1&&b._area2?(e=b._area1,h=b._area2):(e=THREE.GeometryUtils.triangleArea(f,g,c),h=THREE.GeometryUtils.triangleArea(g,j,c),b._area1=e,b._area2=h):(e=THREE.GeometryUtils.triangleArea(f,
|
|
|
-g,c),h=THREE.GeometryUtils.triangleArea(g,j,c));return Math.random()*(e+h)<e?THREE.GeometryUtils.randomPointInTriangle(f,g,c):THREE.GeometryUtils.randomPointInTriangle(g,j,c)}},randomPointsInGeometry:function(b,c){function e(b){function c(e,f){if(f<e)return e;var h=e+Math.floor((f-e)/2);return t[h]>b?c(e,h-1):t[h]<b?c(h+1,f):h}return c(0,t.length-1)}var f,g,j=b.faces,h=b.vertices,m=j.length,p=0,t=[],n,o,v,u;for(g=0;g<m;g++){f=j[g];if(f instanceof THREE.Face3)n=h[f.a].position,o=h[f.b].position,v=
|
|
|
-h[f.c].position,f._area=THREE.GeometryUtils.triangleArea(n,o,v);else if(f instanceof THREE.Face4)n=h[f.a].position,o=h[f.b].position,v=h[f.c].position,u=h[f.d].position,f._area1=THREE.GeometryUtils.triangleArea(n,o,u),f._area2=THREE.GeometryUtils.triangleArea(o,v,u),f._area=f._area1+f._area2;p+=f._area;t[g]=p}f=[];h={};for(g=0;g<c;g++)m=Math.random()*p,m=e(m),f[g]=THREE.GeometryUtils.randomPointInFace(j[m],b,!0),h[m]?h[m]+=1:h[m]=1;return f},triangleArea:function(b,c,e){var f,g=THREE.GeometryUtils.__v1;
|
|
|
+g,c),h=THREE.GeometryUtils.triangleArea(g,j,c));return Math.random()*(e+h)<e?THREE.GeometryUtils.randomPointInTriangle(f,g,c):THREE.GeometryUtils.randomPointInTriangle(g,j,c)}},randomPointsInGeometry:function(b,c){function e(b){function c(e,f){if(f<e)return e;var h=e+Math.floor((f-e)/2);return t[h]>b?c(e,h-1):t[h]<b?c(h+1,f):h}return c(0,t.length-1)}var f,g,j=b.faces,h=b.vertices,m=j.length,p=0,t=[],o,n,v,u;for(g=0;g<m;g++){f=j[g];if(f instanceof THREE.Face3)o=h[f.a].position,n=h[f.b].position,v=
|
|
|
+h[f.c].position,f._area=THREE.GeometryUtils.triangleArea(o,n,v);else if(f instanceof THREE.Face4)o=h[f.a].position,n=h[f.b].position,v=h[f.c].position,u=h[f.d].position,f._area1=THREE.GeometryUtils.triangleArea(o,n,u),f._area2=THREE.GeometryUtils.triangleArea(n,v,u),f._area=f._area1+f._area2;p+=f._area;t[g]=p}f=[];h={};for(g=0;g<c;g++)m=Math.random()*p,m=e(m),f[g]=THREE.GeometryUtils.randomPointInFace(j[m],b,!0),h[m]?h[m]+=1:h[m]=1;return f},triangleArea:function(b,c,e){var f,g=THREE.GeometryUtils.__v1;
|
|
|
g.sub(b,c);f=g.length();g.sub(b,e);b=g.length();g.sub(c,e);e=g.length();c=0.5*(f+b+e);return Math.sqrt(c*(c-f)*(c-b)*(c-e))}};THREE.GeometryUtils.__v1=new THREE.Vector3;
|
|
|
THREE.ImageUtils={loadTexture:function(b,c,e){var f=new Image,g=new THREE.Texture(f,c);f.onload=function(){g.needsUpdate=!0;e&&e(this)};f.crossOrigin="";f.src=b;return g},loadTextureCube:function(b,c,e){var f,g=[],j=new THREE.Texture(g,c),c=g.loadCount=0;for(f=b.length;c<f;++c)g[c]=new Image,g[c].onload=function(){g.loadCount+=1;if(g.loadCount==6)j.needsUpdate=!0;e&&e(this)},g[c].crossOrigin="",g[c].src=b[c];return j}};
|
|
|
THREE.SceneUtils={showHierarchy:function(b,c){THREE.SceneUtils.traverseHierarchy(b,function(b){b.visible=c})},traverseHierarchy:function(b,c){var e,f,g=b.children.length;for(f=0;f<g;f++)e=b.children[f],c(e),THREE.SceneUtils.traverseHierarchy(e,c)}};
|
|
@@ -378,19 +379,19 @@ film:{uniforms:{tDiffuse:{type:"t",value:0,texture:null},time:{type:"f",value:0}
|
|
|
screen:{uniforms:{tDiffuse:{type:"t",value:0,texture:null},opacity:{type:"f",value:1}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"varying vec2 vUv;\nuniform sampler2D tDiffuse;\nuniform float opacity;\nvoid main() {\nvec4 texel = texture2D( tDiffuse, vUv );\ngl_FragColor = opacity * texel;\n}"},basic:{uniforms:{},vertexShader:"void main() {\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",
|
|
|
fragmentShader:"void main() {\ngl_FragColor = vec4( 1.0, 0.0, 0.0, 0.5 );\n}"}},buildKernel:function(b){var c,e,f,g,j=2*Math.ceil(b*3)+1;j>25&&(j=25);g=(j-1)*0.5;e=Array(j);for(c=f=0;c<j;++c)e[c]=Math.exp(-((c-g)*(c-g))/(2*b*b)),f+=e[c];for(c=0;c<j;++c)e[c]/=f;return e}};
|
|
|
THREE.AnimationHandler=function(){var b=[],c={},e={update:function(c){for(var e=0;e<b.length;e++)b[e].update(c)},addToUpdate:function(c){b.indexOf(c)===-1&&b.push(c)},removeFromUpdate:function(c){c=b.indexOf(c);c!==-1&&b.splice(c,1)},add:function(b){c[b.name]!==void 0&&console.log("THREE.AnimationHandler.add: Warning! "+b.name+" already exists in library. Overwriting.");c[b.name]=b;if(b.initialized!==!0){for(var e=0;e<b.hierarchy.length;e++){for(var f=0;f<b.hierarchy[e].keys.length;f++){if(b.hierarchy[e].keys[f].time<
|
|
|
-0)b.hierarchy[e].keys[f].time=0;if(b.hierarchy[e].keys[f].rot!==void 0&&!(b.hierarchy[e].keys[f].rot instanceof THREE.Quaternion)){var m=b.hierarchy[e].keys[f].rot;b.hierarchy[e].keys[f].rot=new THREE.Quaternion(m[0],m[1],m[2],m[3])}}if(b.hierarchy[e].keys[0].morphTargets!==void 0){m={};for(f=0;f<b.hierarchy[e].keys.length;f++)for(var p=0;p<b.hierarchy[e].keys[f].morphTargets.length;p++){var t=b.hierarchy[e].keys[f].morphTargets[p];m[t]=-1}b.hierarchy[e].usedMorphTargets=m;for(f=0;f<b.hierarchy[e].keys.length;f++){var n=
|
|
|
-{};for(t in m){for(p=0;p<b.hierarchy[e].keys[f].morphTargets.length;p++)if(b.hierarchy[e].keys[f].morphTargets[p]===t){n[t]=b.hierarchy[e].keys[f].morphTargetsInfluences[p];break}p===b.hierarchy[e].keys[f].morphTargets.length&&(n[t]=0)}b.hierarchy[e].keys[f].morphTargetsInfluences=n}}for(f=1;f<b.hierarchy[e].keys.length;f++)b.hierarchy[e].keys[f].time===b.hierarchy[e].keys[f-1].time&&(b.hierarchy[e].keys.splice(f,1),f--);for(f=1;f<b.hierarchy[e].keys.length;f++)b.hierarchy[e].keys[f].index=f}f=parseInt(b.length*
|
|
|
+0)b.hierarchy[e].keys[f].time=0;if(b.hierarchy[e].keys[f].rot!==void 0&&!(b.hierarchy[e].keys[f].rot instanceof THREE.Quaternion)){var m=b.hierarchy[e].keys[f].rot;b.hierarchy[e].keys[f].rot=new THREE.Quaternion(m[0],m[1],m[2],m[3])}}if(b.hierarchy[e].keys[0].morphTargets!==void 0){m={};for(f=0;f<b.hierarchy[e].keys.length;f++)for(var p=0;p<b.hierarchy[e].keys[f].morphTargets.length;p++){var t=b.hierarchy[e].keys[f].morphTargets[p];m[t]=-1}b.hierarchy[e].usedMorphTargets=m;for(f=0;f<b.hierarchy[e].keys.length;f++){var o=
|
|
|
+{};for(t in m){for(p=0;p<b.hierarchy[e].keys[f].morphTargets.length;p++)if(b.hierarchy[e].keys[f].morphTargets[p]===t){o[t]=b.hierarchy[e].keys[f].morphTargetsInfluences[p];break}p===b.hierarchy[e].keys[f].morphTargets.length&&(o[t]=0)}b.hierarchy[e].keys[f].morphTargetsInfluences=o}}for(f=1;f<b.hierarchy[e].keys.length;f++)b.hierarchy[e].keys[f].time===b.hierarchy[e].keys[f-1].time&&(b.hierarchy[e].keys.splice(f,1),f--);for(f=1;f<b.hierarchy[e].keys.length;f++)b.hierarchy[e].keys[f].index=f}f=parseInt(b.length*
|
|
|
b.fps,10);b.JIT={};b.JIT.hierarchy=[];for(e=0;e<b.hierarchy.length;e++)b.JIT.hierarchy.push(Array(f));b.initialized=!0}},get:function(b){if(typeof b==="string")return c[b]?c[b]:(console.log("THREE.AnimationHandler.get: Couldn't find animation "+b),null)},parse:function(b){var c=[];if(b instanceof THREE.SkinnedMesh)for(var e=0;e<b.bones.length;e++)c.push(b.bones[e]);else f(b,c);return c}},f=function(b,c){c.push(b);for(var e=0;e<b.children.length;e++)f(b.children[e],c)};e.LINEAR=0;e.CATMULLROM=1;e.CATMULLROM_FORWARD=
|
|
|
2;return e}();THREE.Animation=function(b,c,e,f){this.root=b;this.data=THREE.AnimationHandler.get(c);this.hierarchy=THREE.AnimationHandler.parse(b);this.currentTime=0;this.timeScale=1;this.isPlaying=!1;this.loop=this.isPaused=!0;this.interpolationType=e!==void 0?e:THREE.AnimationHandler.LINEAR;this.JITCompile=f!==void 0?f:!0;this.points=[];this.target=new THREE.Vector3};
|
|
|
THREE.Animation.prototype.play=function(b,c){if(!this.isPlaying){this.isPlaying=!0;this.loop=b!==void 0?b:!0;this.currentTime=c!==void 0?c:0;var e,f=this.hierarchy.length,g;for(e=0;e<f;e++){g=this.hierarchy[e];if(this.interpolationType!==THREE.AnimationHandler.CATMULLROM_FORWARD)g.useQuaternion=!0;g.matrixAutoUpdate=!0;if(g.animationCache===void 0)g.animationCache={},g.animationCache.prevKey={pos:0,rot:0,scl:0},g.animationCache.nextKey={pos:0,rot:0,scl:0},g.animationCache.originalMatrix=g instanceof
|
|
|
THREE.Bone?g.skinMatrix:g.matrix;var j=g.animationCache.prevKey;g=g.animationCache.nextKey;j.pos=this.data.hierarchy[e].keys[0];j.rot=this.data.hierarchy[e].keys[0];j.scl=this.data.hierarchy[e].keys[0];g.pos=this.getNextKeyWith("pos",e,1);g.rot=this.getNextKeyWith("rot",e,1);g.scl=this.getNextKeyWith("scl",e,1)}this.update(0)}this.isPaused=!1;THREE.AnimationHandler.addToUpdate(this)};
|
|
|
THREE.Animation.prototype.pause=function(){this.isPaused?THREE.AnimationHandler.addToUpdate(this):THREE.AnimationHandler.removeFromUpdate(this);this.isPaused=!this.isPaused};
|
|
|
THREE.Animation.prototype.stop=function(){this.isPaused=this.isPlaying=!1;THREE.AnimationHandler.removeFromUpdate(this);for(var b=0;b<this.hierarchy.length;b++)if(this.hierarchy[b].animationCache!==void 0)this.hierarchy[b]instanceof THREE.Bone?this.hierarchy[b].skinMatrix=this.hierarchy[b].animationCache.originalMatrix:this.hierarchy[b].matrix=this.hierarchy[b].animationCache.originalMatrix,delete this.hierarchy[b].animationCache};
|
|
|
-THREE.Animation.prototype.update=function(b){if(this.isPlaying){var c=["pos","rot","scl"],e,f,g,j,h,m,p,t,n=this.data.JIT.hierarchy,o,v;this.currentTime+=b*this.timeScale;v=this.currentTime;o=this.currentTime%=this.data.length;t=parseInt(Math.min(o*this.data.fps,this.data.length*this.data.fps),10);for(var u=0,x=this.hierarchy.length;u<x;u++)if(b=this.hierarchy[u],p=b.animationCache,this.JITCompile&&n[u][t]!==void 0)b instanceof THREE.Bone?(b.skinMatrix=n[u][t],b.matrixAutoUpdate=!1,b.matrixWorldNeedsUpdate=
|
|
|
-!1):(b.matrix=n[u][t],b.matrixAutoUpdate=!1,b.matrixWorldNeedsUpdate=!0);else{if(this.JITCompile)b instanceof THREE.Bone?b.skinMatrix=b.animationCache.originalMatrix:b.matrix=b.animationCache.originalMatrix;for(var z=0;z<3;z++){e=c[z];h=p.prevKey[e];m=p.nextKey[e];if(m.time<=v){if(o<v)if(this.loop){h=this.data.hierarchy[u].keys[0];for(m=this.getNextKeyWith(e,u,1);m.time<o;)h=m,m=this.getNextKeyWith(e,u,m.index+1)}else{this.stop();return}else{do h=m,m=this.getNextKeyWith(e,u,m.index+1);while(m.time<
|
|
|
-o)}p.prevKey[e]=h;p.nextKey[e]=m}b.matrixAutoUpdate=!0;b.matrixWorldNeedsUpdate=!0;f=(o-h.time)/(m.time-h.time);g=h[e];j=m[e];if(f<0||f>1)console.log("THREE.Animation.update: Warning! Scale out of bounds:"+f+" on bone "+u),f=f<0?0:1;if(e==="pos")if(e=b.position,this.interpolationType===THREE.AnimationHandler.LINEAR)e.x=g[0]+(j[0]-g[0])*f,e.y=g[1]+(j[1]-g[1])*f,e.z=g[2]+(j[2]-g[2])*f;else{if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)if(this.points[0]=
|
|
|
+THREE.Animation.prototype.update=function(b){if(this.isPlaying){var c=["pos","rot","scl"],e,f,g,j,h,m,p,t,o=this.data.JIT.hierarchy,n,v;this.currentTime+=b*this.timeScale;v=this.currentTime;n=this.currentTime%=this.data.length;t=parseInt(Math.min(n*this.data.fps,this.data.length*this.data.fps),10);for(var u=0,y=this.hierarchy.length;u<y;u++)if(b=this.hierarchy[u],p=b.animationCache,this.JITCompile&&o[u][t]!==void 0)b instanceof THREE.Bone?(b.skinMatrix=o[u][t],b.matrixAutoUpdate=!1,b.matrixWorldNeedsUpdate=
|
|
|
+!1):(b.matrix=o[u][t],b.matrixAutoUpdate=!1,b.matrixWorldNeedsUpdate=!0);else{if(this.JITCompile)b instanceof THREE.Bone?b.skinMatrix=b.animationCache.originalMatrix:b.matrix=b.animationCache.originalMatrix;for(var w=0;w<3;w++){e=c[w];h=p.prevKey[e];m=p.nextKey[e];if(m.time<=v){if(n<v)if(this.loop){h=this.data.hierarchy[u].keys[0];for(m=this.getNextKeyWith(e,u,1);m.time<n;)h=m,m=this.getNextKeyWith(e,u,m.index+1)}else{this.stop();return}else{do h=m,m=this.getNextKeyWith(e,u,m.index+1);while(m.time<
|
|
|
+n)}p.prevKey[e]=h;p.nextKey[e]=m}b.matrixAutoUpdate=!0;b.matrixWorldNeedsUpdate=!0;f=(n-h.time)/(m.time-h.time);g=h[e];j=m[e];if(f<0||f>1)console.log("THREE.Animation.update: Warning! Scale out of bounds:"+f+" on bone "+u),f=f<0?0:1;if(e==="pos")if(e=b.position,this.interpolationType===THREE.AnimationHandler.LINEAR)e.x=g[0]+(j[0]-g[0])*f,e.y=g[1]+(j[1]-g[1])*f,e.z=g[2]+(j[2]-g[2])*f;else{if(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)if(this.points[0]=
|
|
|
this.getPrevKeyWith("pos",u,h.index-1).pos,this.points[1]=g,this.points[2]=j,this.points[3]=this.getNextKeyWith("pos",u,m.index+1).pos,f=f*0.33+0.33,g=this.interpolateCatmullRom(this.points,f),e.x=g[0],e.y=g[1],e.z=g[2],this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD)f=this.interpolateCatmullRom(this.points,f*1.01),this.target.set(f[0],f[1],f[2]),this.target.subSelf(e),this.target.y=0,this.target.normalize(),f=Math.atan2(this.target.x,this.target.z),b.rotation.set(0,f,0)}else if(e===
|
|
|
-"rot")THREE.Quaternion.slerp(g,j,b.quaternion,f);else if(e==="scl")e=b.scale,e.x=g[0]+(j[0]-g[0])*f,e.y=g[1]+(j[1]-g[1])*f,e.z=g[2]+(j[2]-g[2])*f}}if(this.JITCompile&&n[0][t]===void 0){this.hierarchy[0].update(void 0,!0);for(u=0;u<this.hierarchy.length;u++)n[u][t]=this.hierarchy[u]instanceof THREE.Bone?this.hierarchy[u].skinMatrix.clone():this.hierarchy[u].matrix.clone()}}};
|
|
|
+"rot")THREE.Quaternion.slerp(g,j,b.quaternion,f);else if(e==="scl")e=b.scale,e.x=g[0]+(j[0]-g[0])*f,e.y=g[1]+(j[1]-g[1])*f,e.z=g[2]+(j[2]-g[2])*f}}if(this.JITCompile&&o[0][t]===void 0){this.hierarchy[0].update(void 0,!0);for(u=0;u<this.hierarchy.length;u++)o[u][t]=this.hierarchy[u]instanceof THREE.Bone?this.hierarchy[u].skinMatrix.clone():this.hierarchy[u].matrix.clone()}}};
|
|
|
THREE.Animation.prototype.interpolateCatmullRom=function(b,c){var e=[],f=[],g,j,h,m,p,t;g=(b.length-1)*c;j=Math.floor(g);g-=j;e[0]=j==0?j:j-1;e[1]=j;e[2]=j>b.length-2?j:j+1;e[3]=j>b.length-3?j:j+2;j=b[e[0]];m=b[e[1]];p=b[e[2]];t=b[e[3]];e=g*g;h=g*e;f[0]=this.interpolate(j[0],m[0],p[0],t[0],g,e,h);f[1]=this.interpolate(j[1],m[1],p[1],t[1],g,e,h);f[2]=this.interpolate(j[2],m[2],p[2],t[2],g,e,h);return f};
|
|
|
THREE.Animation.prototype.interpolate=function(b,c,e,f,g,j,h){b=(e-b)*0.5;f=(f-c)*0.5;return(2*(c-e)+b+f)*h+(-3*(c-e)-2*b-f)*j+b*g+c};THREE.Animation.prototype.getNextKeyWith=function(b,c,e){var f=this.data.hierarchy[c].keys;for(this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD?e=e<f.length-1?e:f.length-1:e%=f.length;e<f.length;e++)if(f[e][b]!==void 0)return f[e];return this.data.hierarchy[c].keys[0]};
|
|
|
THREE.Animation.prototype.getPrevKeyWith=function(b,c,e){for(var f=this.data.hierarchy[c].keys,e=this.interpolationType===THREE.AnimationHandler.CATMULLROM||this.interpolationType===THREE.AnimationHandler.CATMULLROM_FORWARD?e>0?e:0:e>=0?e:e+f.length;e>=0;e--)if(f[e][b]!==void 0)return f[e];return this.data.hierarchy[c].keys[f.length-1]};
|
|
@@ -424,22 +425,22 @@ this.rollSpeed;this.translateX(this.moveVector.x*b);this.translateY(this.moveVec
|
|
|
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,e,f){THREE.Camera.call(this,b,c,e,f);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 g=new THREE.Vector3,j=new THREE.Vector3,h=new THREE.Vector3,m=new THREE.Matrix4,p=!1,t=1,n=0,o=0,v=0,u=0,x=0,z=window.innerWidth/2,y=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*x));b=this.delta*this.movementSpeed;this.translateZ(b*(n>0||this.autoForward&&!(n<0)?1:n));this.translateX(b*o);this.translateY(b*v);p&&(this.roll+=this.rollSpeed*this.delta*t);if(this.forward.y>this.constrainVertical[1])this.forward.y=this.constrainVertical[1],this.forward.normalize();
|
|
|
+THREE.RollCamera=function(b,c,e,f){THREE.Camera.call(this,b,c,e,f);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 g=new THREE.Vector3,j=new THREE.Vector3,h=new THREE.Vector3,m=new THREE.Matrix4,p=!1,t=1,o=0,n=0,v=0,u=0,y=0,w=window.innerWidth/2,C=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*y));b=this.delta*this.movementSpeed;this.translateZ(b*(o>0||this.autoForward&&!(o<0)?1:o));this.translateX(b*n);this.translateY(b*v);p&&(this.roll+=this.rollSpeed*this.delta*t);if(this.forward.y>this.constrainVertical[1])this.forward.y=this.constrainVertical[1],this.forward.normalize();
|
|
|
else if(this.forward.y<this.constrainVertical[0])this.forward.y=this.constrainVertical[0],this.forward.normalize();h.copy(this.forward);j.set(0,1,0);g.cross(j,h).normalize();j.cross(h,g).normalize();this.matrix.n11=g.x;this.matrix.n12=j.x;this.matrix.n13=h.x;this.matrix.n21=g.y;this.matrix.n22=j.y;this.matrix.n23=h.y;this.matrix.n31=g.z;this.matrix.n32=j.z;this.matrix.n33=h.z;m.identity();m.n11=Math.cos(this.roll);m.n12=-Math.sin(this.roll);m.n21=Math.sin(this.roll);m.n22=Math.cos(this.roll);this.matrix.multiplySelf(m);
|
|
|
this.matrixWorldNeedsUpdate=!0;this.matrix.n14=this.position.x;this.matrix.n24=this.position.y;this.matrix.n34=this.position.z;this.supr.update.call(this)};this.translateX=function(b){this.position.x+=this.matrix.n11*b;this.position.y+=this.matrix.n21*b;this.position.z+=this.matrix.n31*b};this.translateY=function(b){this.position.x+=this.matrix.n12*b;this.position.y+=this.matrix.n22*b;this.position.z+=this.matrix.n32*b};this.translateZ=function(b){this.position.x-=this.matrix.n13*b;this.position.y-=
|
|
|
this.matrix.n23*b;this.position.z-=this.matrix.n33*b};this.rotateHorizontally=function(b){g.set(this.matrix.n11,this.matrix.n21,this.matrix.n31);g.multiplyScalar(b);this.forward.subSelf(g);this.forward.normalize()};this.rotateVertically=function(b){j.set(this.matrix.n12,this.matrix.n22,this.matrix.n32);j.multiplyScalar(b);this.forward.addSelf(j);this.forward.normalize()};this.domElement.addEventListener("contextmenu",function(b){b.preventDefault()},!1);this.domElement.addEventListener("mousemove",
|
|
|
-function(b){u=(b.clientX-z)/window.innerWidth;x=(b.clientY-y)/window.innerHeight},!1);this.domElement.addEventListener("mousedown",function(b){b.preventDefault();b.stopPropagation();switch(b.button){case 0:n=1;break;case 2:n=-1}},!1);this.domElement.addEventListener("mouseup",function(b){b.preventDefault();b.stopPropagation();switch(b.button){case 0:n=0;break;case 2:n=0}},!1);this.domElement.addEventListener("keydown",function(b){switch(b.keyCode){case 38:case 87:n=1;break;case 37:case 65:o=-1;break;
|
|
|
-case 40:case 83:n=-1;break;case 39:case 68:o=1;break;case 81:p=!0;t=1;break;case 69:p=!0;t=-1;break;case 82:v=1;break;case 70:v=-1}},!1);this.domElement.addEventListener("keyup",function(b){switch(b.keyCode){case 38:case 87:n=0;break;case 37:case 65:o=0;break;case 40:case 83:n=0;break;case 39:case 68:o=0;break;case 81:p=!1;break;case 69:p=!1;break;case 82:v=0;break;case 70:v=0}},!1)};THREE.RollCamera.prototype=new THREE.Camera;THREE.RollCamera.prototype.constructor=THREE.RollCamera;
|
|
|
+function(b){u=(b.clientX-w)/window.innerWidth;y=(b.clientY-C)/window.innerHeight},!1);this.domElement.addEventListener("mousedown",function(b){b.preventDefault();b.stopPropagation();switch(b.button){case 0:o=1;break;case 2:o=-1}},!1);this.domElement.addEventListener("mouseup",function(b){b.preventDefault();b.stopPropagation();switch(b.button){case 0:o=0;break;case 2:o=0}},!1);this.domElement.addEventListener("keydown",function(b){switch(b.keyCode){case 38:case 87:o=1;break;case 37:case 65:n=-1;break;
|
|
|
+case 40:case 83:o=-1;break;case 39:case 68:n=1;break;case 81:p=!0;t=1;break;case 69:p=!0;t=-1;break;case 82:v=1;break;case 70:v=-1}},!1);this.domElement.addEventListener("keyup",function(b){switch(b.keyCode){case 38:case 87:o=0;break;case 37:case 65:n=0;break;case 40:case 83:o=0;break;case 39:case 68:n=0;break;case 81:p=!1;break;case 69:p=!1;break;case 82:v=0;break;case 70:v=0}},!1)};THREE.RollCamera.prototype=new THREE.Camera;THREE.RollCamera.prototype.constructor=THREE.RollCamera;
|
|
|
THREE.RollCamera.prototype.supr=THREE.Camera.prototype;
|
|
|
THREE.TrackballCamera=function(b){function c(b,c){return function(){c.apply(b,arguments)}}b=b||{};THREE.Camera.call(this,b.fov,b.aspect,b.near,b.far,b.target);this.domElement=b.domElement||document;this.screen=b.screen||{width:window.innerWidth,height:window.innerHeight,offsetLeft:0,offsetTop:0};this.radius=b.radius||(this.screen.width+this.screen.height)/4;this.rotateSpeed=b.rotateSpeed||1;this.zoomSpeed=b.zoomSpeed||1.2;this.panSpeed=b.panSpeed||0.3;this.noZoom=b.noZoom||!1;this.noPan=b.noPan||
|
|
|
-!1;this.staticMoving=b.staticMoving||!1;this.dynamicDampingFactor=b.dynamicDampingFactor||0.2;this.minDistance=b.minDistance||0;this.maxDistance=b.maxDistance||Infinity;this.keys=b.keys||[65,83,68];this.useTarget=!0;var e=!1,f=this.STATE.NONE,g=new THREE.Vector3,j=new THREE.Vector3,h=new THREE.Vector3,m=new THREE.Vector2,p=new THREE.Vector2,t=new THREE.Vector2,n=new THREE.Vector2;this.handleEvent=function(b){if(typeof this[b.type]=="function")this[b.type](b)};this.getMouseOnScreen=function(b,c){return new THREE.Vector2((b-
|
|
|
+!1;this.staticMoving=b.staticMoving||!1;this.dynamicDampingFactor=b.dynamicDampingFactor||0.2;this.minDistance=b.minDistance||0;this.maxDistance=b.maxDistance||Infinity;this.keys=b.keys||[65,83,68];this.useTarget=!0;var e=!1,f=this.STATE.NONE,g=new THREE.Vector3,j=new THREE.Vector3,h=new THREE.Vector3,m=new THREE.Vector2,p=new THREE.Vector2,t=new THREE.Vector2,o=new THREE.Vector2;this.handleEvent=function(b){if(typeof this[b.type]=="function")this[b.type](b)};this.getMouseOnScreen=function(b,c){return new THREE.Vector2((b-
|
|
|
this.screen.offsetLeft)/this.radius*0.5,(c-this.screen.offsetTop)/this.radius*0.5)};this.getMouseProjectionOnBall=function(b,c){var e=new THREE.Vector3((b-this.screen.width*0.5-this.screen.offsetLeft)/this.radius,(this.screen.height*0.5+this.screen.offsetTop-c)/this.radius,0),f=e.length();f>1?e.normalize():e.z=Math.sqrt(1-f*f);g=this.position.clone().subSelf(this.target.position);f=this.up.clone().setLength(e.y);f.addSelf(this.up.clone().crossSelf(g).setLength(e.x));f.addSelf(g.setLength(e.z));return f};
|
|
|
this.rotateCamera=function(){var b=Math.acos(j.dot(h)/j.length()/h.length());if(b){var c=(new THREE.Vector3).cross(j,h).normalize(),e=new THREE.Quaternion;b*=this.rotateSpeed;e.setFromAxisAngle(c,-b);e.multiplyVector3(g);e.multiplyVector3(this.up);e.multiplyVector3(h);this.staticMoving?j=h:(e.setFromAxisAngle(c,b*(this.dynamicDampingFactor-1)),e.multiplyVector3(j))}};this.zoomCamera=function(){var b=1+(p.y-m.y)*this.zoomSpeed;b!==1&&b>0&&(g.multiplyScalar(b),this.staticMoving?m=p:m.y+=(p.y-m.y)*this.dynamicDampingFactor)};
|
|
|
-this.panCamera=function(){var b=n.clone().subSelf(t);if(b.lengthSq()){b.multiplyScalar(g.length()*this.panSpeed);var c=g.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?t=n:t.addSelf(b.sub(n,t).multiplyScalar(this.dynamicDampingFactor))}};this.checkDistances=function(){if(!this.noZoom||!this.noPan)this.position.lengthSq()>this.maxDistance*this.maxDistance&&this.position.setLength(this.maxDistance),
|
|
|
+this.panCamera=function(){var b=o.clone().subSelf(t);if(b.lengthSq()){b.multiplyScalar(g.length()*this.panSpeed);var c=g.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?t=o:t.addSelf(b.sub(o,t).multiplyScalar(this.dynamicDampingFactor))}};this.checkDistances=function(){if(!this.noZoom||!this.noPan)this.position.lengthSq()>this.maxDistance*this.maxDistance&&this.position.setLength(this.maxDistance),
|
|
|
g.lengthSq()<this.minDistance*this.minDistance&&this.position.add(this.target.position,g.setLength(this.minDistance))};this.update=function(b,c,e){g=this.position.clone().subSelf(this.target.position);this.rotateCamera();this.noZoom||this.zoomCamera();this.noPan||this.panCamera();this.position.add(this.target.position,g);this.checkDistances();this.supr.update.call(this,b,c,e)};this.domElement.addEventListener("contextmenu",function(b){b.preventDefault()},!1);this.domElement.addEventListener("mousemove",
|
|
|
-c(this,function(b){e&&(j=h=this.getMouseProjectionOnBall(b.clientX,b.clientY),m=p=this.getMouseOnScreen(b.clientX,b.clientY),t=n=this.getMouseOnScreen(b.clientX,b.clientY),e=!1);f!==this.STATE.NONE&&(f===this.STATE.ROTATE?h=this.getMouseProjectionOnBall(b.clientX,b.clientY):f===this.STATE.ZOOM&&!this.noZoom?p=this.getMouseOnScreen(b.clientX,b.clientY):f===this.STATE.PAN&&!this.noPan&&(n=this.getMouseOnScreen(b.clientX,b.clientY)))}),!1);this.domElement.addEventListener("mousedown",c(this,function(b){b.preventDefault();
|
|
|
-b.stopPropagation();if(f===this.STATE.NONE)f=b.button,f===this.STATE.ROTATE?j=h=this.getMouseProjectionOnBall(b.clientX,b.clientY):f===this.STATE.ZOOM&&!this.noZoom?m=p=this.getMouseOnScreen(b.clientX,b.clientY):this.noPan||(t=n=this.getMouseOnScreen(b.clientX,b.clientY))}),!1);this.domElement.addEventListener("mouseup",c(this,function(b){b.preventDefault();b.stopPropagation();f=this.STATE.NONE}),!1);window.addEventListener("keydown",c(this,function(b){if(f===this.STATE.NONE){if(b.keyCode===this.keys[this.STATE.ROTATE])f=
|
|
|
+c(this,function(b){e&&(j=h=this.getMouseProjectionOnBall(b.clientX,b.clientY),m=p=this.getMouseOnScreen(b.clientX,b.clientY),t=o=this.getMouseOnScreen(b.clientX,b.clientY),e=!1);f!==this.STATE.NONE&&(f===this.STATE.ROTATE?h=this.getMouseProjectionOnBall(b.clientX,b.clientY):f===this.STATE.ZOOM&&!this.noZoom?p=this.getMouseOnScreen(b.clientX,b.clientY):f===this.STATE.PAN&&!this.noPan&&(o=this.getMouseOnScreen(b.clientX,b.clientY)))}),!1);this.domElement.addEventListener("mousedown",c(this,function(b){b.preventDefault();
|
|
|
+b.stopPropagation();if(f===this.STATE.NONE)f=b.button,f===this.STATE.ROTATE?j=h=this.getMouseProjectionOnBall(b.clientX,b.clientY):f===this.STATE.ZOOM&&!this.noZoom?m=p=this.getMouseOnScreen(b.clientX,b.clientY):this.noPan||(t=o=this.getMouseOnScreen(b.clientX,b.clientY))}),!1);this.domElement.addEventListener("mouseup",c(this,function(b){b.preventDefault();b.stopPropagation();f=this.STATE.NONE}),!1);window.addEventListener("keydown",c(this,function(b){if(f===this.STATE.NONE){if(b.keyCode===this.keys[this.STATE.ROTATE])f=
|
|
|
this.STATE.ROTATE;else if(b.keyCode===this.keys[this.STATE.ZOOM]&&!this.noZoom)f=this.STATE.ZOOM;else if(b.keyCode===this.keys[this.STATE.PAN]&&!this.noPan)f=this.STATE.PAN;f!==this.STATE.NONE&&(e=!0)}}),!1);window.addEventListener("keyup",c(this,function(){if(f!==this.STATE.NONE)f=this.STATE.NONE}),!1)};THREE.TrackballCamera.prototype=new THREE.Camera;THREE.TrackballCamera.prototype.constructor=THREE.TrackballCamera;THREE.TrackballCamera.prototype.supr=THREE.Camera.prototype;
|
|
|
THREE.TrackballCamera.prototype.STATE={NONE:-1,ROTATE:0,ZOOM:1,PAN:2};THREE.QuakeCamera=THREE.FirstPersonCamera;THREE.Curve=function(){};THREE.Curve.prototype.getPoint=function(){console.log("Warning, getPoint() not implemented!");return null};THREE.Curve.prototype.getPointAt=function(b){return this.getPoint(this.getUtoTmapping(b))};THREE.Curve.prototype.getPoints=function(b){b||(b=5);var c,e=[];for(c=0;c<=b;c++)e.push(this.getPoint(c/b));return e};
|
|
|
THREE.Curve.prototype.getSpacedPoints=function(b){b||(b=5);var c,e=[];for(c=0;c<=b;c++)e.push(this.getPointAt(c/b));return e};THREE.Curve.prototype.getLength=function(){var b=this.getLengths();return b[b.length-1]};THREE.Curve.prototype.getLengths=function(b){b||(b=200);if(this.cacheLengths&&this.cacheLengths.length==b)return this.cacheLengths;var c=[],e,f=this.getPoint(0),g,j=0;for(g=1;g<=b;g++)e=this.getPoint(g/b),j+=e.distanceTo(f),c.push(j),f=e;return this.cacheLengths=c};
|
|
@@ -458,63 +459,64 @@ THREE.Path.prototype.quadraticCurveTo=function(b,c,e,f){var g=Array.prototype.sl
|
|
|
THREE.Path.prototype.bezierCurveTo=function(b,c,e,f,g,j){var h=Array.prototype.slice.call(arguments),m=this.actions[this.actions.length-1].args,m=new THREE.CubicBezierCurve(m[m.length-2],m[m.length-1],b,c,e,f,g,j);this.curves.push(m);this.actions.push({action:THREE.PathActions.BEZIER_CURVE_TO,args:h,curve:m})};
|
|
|
THREE.Path.prototype.splineThru=function(b){var c=Array.prototype.slice.call(arguments),e=this.actions[this.actions.length-1].args,e=[new THREE.Vector2(e[e.length-2],e[e.length-1])],e=e.concat(b),e=new THREE.SplineCurve(e);this.curves.push(e);this.actions.push({action:THREE.PathActions.CSPLINE_THRU,args:c,curve:e})};
|
|
|
THREE.Path.prototype.arc=function(b,c,e,f,g,j){var h=Array.prototype.slice.call(arguments);this.curves.push(new THREE.ArcCurve(b,c,e,f,g,j));this.actions.push({action:THREE.PathActions.ARC,args:h})};THREE.Path.prototype.getSpacedPoints=function(b,c){b||(b=40);for(var e=[],f=0;f<b;f++)e.push(this.getPoint(f/b));c&&e.push(e[0]);return e};
|
|
|
-THREE.Path.prototype.getPoints=function(b,c){var b=b||12,e=[],f,g,j,h,m,p,t,n,o,v,u,x,z;f=0;for(g=this.actions.length;f<g;f++)switch(j=this.actions[f],h=j.action,j=j.args,h){case THREE.PathActions.LINE_TO:e.push(new THREE.Vector2(j[0],j[1]));break;case THREE.PathActions.QUADRATIC_CURVE_TO:m=j[2];p=j[3];o=j[0];v=j[1];e.length>0?(h=e[e.length-1],u=h.x,x=h.y):(h=this.actions[f-1].args,u=h[h.length-2],x=h[h.length-1]);for(h=1;h<=b;h++)z=h/b,j=THREE.Shape.Utils.b2(z,u,o,m),z=THREE.Shape.Utils.b2(z,x,v,
|
|
|
-p),e.push(new THREE.Vector2(j,z));break;case THREE.PathActions.BEZIER_CURVE_TO:m=j[4];p=j[5];o=j[0];v=j[1];t=j[2];n=j[3];e.length>0?(h=e[e.length-1],u=h.x,x=h.y):(h=this.actions[f-1].args,u=h[h.length-2],x=h[h.length-1]);for(h=1;h<=b;h++)z=h/b,j=THREE.Shape.Utils.b3(z,u,o,t,m),z=THREE.Shape.Utils.b3(z,x,v,n,p),e.push(new THREE.Vector2(j,z));break;case THREE.PathActions.CSPLINE_THRU:h=this.actions[f-1].args;h=[new THREE.Vector2(h[h.length-2],h[h.length-1])];z=b*j[0].length;h=h.concat(j[0]);j=new THREE.SplineCurve(h);
|
|
|
-for(h=1;h<=z;h++)e.push(j.getPointAt(h/z));break;case THREE.PathActions.ARC:h=this.actions[f-1].args;m=j[0];p=j[1];t=j[2];o=j[3];z=j[4];v=!!j[5];n=h[h.length-2];u=h[h.length-1];h.length==0&&(n=u=0);x=z-o;var y=b*2;for(h=1;h<=y;h++)z=h/y,v||(z=1-z),z=o+z*x,j=n+m+t*Math.cos(z),z=u+p+t*Math.sin(z),e.push(new THREE.Vector2(j,z))}c&&e.push(e[0]);return e};
|
|
|
-THREE.Path.prototype.getMinAndMax=function(){var b=this.getPoints(),c,e,f,g;c=e=Number.NEGATIVE_INFINITY;f=g=Number.POSITIVE_INFINITY;var j,h,m;h=0;for(m=b.length;h<m;h++){j=b[h];if(j.x>c)c=j.x;else if(j.x<f)f=j.x;if(j.y>e)e=j.y;else if(j.y<e)g=j.y}return{minX:f,minY:g,maxX:c,maxY:e}};THREE.Path.prototype.getPoint=function(b){for(var c=b*this.getLength(),e=this.sums,b=0;b<e.length;){if(e[b]>=c)return c=e[b]-c,b=this.curves[b],c=1-c/b.getLength(),b.getPointAt(c);b++}return null};
|
|
|
-THREE.Path.prototype.getLength=function(){var b=[],c=0,e,f=this.curves.length;for(e=0;e<f;e++)c+=this.curves[e].getLength(),b.push(c);this.sums=b;return c};THREE.Path.prototype.createPointsGeometry=function(b){return this.createGeometry(this.getPoints(b,!0))};THREE.Path.prototype.createSpacedPointsGeometry=function(b){return this.createGeometry(this.getSpacedPoints(b,!0))};
|
|
|
-THREE.Path.prototype.createGeometry=function(b){for(var c=new THREE.Geometry,e=0;e<b.length;e++)c.vertices.push(new THREE.Vertex(new THREE.Vector3(b[e].x,b[e].y,0)));return c};
|
|
|
-THREE.Path.prototype.transform=function(b){b=new THREE.Path;b.moveTo(0,0);b.quadraticCurveTo(100,20,140,80);console.log(b.cacheArcLengths());var c=this.getMinAndMax(),e=this.getPoints(),f,g,j,h,m,p;f=0;for(g=e.length;f<g;f++)j=e[f],h=j.x,m=j.y,p=h/c.maxX,h=b.getPoint(p),m=b.getNormalVector(p).multiplyScalar(m),j.x=h.x+m.x,j.y=h.y+m.y;return e};
|
|
|
-THREE.Path.prototype.nltransform=function(b,c,e,f,g,j){var h=this.getPoints(),m,p,t,n,o;m=0;for(p=h.length;m<p;m++)t=h[m],n=t.x,o=t.y,t.x=b*n+c*o+e,t.y=f*o+g*n+j;return h};
|
|
|
-THREE.Path.prototype.debug=function(b){var c=this.getMinAndMax();b||(b=document.createElement("canvas"),b.setAttribute("width",c.maxX+100),b.setAttribute("height",c.maxY+100),document.body.appendChild(b));c=b.getContext("2d");c.fillStyle="white";c.fillRect(0,0,b.width,b.height);c.strokeStyle="black";c.beginPath();var e,f,g,b=0;for(e=this.actions.length;b<e;b++)f=this.actions[b],g=f.args,f=f.action,f!=THREE.PathActions.CSPLINE_THRU&&c[f].apply(c,g);c.stroke();c.closePath();c.strokeStyle="red";f=this.getPoints();
|
|
|
-b=0;for(e=f.length;b<e;b++)g=f[b],c.beginPath(),c.arc(g.x,g.y,1.5,0,Math.PI*2,!1),c.stroke(),c.closePath()};
|
|
|
+THREE.Path.prototype.getPoints=function(b,c){var b=b||12,e=[],f,g,j,h,m,p,t,o,n,v,u,y,w;f=0;for(g=this.actions.length;f<g;f++)switch(j=this.actions[f],h=j.action,j=j.args,h){case THREE.PathActions.LINE_TO:e.push(new THREE.Vector2(j[0],j[1]));break;case THREE.PathActions.QUADRATIC_CURVE_TO:m=j[2];p=j[3];n=j[0];v=j[1];e.length>0?(h=e[e.length-1],u=h.x,y=h.y):(h=this.actions[f-1].args,u=h[h.length-2],y=h[h.length-1]);for(h=1;h<=b;h++)w=h/b,j=THREE.Shape.Utils.b2(w,u,n,m),w=THREE.Shape.Utils.b2(w,y,v,
|
|
|
+p),e.push(new THREE.Vector2(j,w));break;case THREE.PathActions.BEZIER_CURVE_TO:m=j[4];p=j[5];n=j[0];v=j[1];t=j[2];o=j[3];e.length>0?(h=e[e.length-1],u=h.x,y=h.y):(h=this.actions[f-1].args,u=h[h.length-2],y=h[h.length-1]);for(h=1;h<=b;h++)w=h/b,j=THREE.Shape.Utils.b3(w,u,n,t,m),w=THREE.Shape.Utils.b3(w,y,v,o,p),e.push(new THREE.Vector2(j,w));break;case THREE.PathActions.CSPLINE_THRU:h=this.actions[f-1].args;h=[new THREE.Vector2(h[h.length-2],h[h.length-1])];w=b*j[0].length;h=h.concat(j[0]);j=new THREE.SplineCurve(h);
|
|
|
+for(h=1;h<=w;h++)e.push(j.getPointAt(h/w));break;case THREE.PathActions.ARC:h=this.actions[f-1].args;m=j[0];p=j[1];t=j[2];n=j[3];w=j[4];v=!!j[5];o=h[h.length-2];u=h[h.length-1];h.length==0&&(o=u=0);y=w-n;var C=b*2;for(h=1;h<=C;h++)w=h/C,v||(w=1-w),w=n+w*y,j=o+m+t*Math.cos(w),w=u+p+t*Math.sin(w),e.push(new THREE.Vector2(j,w))}c&&e.push(e[0]);return e};
|
|
|
+THREE.Path.prototype.getBoundingBox=function(){var b=this.getPoints(),c,e,f,g;c=e=Number.NEGATIVE_INFINITY;f=g=Number.POSITIVE_INFINITY;var j,h,m,p;p=new THREE.Vector2;h=0;for(m=b.length;h<m;h++){j=b[h];if(j.x>c)c=j.x;else if(j.x<f)f=j.x;if(j.y>e)e=j.y;else if(j.y<e)g=j.y;p.addSelf(j.x,j.y)}return{minX:f,minY:g,maxX:c,maxY:e,centroid:p.divideScalar(m)}};
|
|
|
+THREE.Path.prototype.getPoint=function(b){for(var c=b*this.getLength(),e=this.sums,b=0;b<e.length;){if(e[b]>=c)return c=e[b]-c,b=this.curves[b],c=1-c/b.getLength(),b.getPointAt(c);b++}return null};THREE.Path.prototype.getLength=function(){var b=[],c=0,e,f=this.curves.length;for(e=0;e<f;e++)c+=this.curves[e].getLength(),b.push(c);this.sums=b;return c};THREE.Path.prototype.createPointsGeometry=function(b){return this.createGeometry(this.getPoints(b,!0))};
|
|
|
+THREE.Path.prototype.createSpacedPointsGeometry=function(b){return this.createGeometry(this.getSpacedPoints(b,!0))};THREE.Path.prototype.createGeometry=function(b){for(var c=new THREE.Geometry,e=0;e<b.length;e++)c.vertices.push(new THREE.Vertex(new THREE.Vector3(b[e].x,b[e].y,0)));return c};
|
|
|
+THREE.Path.prototype.transform=function(b){b=new THREE.Path;b.moveTo(0,0);b.quadraticCurveTo(100,20,140,80);console.log(b.cacheArcLengths());var c=this.getBoundingBox(),e=this.getPoints(),f,g,j,h,m,p;f=0;for(g=e.length;f<g;f++)j=e[f],h=j.x,m=j.y,p=h/c.maxX,h=b.getPoint(p),m=b.getNormalVector(p).multiplyScalar(m),j.x=h.x+m.x,j.y=h.y+m.y;return e};
|
|
|
+THREE.Path.prototype.nltransform=function(b,c,e,f,g,j){var h=this.getPoints(),m,p,t,o,n;m=0;for(p=h.length;m<p;m++)t=h[m],o=t.x,n=t.y,t.x=b*o+c*n+e,t.y=f*n+g*o+j;return h};
|
|
|
+THREE.Path.prototype.debug=function(b){var c=this.getBoundingBox();b||(b=document.createElement("canvas"),b.setAttribute("width",c.maxX+100),b.setAttribute("height",c.maxY+100),document.body.appendChild(b));c=b.getContext("2d");c.fillStyle="white";c.fillRect(0,0,b.width,b.height);c.strokeStyle="black";c.beginPath();var e,f,g,b=0;for(e=this.actions.length;b<e;b++)f=this.actions[b],g=f.args,f=f.action,f!=THREE.PathActions.CSPLINE_THRU&&c[f].apply(c,g);c.stroke();c.closePath();c.strokeStyle="red";f=
|
|
|
+this.getPoints();b=0;for(e=f.length;b<e;b++)g=f[b],c.beginPath(),c.arc(g.x,g.y,1.5,0,Math.PI*2,!1),c.stroke(),c.closePath()};
|
|
|
THREE.Path.prototype.toShapes=function(){var b,c,e,f,g=[],j=new THREE.Path;b=0;for(c=this.actions.length;b<c;b++)e=this.actions[b],f=e.args,e=e.action,e==THREE.PathActions.MOVE_TO&&j.actions.length!=0&&(g.push(j),j=new THREE.Path),j[e].apply(j,f);j.actions.length!=0&&g.push(j);if(g.length==0)return[];var h,j=[];if(THREE.Shape.Utils.isClockWise(g[0].getPoints())){b=0;for(c=g.length;b<c;b++)f=g[b],THREE.Shape.Utils.isClockWise(f.getPoints())?(h&&j.push(h),h=new THREE.Shape,h.actions=f.actions,h.curves=
|
|
|
f.curves):h.holes.push(f);j.push(h)}else{h=new THREE.Shape;b=0;for(c=g.length;b<c;b++)f=g[b],THREE.Shape.Utils.isClockWise(f.getPoints())?(h.actions=f.actions,h.curves=f.curves,j.push(h),h=new THREE.Shape):h.holes.push(f)}return j};THREE.Shape=function(){THREE.Path.apply(this,arguments);this.holes=[]};THREE.Shape.prototype=new THREE.Path;THREE.Shape.prototype.constructor=THREE.Path;THREE.Shape.prototype.extrude=function(b){return new THREE.ExtrudeGeometry(this,b)};
|
|
|
THREE.Shape.prototype.getPointsHoles=function(){var b,c=this.holes.length,e=[];for(b=0;b<c;b++)e[b]=this.holes[b].getPoints();return e};THREE.Shape.prototype.getSpacedPointsHoles=function(){var b,c=this.holes.length,e=[];for(b=0;b<c;b++)e[b]=this.holes[b].getSpacedPoints();return e};THREE.Shape.prototype.extractAllPoints=function(){return{shape:this.getPoints(),holes:this.getPointsHoles()}};THREE.Shape.prototype.extractAllSpacedPoints=function(){return{shape:this.getSpacedPoints(),holes:this.getSpacedPointsHoles()}};
|
|
|
-THREE.Shape.Utils={removeHoles:function(b,c){var e=b.concat(),f=e.concat(),g,j,h,m,p,t,n,o,v,u,x=[];for(p=0;p<c.length;p++){t=c[p];f=f.concat(t);j=Number.POSITIVE_INFINITY;for(g=0;g<t.length;g++){v=t[g];u=[];for(o=0;o<e.length;o++)n=e[o],n=v.distanceTo(n),u.push(n),n<j&&(j=n,h=g,m=o)}g=m-1>=0?m-1:e.length-1;j=h-1>=0?h-1:t.length-1;var z=[t[h],e[m],e[g]];o=THREE.FontUtils.Triangulate.area(z);var y=[t[h],t[j],e[m]];v=THREE.FontUtils.Triangulate.area(y);u=m;n=h;m+=1;h+=-1;m<0&&(m+=e.length);m%=e.length;
|
|
|
-h<0&&(h+=t.length);h%=t.length;g=m-1>=0?m-1:e.length-1;j=h-1>=0?h-1:t.length-1;z=[t[h],e[m],e[g]];z=THREE.FontUtils.Triangulate.area(z);y=[t[h],t[j],e[m]];y=THREE.FontUtils.Triangulate.area(y);o+v>z+y&&(m=u,h=n,m<0&&(m+=e.length),m%=e.length,h<0&&(h+=t.length),h%=t.length,g=m-1>=0?m-1:e.length-1,j=h-1>=0?h-1:t.length-1);o=e.slice(0,m);v=e.slice(m);u=t.slice(h);n=t.slice(0,h);j=[t[h],t[j],e[m]];x.push([t[h],e[m],e[g]]);x.push(j);e=o.concat(u).concat(n).concat(v)}return{shape:e,isolatedPts:x,allpoints:f}},
|
|
|
-triangulateShape:function(b,c){var e=THREE.Shape.Utils.removeHoles(b,c),f=e.allpoints,g=e.isolatedPts,e=THREE.FontUtils.Triangulate(e.shape,!1),j,h,m,p;for(j=0;j<e.length;j++){p=e[j];for(h=0;h<3;h++)for(m=0;m<f.length;m++)f[m].equals(p[h])&&(p[h]=m)}for(j=0;j<g.length;j++){p=g[j];for(h=0;h<3;h++)for(m=0;m<f.length;m++)f[m].equals(p[h])&&(p[h]=m)}return e.concat(g)},isClockWise:function(b){return THREE.FontUtils.Triangulate.area(b)<0},b2p0:function(b,c){var e=1-b;return e*e*c},b2p1:function(b,c){return 2*
|
|
|
-(1-b)*b*c},b2p2:function(b,c){return b*b*c},b2:function(b,c,e,f){return this.b2p0(b,c)+this.b2p1(b,e)+this.b2p2(b,f)},b3p0:function(b,c){var e=1-b;return e*e*e*c},b3p1:function(b,c){var e=1-b;return 3*e*e*b*c},b3p2:function(b,c){return 3*(1-b)*b*b*c},b3p3:function(b,c){return b*b*b*c},b3:function(b,c,e,f,g){return this.b3p0(b,c)+this.b3p1(b,e)+this.b3p2(b,f)+this.b3p3(b,g)}};THREE.TextPath=function(b,c){THREE.Path.call(this);this.parameters=c||{};this.set(b)};
|
|
|
+THREE.Shape.Utils={removeHoles:function(b,c){var e=b.concat(),f=e.concat(),g,j,h,m,p,t,o,n,v,u,y=[];for(p=0;p<c.length;p++){t=c[p];f=f.concat(t);j=Number.POSITIVE_INFINITY;for(g=0;g<t.length;g++){v=t[g];u=[];for(n=0;n<e.length;n++)o=e[n],o=v.distanceToSquared(o),u.push(o),o<j&&(j=o,h=g,m=n)}g=m-1>=0?m-1:e.length-1;j=h-1>=0?h-1:t.length-1;var w=[t[h],e[m],e[g]];n=THREE.FontUtils.Triangulate.area(w);var C=[t[h],t[j],e[m]];v=THREE.FontUtils.Triangulate.area(C);u=m;o=h;m+=1;h+=-1;m<0&&(m+=e.length);m%=
|
|
|
+e.length;h<0&&(h+=t.length);h%=t.length;g=m-1>=0?m-1:e.length-1;j=h-1>=0?h-1:t.length-1;w=[t[h],e[m],e[g]];w=THREE.FontUtils.Triangulate.area(w);C=[t[h],t[j],e[m]];C=THREE.FontUtils.Triangulate.area(C);n+v>w+C&&(m=u,h=o,m<0&&(m+=e.length),m%=e.length,h<0&&(h+=t.length),h%=t.length,g=m-1>=0?m-1:e.length-1,j=h-1>=0?h-1:t.length-1);n=e.slice(0,m);v=e.slice(m);u=t.slice(h);o=t.slice(0,h);j=[t[h],t[j],e[m]];y.push([t[h],e[m],e[g]]);y.push(j);e=n.concat(u).concat(o).concat(v)}return{shape:e,isolatedPts:y,
|
|
|
+allpoints:f}},triangulateShape:function(b,c){var e=THREE.Shape.Utils.removeHoles(b,c),f=e.allpoints,g=e.isolatedPts,e=THREE.FontUtils.Triangulate(e.shape,!1),j,h,m,p;for(j=0;j<e.length;j++){p=e[j];for(h=0;h<3;h++)for(m=0;m<f.length;m++)f[m].equals(p[h])&&(p[h]=m)}for(j=0;j<g.length;j++){p=g[j];for(h=0;h<3;h++)for(m=0;m<f.length;m++)f[m].equals(p[h])&&(p[h]=m)}return e.concat(g)},isClockWise:function(b){return THREE.FontUtils.Triangulate.area(b)<0},b2p0:function(b,c){var e=1-b;return e*e*c},b2p1:function(b,
|
|
|
+c){return 2*(1-b)*b*c},b2p2:function(b,c){return b*b*c},b2:function(b,c,e,f){return this.b2p0(b,c)+this.b2p1(b,e)+this.b2p2(b,f)},b3p0:function(b,c){var e=1-b;return e*e*e*c},b3p1:function(b,c){var e=1-b;return 3*e*e*b*c},b3p2:function(b,c){return 3*(1-b)*b*b*c},b3p3:function(b,c){return b*b*b*c},b3:function(b,c,e,f,g){return this.b3p0(b,c)+this.b3p1(b,e)+this.b3p2(b,f)+this.b3p3(b,g)}};THREE.TextPath=function(b,c){THREE.Path.call(this);this.parameters=c||{};this.set(b)};
|
|
|
THREE.TextPath.prototype.set=function(b,c){this.text=b;var c=c||this.parameters,e=c.curveSegments!==void 0?c.curveSegments:4,f=c.font!==void 0?c.font:"helvetiker",g=c.weight!==void 0?c.weight:"normal",j=c.style!==void 0?c.style:"normal";THREE.FontUtils.size=c.size!==void 0?c.size:100;THREE.FontUtils.divisions=e;THREE.FontUtils.face=f;THREE.FontUtils.weight=g;THREE.FontUtils.style=j};
|
|
|
THREE.TextPath.prototype.toShapes=function(){for(var b=THREE.FontUtils.drawText(this.text).paths,c=[],e=0,f=b.length;e<f;e++)c=c.concat(b[e].toShapes());return c};
|
|
|
-THREE.CubeGeometry=function(b,c,e,f,g,j,h,m,p){function t(b,c,e,h,m,o,p,t){var u,v,x=f||1,z=g||1,G=m/2,aa=o/2,Q=n.vertices.length;if(b=="x"&&c=="y"||b=="y"&&c=="x")u="z";else if(b=="x"&&c=="z"||b=="z"&&c=="x")u="y",z=j||1;else if(b=="z"&&c=="y"||b=="y"&&c=="z")u="x",x=j||1;var S=x+1,T=z+1;m/=x;var k=o/z;for(v=0;v<T;v++)for(o=0;o<S;o++){var L=new THREE.Vector3;L[b]=(o*m-G)*e;L[c]=(v*k-aa)*h;L[u]=p;n.vertices.push(new THREE.Vertex(L))}for(v=0;v<z;v++)for(o=0;o<x;o++)n.faces.push(new THREE.Face4(o+S*
|
|
|
-v+Q,o+S*(v+1)+Q,o+1+S*(v+1)+Q,o+1+S*v+Q,null,null,t)),n.faceVertexUvs[0].push([new THREE.UV(o/x,v/z),new THREE.UV(o/x,(v+1)/z),new THREE.UV((o+1)/x,(v+1)/z),new THREE.UV((o+1)/x,v/z)])}THREE.Geometry.call(this);var n=this,o=b/2,v=c/2,u=e/2,m=m?-1:1;if(h!==void 0)if(h instanceof Array)this.materials=h;else{this.materials=[];for(var x=0;x<6;x++)this.materials.push([h])}else this.materials=[];this.sides={px:!0,nx:!0,py:!0,ny:!0,pz:!0,nz:!0};if(p!=void 0)for(var z in p)this.sides[z]!=void 0&&(this.sides[z]=
|
|
|
-p[z]);this.sides.px&&t("z","y",1*m,-1,e,c,-o,this.materials[0]);this.sides.nx&&t("z","y",-1*m,-1,e,c,o,this.materials[1]);this.sides.py&&t("x","z",1*m,1,b,e,v,this.materials[2]);this.sides.ny&&t("x","z",1*m,-1,b,e,-v,this.materials[3]);this.sides.pz&&t("x","y",1*m,-1,b,c,u,this.materials[4]);this.sides.nz&&t("x","y",-1*m,-1,b,c,-u,this.materials[5]);(function(){for(var b=[],c=[],e=0,f=n.vertices.length;e<f;e++){for(var h=n.vertices[e],g=!1,j=0,m=b.length;j<m;j++){var o=b[j];if(h.position.x==o.position.x&&
|
|
|
-h.position.y==o.position.y&&h.position.z==o.position.z){c[e]=j;g=!0;break}}if(!g)c[e]=b.length,b.push(new THREE.Vertex(h.position.clone()))}e=0;for(f=n.faces.length;e<f;e++)h=n.faces[e],h.a=c[h.a],h.b=c[h.b],h.c=c[h.c],h.d=c[h.d];n.vertices=b})();this.computeCentroids();this.computeFaceNormals()};THREE.CubeGeometry.prototype=new THREE.Geometry;THREE.CubeGeometry.prototype.constructor=THREE.CubeGeometry;
|
|
|
-THREE.CylinderGeometry=function(b,c,e,f,g,j){function h(b,c,e){m.vertices.push(new THREE.Vertex(new THREE.Vector3(b,c,e)))}THREE.Geometry.call(this);var m=this,p,t=Math.PI*2,n=f/2;for(p=0;p<b;p++)h(Math.sin(t*p/b)*c,Math.cos(t*p/b)*c,-n);for(p=0;p<b;p++)h(Math.sin(t*p/b)*e,Math.cos(t*p/b)*e,n);for(p=0;p<b;p++)m.faces.push(new THREE.Face4(p,p+b,b+(p+1)%b,(p+1)%b));if(e>0){h(0,0,-n-(j||0));for(p=b;p<b+b/2;p++)m.faces.push(new THREE.Face4(2*b,(2*p-2*b)%b,(2*p-2*b+1)%b,(2*p-2*b+2)%b))}if(c>0){h(0,0,n+
|
|
|
-(g||0));for(p=b+b/2;p<2*b;p++)m.faces.push(new THREE.Face4(2*b+1,(2*p-2*b+2)%b+b,(2*p-2*b+1)%b+b,(2*p-2*b)%b+b))}p=0;for(b=this.faces.length;p<b;p++){var c=[],e=this.faces[p],g=this.vertices[e.a],j=this.vertices[e.b],n=this.vertices[e.c],o=this.vertices[e.d];c.push(new THREE.UV(0.5+Math.atan2(g.position.x,g.position.y)/t,0.5+g.position.z/f));c.push(new THREE.UV(0.5+Math.atan2(j.position.x,j.position.y)/t,0.5+j.position.z/f));c.push(new THREE.UV(0.5+Math.atan2(n.position.x,n.position.y)/t,0.5+n.position.z/
|
|
|
-f));e instanceof THREE.Face4&&c.push(new THREE.UV(0.5+Math.atan2(o.position.x,o.position.y)/t,0.5+o.position.z/f));this.faceVertexUvs[0].push(c)}this.computeCentroids();this.computeFaceNormals()};THREE.CylinderGeometry.prototype=new THREE.Geometry;THREE.CylinderGeometry.prototype.constructor=THREE.CylinderGeometry;THREE.ExtrudeGeometry=function(b,c){if(typeof b!="undefined"){THREE.Geometry.call(this);var b=b instanceof Array?b:[b],e,f=b.length,g;for(e=0;e<f;e++)g=b[e],this.addShape(g,c)}};
|
|
|
+THREE.CubeGeometry=function(b,c,e,f,g,j,h,m,p){function t(b,c,e,h,m,n,p,t){var u,v,w=f||1,y=g||1,P=m/2,N=n/2,Q=o.vertices.length;if(b=="x"&&c=="y"||b=="y"&&c=="x")u="z";else if(b=="x"&&c=="z"||b=="z"&&c=="x")u="y",y=j||1;else if(b=="z"&&c=="y"||b=="y"&&c=="z")u="x",w=j||1;var S=w+1,$=y+1;m/=w;var k=n/y;for(v=0;v<$;v++)for(n=0;n<S;n++){var K=new THREE.Vector3;K[b]=(n*m-P)*e;K[c]=(v*k-N)*h;K[u]=p;o.vertices.push(new THREE.Vertex(K))}for(v=0;v<y;v++)for(n=0;n<w;n++)o.faces.push(new THREE.Face4(n+S*v+
|
|
|
+Q,n+S*(v+1)+Q,n+1+S*(v+1)+Q,n+1+S*v+Q,null,null,t)),o.faceVertexUvs[0].push([new THREE.UV(n/w,v/y),new THREE.UV(n/w,(v+1)/y),new THREE.UV((n+1)/w,(v+1)/y),new THREE.UV((n+1)/w,v/y)])}THREE.Geometry.call(this);var o=this,n=b/2,v=c/2,u=e/2,m=m?-1:1;if(h!==void 0)if(h instanceof Array)this.materials=h;else{this.materials=[];for(var y=0;y<6;y++)this.materials.push([h])}else this.materials=[];this.sides={px:!0,nx:!0,py:!0,ny:!0,pz:!0,nz:!0};if(p!=void 0)for(var w in p)this.sides[w]!=void 0&&(this.sides[w]=
|
|
|
+p[w]);this.sides.px&&t("z","y",1*m,-1,e,c,-n,this.materials[0]);this.sides.nx&&t("z","y",-1*m,-1,e,c,n,this.materials[1]);this.sides.py&&t("x","z",1*m,1,b,e,v,this.materials[2]);this.sides.ny&&t("x","z",1*m,-1,b,e,-v,this.materials[3]);this.sides.pz&&t("x","y",1*m,-1,b,c,u,this.materials[4]);this.sides.nz&&t("x","y",-1*m,-1,b,c,-u,this.materials[5]);(function(){for(var b=[],c=[],e=0,f=o.vertices.length;e<f;e++){for(var h=o.vertices[e],g=!1,j=0,m=b.length;j<m;j++){var n=b[j];if(h.position.x==n.position.x&&
|
|
|
+h.position.y==n.position.y&&h.position.z==n.position.z){c[e]=j;g=!0;break}}if(!g)c[e]=b.length,b.push(new THREE.Vertex(h.position.clone()))}e=0;for(f=o.faces.length;e<f;e++)h=o.faces[e],h.a=c[h.a],h.b=c[h.b],h.c=c[h.c],h.d=c[h.d];o.vertices=b})();this.computeCentroids();this.computeFaceNormals()};THREE.CubeGeometry.prototype=new THREE.Geometry;THREE.CubeGeometry.prototype.constructor=THREE.CubeGeometry;
|
|
|
+THREE.CylinderGeometry=function(b,c,e,f,g,j){function h(b,c,e){m.vertices.push(new THREE.Vertex(new THREE.Vector3(b,c,e)))}THREE.Geometry.call(this);var m=this,p,t=Math.PI*2,o=f/2;for(p=0;p<b;p++)h(Math.sin(t*p/b)*c,Math.cos(t*p/b)*c,-o);for(p=0;p<b;p++)h(Math.sin(t*p/b)*e,Math.cos(t*p/b)*e,o);for(p=0;p<b;p++)m.faces.push(new THREE.Face4(p,p+b,b+(p+1)%b,(p+1)%b));if(e>0){h(0,0,-o-(j||0));for(p=b;p<b+b/2;p++)m.faces.push(new THREE.Face4(2*b,(2*p-2*b)%b,(2*p-2*b+1)%b,(2*p-2*b+2)%b))}if(c>0){h(0,0,o+
|
|
|
+(g||0));for(p=b+b/2;p<2*b;p++)m.faces.push(new THREE.Face4(2*b+1,(2*p-2*b+2)%b+b,(2*p-2*b+1)%b+b,(2*p-2*b)%b+b))}p=0;for(b=this.faces.length;p<b;p++){var c=[],e=this.faces[p],g=this.vertices[e.a],j=this.vertices[e.b],o=this.vertices[e.c],n=this.vertices[e.d];c.push(new THREE.UV(0.5+Math.atan2(g.position.x,g.position.y)/t,0.5+g.position.z/f));c.push(new THREE.UV(0.5+Math.atan2(j.position.x,j.position.y)/t,0.5+j.position.z/f));c.push(new THREE.UV(0.5+Math.atan2(o.position.x,o.position.y)/t,0.5+o.position.z/
|
|
|
+f));e instanceof THREE.Face4&&c.push(new THREE.UV(0.5+Math.atan2(n.position.x,n.position.y)/t,0.5+n.position.z/f));this.faceVertexUvs[0].push(c)}this.computeCentroids();this.computeFaceNormals()};THREE.CylinderGeometry.prototype=new THREE.Geometry;THREE.CylinderGeometry.prototype.constructor=THREE.CylinderGeometry;THREE.ExtrudeGeometry=function(b,c){if(typeof b!="undefined"){THREE.Geometry.call(this);var b=b instanceof Array?b:[b],e,f=b.length,g;for(e=0;e<f;e++)g=b[e],this.addShape(g,c)}};
|
|
|
THREE.ExtrudeGeometry.prototype=new THREE.Geometry;THREE.ExtrudeGeometry.prototype.constructor=THREE.ExtrudeGeometry;
|
|
|
-THREE.ExtrudeGeometry.prototype.addShape=function(b,c){function e(b,c,e){return b.clone().addSelf(c.clone().multiplyScalar(e))}function f(b,c,e){c=Math.atan2(c.y-b.y,c.x-b.x);b=Math.atan2(e.y-b.y,e.x-b.x);c>b&&(b+=Math.PI*2);anglec=(c+b)/2;return(new THREE.Vector2(-Math.cos(anglec),-Math.sin(anglec))).normalize()}function g(b){for(E=b.length;--E>=0;){W=E;X=E-1;X<0&&(X=b.length-1);for(var c=0,c=0;c<v+n*2;c++){var e=S*c,f=S*(c+1),h=$+W+e,e=$+X+e,g=$+X+f,f=$+W+f;h+=K;e+=K;g+=K;f+=K;C.faces.push(new THREE.Face4(h,
|
|
|
-e,g,f))}}}function j(b,c,e){C.vertices.push(new THREE.Vertex(new THREE.Vector3(b,c,e)))}function h(b,c,e){b+=K;c+=K;e+=K;C.faces.push(new THREE.Face3(b,c,e))}var m=c.amount!==void 0?c.amount:100,p=c.bevelThickness!==void 0?c.bevelThickness:6,t=c.bevelSize!==void 0?c.bevelSize:p-2,n=c.bevelSegments!==void 0?c.bevelSegments:3,o=c.bevelEnabled!==void 0?c.bevelEnabled:!0;o||(t=p=n=0);var v=c.steps!==void 0?c.steps:1,u=c.path!==void 0?c.path:null,x,z=!1;if(u)x=u.getPoints(),v=x.length,z=!0;var y,w,I,C=
|
|
|
-this,K=this.vertices.length,u=b.extractAllPoints(),F=u.shape,u=u.holes,B=!THREE.Shape.Utils.isClockWise(F);if(B){F=F.reverse();w=0;for(I=u.length;w<I;w++)y=u[w],THREE.Shape.Utils.isClockWise(y)&&(u[w]=y.reverse());B=!1}var B=THREE.Shape.Utils.triangulateShape(F,u),O=F;w=0;for(I=u.length;w<I;w++)y=u[w],F=F.concat(y);var E,H,P=new THREE.Vector2;E=0;for(H=O.length;E<H;E++)P.addSelf(O[E]);P.divideScalar(O.length);w=0;for(I=u.length;w<I;w++){P=new THREE.Vector2;y=u[w];E=0;for(H=y.length;E<H;E++)P.addSelf(y[E]);
|
|
|
-P.divideScalar(y.length)}var V,G,aa,Q,S=F.length,P=B.length,T=[];E=0;H=O.length;W=H-1;for(X=E+1;E<H;E++,W++,X++)W==H&&(W=0),X==H&&(X=0),T[E]=f(O[E],O[W],O[X]);var k=[],L,ca=T.concat();w=0;for(I=u.length;w<I;w++){y=u[w];L=[];E=0;H=y.length;W=H-1;for(X=E+1;E<H;E++,W++,X++)W==H&&(W=0),X==H&&(X=0),L[E]=f(y[E],y[W],y[X]);k.push(L);ca=ca.concat(L)}for(V=0;V<n;V++){y=V/n;aa=p*(1-y);G=t*Math.sin(y*Math.PI/2);E=0;for(H=O.length;E<H;E++)Q=e(O[E],T[E],G),j(Q.x,Q.y,-aa);w=0;for(I=u.length;w<I;w++){y=u[w];L=k[w];
|
|
|
-E=0;for(H=y.length;E<H;E++)Q=e(y[E],L[E],G),j(Q.x,Q.y,-aa)}}G=t;for(E=0;E<S;E++)Q=e(F[E],ca[E],G),z?j(Q.x,Q.y+x[0].y,x[0].x):j(Q.x,Q.y,0);for(y=1;y<=v;y++)for(E=0;E<S;E++)Q=e(F[E],ca[E],G),z?j(Q.x,Q.y+x[y-1].y,x[y-1].x):j(Q.x,Q.y,m/v*y);for(V=n-1;V>=0;V--){y=V/n;aa=p*(1-y);G=t*Math.sin(y*Math.PI/2);E=0;for(H=O.length;E<H;E++)Q=e(O[E],T[E],G),j(Q.x,Q.y,m+aa);w=0;for(I=u.length;w<I;w++){y=u[w];L=k[w];E=0;for(H=y.length;E<H;E++)Q=e(y[E],L[E],G),z?j(Q.x,Q.y+x[v-1].y,x[v-1].x+aa):j(Q.x,Q.y,m+aa)}}if(o){p=
|
|
|
-S*0;for(E=0;E<P;E++)m=B[E],h(m[2]+p,m[1]+p,m[0]+p);p=S*(v+n*2);for(E=0;E<P;E++)m=B[E],h(m[0]+p,m[1]+p,m[2]+p)}else{for(E=0;E<P;E++)m=B[E],h(m[2],m[1],m[0]);for(E=0;E<P;E++)m=B[E],h(m[0]+S*v,m[1]+S*v,m[2]+S*v)}var W,X,$=0;g(O);$+=O.length;w=0;for(I=u.length;w<I;w++)y=u[w],g(y),$+=y.length;this.computeCentroids();this.computeFaceNormals()};
|
|
|
+THREE.ExtrudeGeometry.prototype.addShape=function(b,c){function e(b,c,e){c||console.log("die");return c.clone().multiplyScalar(e).addSelf(b)}function f(b,c,e){var f,h,g,j,k;f=new THREE.Vector2(b.x-c.x,b.y-c.y);h=new THREE.Vector2(b.x-e.x,b.y-e.y);f=f.normalize();h=h.normalize();g=new THREE.Vector2(-f.y,f.x);j=new THREE.Vector2(h.y,-h.x);h=b.clone().addSelf(g);k=b.clone().addSelf(j);if(h.equals(k))return j;h=c.clone().addSelf(g);k=e.clone().addSelf(j);g=f.dot(j);j=k.clone().subSelf(h).dot(j);g==0&&
|
|
|
+(console.log("Either infinite or no solutions!"),j==0?console.log("Its finite solutions."):console.log("Too bad, no solutions."));g=j/g;if(g<0)return c=Math.atan2(c.y-b.y,c.x-b.x),b=Math.atan2(e.y-b.y,e.x-b.x),c>b&&(b+=Math.PI*2),anglec=(c+b)/2,new THREE.Vector2(-Math.cos(anglec),-Math.sin(anglec));return f.clone().multiplyScalar(g).addSelf(h).subSelf(b)}function g(b){for(G=b.length;--G>=0;){Z=G;aa=G-1;aa<0&&(aa=b.length-1);for(var c=0,c=0;c<v+o*2;c++){var e=Q*c,f=Q*(c+1),h=ha+Z+e,e=ha+aa+e,g=ha+
|
|
|
+aa+f,f=ha+Z+f;h+=J;e+=J;g+=J;f+=J;B.faces.push(new THREE.Face4(h,e,g,f))}}}function j(b,c,e){B.vertices.push(new THREE.Vertex(new THREE.Vector3(b,c,e)))}function h(b,c,e){b+=J;c+=J;e+=J;B.faces.push(new THREE.Face3(b,c,e))}var m=c.amount!==void 0?c.amount:100,p=c.bevelThickness!==void 0?c.bevelThickness:6,t=c.bevelSize!==void 0?c.bevelSize:p-2,o=c.bevelSegments!==void 0?c.bevelSegments:3,n=c.bevelEnabled!==void 0?c.bevelEnabled:!0,v=c.steps!==void 0?c.steps:1,u=c.path!==void 0?c.path:null,y,w=!1;
|
|
|
+if(u)y=u.getPoints(),v=y.length,w=!0,n=!1;n||(t=p=o=0);var C,x,I,B=this,J=this.vertices.length,u=b.extractAllPoints(),F=u.shape,u=u.holes,A=!THREE.Shape.Utils.isClockWise(F);if(A){F=F.reverse();x=0;for(I=u.length;x<I;x++)C=u[x],THREE.Shape.Utils.isClockWise(C)&&(u[x]=C.reverse());A=!1}var A=THREE.Shape.Utils.triangulateShape(F,u),X=F;x=0;for(I=u.length;x<I;x++)C=u[x],F=F.concat(C);var G,H,L,O,P,N,Q=F.length,S=A.length,$=[];G=0;H=X.length;Z=H-1;for(aa=G+1;G<H;G++,Z++,aa++)Z==H&&(Z=0),aa==H&&(aa=0),
|
|
|
+$[G]=f(X[G],X[Z],X[aa]);var k=[],K,da=$.concat();x=0;for(I=u.length;x<I;x++){C=u[x];K=[];G=0;H=C.length;Z=H-1;for(aa=G+1;G<H;G++,Z++,aa++)Z==H&&(Z=0),aa==H&&(aa=0),K[G]=f(C[G],C[Z],C[aa]);k.push(K);da=da.concat(K)}for(L=0;L<o;L++){O=L/o;P=p*(1-O);O=t*Math.sin(O*Math.PI/2);G=0;for(H=X.length;G<H;G++)N=e(X[G],$[G],O),j(N.x,N.y,-P);x=0;for(I=u.length;x<I;x++){C=u[x];K=k[x];G=0;for(H=C.length;G<H;G++)N=e(C[G],K[G],O),j(N.x,N.y,-P)}}O=t;for(G=0;G<Q;G++)N=n?e(F[G],da[G],O):F[G],w?j(N.x,N.y+y[0].y,y[0].x):
|
|
|
+j(N.x,N.y,0);for(L=1;L<=v;L++)for(G=0;G<Q;G++)N=n?e(F[G],da[G],O):F[G],w?j(N.x,N.y+y[L-1].y,y[L-1].x):j(N.x,N.y,m/v*L);for(L=o-1;L>=0;L--){O=L/o;P=p*(1-O);O=t*Math.sin(O*Math.PI/2);G=0;for(H=X.length;G<H;G++)N=e(X[G],$[G],O),j(N.x,N.y,m+P);x=0;for(I=u.length;x<I;x++){C=u[x];K=k[x];G=0;for(H=C.length;G<H;G++)N=e(C[G],K[G],O),w?j(N.x,N.y+y[v-1].y,y[v-1].x+P):j(N.x,N.y,m+P)}}if(n){p=Q*0;for(G=0;G<S;G++)m=A[G],h(m[2]+p,m[1]+p,m[0]+p);p=Q*(v+o*2);for(G=0;G<S;G++)m=A[G],h(m[0]+p,m[1]+p,m[2]+p)}else{for(G=
|
|
|
+0;G<S;G++)m=A[G],h(m[2],m[1],m[0]);for(G=0;G<S;G++)m=A[G],h(m[0]+Q*v,m[1]+Q*v,m[2]+Q*v)}var Z,aa,ha=0;g(X);ha+=X.length;x=0;for(I=u.length;x<I;x++)C=u[x],g(C),ha+=C.length;this.computeCentroids();this.computeFaceNormals()};
|
|
|
THREE.IcosahedronGeometry=function(b){function c(b,c,e){var f=Math.sqrt(b*b+c*c+e*e);return g.vertices.push(new THREE.Vertex(new THREE.Vector3(b/f,c/f,e/f)))-1}function e(b,c,e,f){f.faces.push(new THREE.Face3(b,c,e))}function f(b,e){var f=g.vertices[b].position,h=g.vertices[e].position;return c((f.x+h.x)/2,(f.y+h.y)/2,(f.z+h.z)/2)}var g=this,j=new THREE.Geometry,h;this.subdivisions=b||0;THREE.Geometry.call(this);b=(1+Math.sqrt(5))/2;c(-1,b,0);c(1,b,0);c(-1,-b,0);c(1,-b,0);c(0,-1,b);c(0,1,b);c(0,-1,
|
|
|
--b);c(0,1,-b);c(b,0,-1);c(b,0,1);c(-b,0,-1);c(-b,0,1);e(0,11,5,j);e(0,5,1,j);e(0,1,7,j);e(0,7,10,j);e(0,10,11,j);e(1,5,9,j);e(5,11,4,j);e(11,10,2,j);e(10,7,6,j);e(7,1,8,j);e(3,9,4,j);e(3,4,2,j);e(3,2,6,j);e(3,6,8,j);e(3,8,9,j);e(4,9,5,j);e(2,4,11,j);e(6,2,10,j);e(8,6,7,j);e(9,8,1,j);for(b=0;b<this.subdivisions;b++){h=new THREE.Geometry;for(var m in j.faces){var p=f(j.faces[m].a,j.faces[m].b),t=f(j.faces[m].b,j.faces[m].c),n=f(j.faces[m].c,j.faces[m].a);e(j.faces[m].a,p,n,h);e(j.faces[m].b,t,p,h);
|
|
|
-e(j.faces[m].c,n,t,h);e(p,t,n,h)}j.faces=h.faces}g.faces=j.faces;delete j;delete h;this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};THREE.IcosahedronGeometry.prototype=new THREE.Geometry;THREE.IcosahedronGeometry.prototype.constructor=THREE.IcosahedronGeometry;
|
|
|
+-b);c(0,1,-b);c(b,0,-1);c(b,0,1);c(-b,0,-1);c(-b,0,1);e(0,11,5,j);e(0,5,1,j);e(0,1,7,j);e(0,7,10,j);e(0,10,11,j);e(1,5,9,j);e(5,11,4,j);e(11,10,2,j);e(10,7,6,j);e(7,1,8,j);e(3,9,4,j);e(3,4,2,j);e(3,2,6,j);e(3,6,8,j);e(3,8,9,j);e(4,9,5,j);e(2,4,11,j);e(6,2,10,j);e(8,6,7,j);e(9,8,1,j);for(b=0;b<this.subdivisions;b++){h=new THREE.Geometry;for(var m in j.faces){var p=f(j.faces[m].a,j.faces[m].b),t=f(j.faces[m].b,j.faces[m].c),o=f(j.faces[m].c,j.faces[m].a);e(j.faces[m].a,p,o,h);e(j.faces[m].b,t,p,h);
|
|
|
+e(j.faces[m].c,o,t,h);e(p,t,o,h)}j.faces=h.faces}g.faces=j.faces;delete j;delete h;this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};THREE.IcosahedronGeometry.prototype=new THREE.Geometry;THREE.IcosahedronGeometry.prototype.constructor=THREE.IcosahedronGeometry;
|
|
|
THREE.LatheGeometry=function(b,c,e){THREE.Geometry.call(this);this.steps=c||12;this.angle=e||2*Math.PI;for(var c=this.angle/this.steps,e=[],f=[],g=[],j=[],h=(new THREE.Matrix4).setRotationZ(c),m=0;m<b.length;m++)this.vertices.push(new THREE.Vertex(b[m])),e[m]=b[m].clone(),f[m]=this.vertices.length-1;for(var p=0;p<=this.angle+0.0010;p+=c){for(m=0;m<e.length;m++)p<this.angle?(e[m]=h.multiplyVector3(e[m].clone()),this.vertices.push(new THREE.Vertex(e[m])),g[m]=this.vertices.length-1):g=j;p==0&&(j=f);
|
|
|
for(m=0;m<f.length-1;m++)this.faces.push(new THREE.Face4(g[m],g[m+1],f[m+1],f[m])),this.faceVertexUvs[0].push([new THREE.UV(1-p/this.angle,m/b.length),new THREE.UV(1-p/this.angle,(m+1)/b.length),new THREE.UV(1-(p-c)/this.angle,(m+1)/b.length),new THREE.UV(1-(p-c)/this.angle,m/b.length)]);f=g;g=[]}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};THREE.LatheGeometry.prototype=new THREE.Geometry;THREE.LatheGeometry.prototype.constructor=THREE.LatheGeometry;
|
|
|
THREE.PlaneGeometry=function(b,c,e,f){THREE.Geometry.call(this);var g,j=b/2,h=c/2,e=e||1,f=f||1,m=e+1,p=f+1;b/=e;var t=c/f;for(g=0;g<p;g++)for(c=0;c<m;c++)this.vertices.push(new THREE.Vertex(new THREE.Vector3(c*b-j,-(g*t-h),0)));for(g=0;g<f;g++)for(c=0;c<e;c++)this.faces.push(new THREE.Face4(c+m*g,c+m*(g+1),c+1+m*(g+1),c+1+m*g)),this.faceVertexUvs[0].push([new THREE.UV(c/e,g/f),new THREE.UV(c/e,(g+1)/f),new THREE.UV((c+1)/e,(g+1)/f),new THREE.UV((c+1)/e,g/f)]);this.computeCentroids();this.computeFaceNormals()};
|
|
|
THREE.PlaneGeometry.prototype=new THREE.Geometry;THREE.PlaneGeometry.prototype.constructor=THREE.PlaneGeometry;
|
|
|
-THREE.SphereGeometry=function(b,c,e){THREE.Geometry.call(this);for(var b=b||50,f,g=Math.PI,j=Math.max(3,c||8),h=Math.max(2,e||6),c=[],e=0;e<h+1;e++){f=e/h;var m=b*Math.cos(f*g),p=b*Math.sin(f*g),t=[],n=0;for(f=0;f<j;f++){var o=2*f/j,v=p*Math.sin(o*g),o=p*Math.cos(o*g);(e==0||e==h)&&f>0||(n=this.vertices.push(new THREE.Vertex(new THREE.Vector3(o,m,v)))-1);t.push(n)}c.push(t)}for(var u,x,z,g=c.length,e=0;e<g;e++)if(j=c[e].length,e>0)for(f=0;f<j;f++){t=f==j-1;h=c[e][t?0:f+1];m=c[e][t?j-1:f];p=c[e-1][t?
|
|
|
-j-1:f];t=c[e-1][t?0:f+1];v=e/(g-1);u=(e-1)/(g-1);x=(f+1)/j;var o=f/j,n=new THREE.UV(1-x,v),v=new THREE.UV(1-o,v),o=new THREE.UV(1-o,u),y=new THREE.UV(1-x,u);e<c.length-1&&(u=this.vertices[h].position.clone(),x=this.vertices[m].position.clone(),z=this.vertices[p].position.clone(),u.normalize(),x.normalize(),z.normalize(),this.faces.push(new THREE.Face3(h,m,p,[new THREE.Vector3(u.x,u.y,u.z),new THREE.Vector3(x.x,x.y,x.z),new THREE.Vector3(z.x,z.y,z.z)])),this.faceVertexUvs[0].push([n,v,o]));e>1&&(u=
|
|
|
-this.vertices[h].position.clone(),x=this.vertices[p].position.clone(),z=this.vertices[t].position.clone(),u.normalize(),x.normalize(),z.normalize(),this.faces.push(new THREE.Face3(h,p,t,[new THREE.Vector3(u.x,u.y,u.z),new THREE.Vector3(x.x,x.y,x.z),new THREE.Vector3(z.x,z.y,z.z)])),this.faceVertexUvs[0].push([n,o,y]))}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals();this.boundingSphere={radius:b}};THREE.SphereGeometry.prototype=new THREE.Geometry;
|
|
|
+THREE.SphereGeometry=function(b,c,e){THREE.Geometry.call(this);for(var b=b||50,f,g=Math.PI,j=Math.max(3,c||8),h=Math.max(2,e||6),c=[],e=0;e<h+1;e++){f=e/h;var m=b*Math.cos(f*g),p=b*Math.sin(f*g),t=[],o=0;for(f=0;f<j;f++){var n=2*f/j,v=p*Math.sin(n*g),n=p*Math.cos(n*g);(e==0||e==h)&&f>0||(o=this.vertices.push(new THREE.Vertex(new THREE.Vector3(n,m,v)))-1);t.push(o)}c.push(t)}for(var u,y,w,g=c.length,e=0;e<g;e++)if(j=c[e].length,e>0)for(f=0;f<j;f++){t=f==j-1;h=c[e][t?0:f+1];m=c[e][t?j-1:f];p=c[e-1][t?
|
|
|
+j-1:f];t=c[e-1][t?0:f+1];v=e/(g-1);u=(e-1)/(g-1);y=(f+1)/j;var n=f/j,o=new THREE.UV(1-y,v),v=new THREE.UV(1-n,v),n=new THREE.UV(1-n,u),C=new THREE.UV(1-y,u);e<c.length-1&&(u=this.vertices[h].position.clone(),y=this.vertices[m].position.clone(),w=this.vertices[p].position.clone(),u.normalize(),y.normalize(),w.normalize(),this.faces.push(new THREE.Face3(h,m,p,[new THREE.Vector3(u.x,u.y,u.z),new THREE.Vector3(y.x,y.y,y.z),new THREE.Vector3(w.x,w.y,w.z)])),this.faceVertexUvs[0].push([o,v,n]));e>1&&(u=
|
|
|
+this.vertices[h].position.clone(),y=this.vertices[p].position.clone(),w=this.vertices[t].position.clone(),u.normalize(),y.normalize(),w.normalize(),this.faces.push(new THREE.Face3(h,p,t,[new THREE.Vector3(u.x,u.y,u.z),new THREE.Vector3(y.x,y.y,y.z),new THREE.Vector3(w.x,w.y,w.z)])),this.faceVertexUvs[0].push([o,n,C]))}this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals();this.boundingSphere={radius:b}};THREE.SphereGeometry.prototype=new THREE.Geometry;
|
|
|
THREE.SphereGeometry.prototype.constructor=THREE.SphereGeometry;THREE.TextGeometry=function(b,c){var e=(new THREE.TextPath(b,c)).toShapes();c.amount=c.height!==void 0?c.height:50;if(c.bevelThickness===void 0)c.bevelThickness=10;if(c.bevelSize===void 0)c.bevelSize=8;if(c.bevelEnabled===void 0)c.bevelEnabled=!1;THREE.ExtrudeGeometry.call(this,e,c)};THREE.TextGeometry.prototype=new THREE.ExtrudeGeometry;THREE.TextGeometry.prototype.constructor=THREE.TextGeometry;
|
|
|
THREE.FontUtils={faces:{},face:"helvetiker",weight:"normal",style:"normal",size:150,divisions:10,getFace:function(){return this.faces[this.face][this.weight][this.style]},getTextShapes:function(b,c){return(new TextPath(b,c)).toShapes()},loadFace:function(b){var c=b.familyName.toLowerCase();this.faces[c]=this.faces[c]||{};this.faces[c][b.cssFontWeight]=this.faces[c][b.cssFontWeight]||{};this.faces[c][b.cssFontWeight][b.cssFontStyle]=b;return this.faces[c][b.cssFontWeight][b.cssFontStyle]=b},drawText:function(b){for(var c=
|
|
|
-this.getFace(),e=this.size/c.resolution,f=0,g=String(b).split(""),j=g.length,h=[],b=0;b<j;b++){var m=new THREE.Path,m=this.extractGlyphPoints(g[b],c,e,f,m);f+=m.offset;h.push(m.path)}return{paths:h,offset:f/2}},extractGlyphPoints:function(b,c,e,f,g){var j=[],h,m,p,t,n,o,v,u,x,z,y=c.glyphs[b]||c.glyphs[ctxt.options.fallbackCharacter];if(y){if(y.o){c=y._cachedOutline||(y._cachedOutline=y.o.split(" "));p=c.length;for(b=0;b<p;)switch(m=c[b++],m){case "m":m=c[b++]*e+f;t=c[b++]*e;j.push(new THREE.Vector2(m,
|
|
|
-t));g.moveTo(m,t);break;case "l":m=c[b++]*e+f;t=c[b++]*e;j.push(new THREE.Vector2(m,t));g.lineTo(m,t);break;case "q":m=c[b++]*e+f;t=c[b++]*e;v=c[b++]*e+f;u=c[b++]*e;g.quadraticCurveTo(v,u,m,t);if(h=j[j.length-1]){n=h.x;o=h.y;h=1;for(divisions=this.divisions;h<=divisions;h++){var w=h/divisions,I=THREE.Shape.Utils.b2(w,n,v,m),w=THREE.Shape.Utils.b2(w,o,u,t);j.push(new THREE.Vector2(I,w))}}break;case "b":if(m=c[b++]*e+f,t=c[b++]*e,v=c[b++]*e+f,u=c[b++]*-e,x=c[b++]*e+f,z=c[b++]*-e,g.bezierCurveTo(m,t,
|
|
|
-v,u,x,z),h=j[j.length-1]){n=h.x;o=h.y;h=1;for(divisions=this.divisions;h<=divisions;h++)w=h/divisions,I=THREE.Shape.Utils.b3(w,n,v,x,m),w=THREE.Shape.Utils.b3(w,o,u,z,t),j.push(new THREE.Vector2(I,w))}}}return{offset:y.ha*e,points:j,path:g}}}};
|
|
|
-(function(b){var c=function(b){for(var c=b.length,g=0,j=c-1,h=0;h<c;j=h++)g+=b[j].x*b[h].y-b[h].x*b[j].y;return g*0.5};b.Triangulate=function(b,f){var g=b.length;if(g<3)return null;var j=[],h=[],m=[],p,t,n;if(c(b)>0)for(t=0;t<g;t++)h[t]=t;else for(t=0;t<g;t++)h[t]=g-1-t;var o=2*g;for(t=g-1;g>2;){if(o--<=0){console.log("Warning, unable to triangulate polygon!");if(f)return m;return j}p=t;g<=p&&(p=0);t=p+1;g<=t&&(t=0);n=t+1;g<=n&&(n=0);var v;a:{v=b;var u=p,x=t,z=n,y=g,w=h,I=void 0,C=void 0,K=void 0,
|
|
|
-F=void 0,B=void 0,O=void 0,E=void 0,H=void 0,P=void 0,C=v[w[u]].x,K=v[w[u]].y,F=v[w[x]].x,B=v[w[x]].y,O=v[w[z]].x,E=v[w[z]].y;if(1.0E-10>(F-C)*(E-K)-(B-K)*(O-C))v=!1;else{for(I=0;I<y;I++)if(!(I==u||I==x||I==z)){var H=v[w[I]].x,P=v[w[I]].y,V=void 0,G=void 0,aa=void 0,Q=void 0,S=void 0,T=void 0,k=void 0,L=void 0,ca=void 0,W=void 0,X=void 0,$=void 0,V=aa=S=void 0,V=O-F,G=E-B,aa=C-O,Q=K-E,S=F-C,T=B-K,k=H-C,L=P-K,ca=H-F,W=P-B,X=H-O,$=P-E,V=V*W-G*ca,S=S*L-T*k,aa=aa*$-Q*X;if(V>=0&&aa>=0&&S>=0){v=!1;break a}}v=
|
|
|
-!0}}if(v){j.push([b[h[p]],b[h[t]],b[h[n]]]);m.push([h[p],h[t],h[n]]);p=t;for(n=t+1;n<g;p++,n++)h[p]=h[n];g--;o=2*g}}if(f)return m;return j};b.Triangulate.area=c;return b})(THREE.FontUtils);window._typeface_js={faces:THREE.FontUtils.faces,loadFace:THREE.FontUtils.loadFace};
|
|
|
+this.getFace(),e=this.size/c.resolution,f=0,g=String(b).split(""),j=g.length,h=[],b=0;b<j;b++){var m=new THREE.Path,m=this.extractGlyphPoints(g[b],c,e,f,m);f+=m.offset;h.push(m.path)}return{paths:h,offset:f/2}},extractGlyphPoints:function(b,c,e,f,g){var j=[],h,m,p,t,o,n,v,u,y,w,C=c.glyphs[b]||c.glyphs[ctxt.options.fallbackCharacter];if(C){if(C.o){c=C._cachedOutline||(C._cachedOutline=C.o.split(" "));p=c.length;for(b=0;b<p;)switch(m=c[b++],m){case "m":m=c[b++]*e+f;t=c[b++]*e;j.push(new THREE.Vector2(m,
|
|
|
+t));g.moveTo(m,t);break;case "l":m=c[b++]*e+f;t=c[b++]*e;j.push(new THREE.Vector2(m,t));g.lineTo(m,t);break;case "q":m=c[b++]*e+f;t=c[b++]*e;v=c[b++]*e+f;u=c[b++]*e;g.quadraticCurveTo(v,u,m,t);if(h=j[j.length-1]){o=h.x;n=h.y;h=1;for(divisions=this.divisions;h<=divisions;h++){var x=h/divisions,I=THREE.Shape.Utils.b2(x,o,v,m),x=THREE.Shape.Utils.b2(x,n,u,t);j.push(new THREE.Vector2(I,x))}}break;case "b":if(m=c[b++]*e+f,t=c[b++]*e,v=c[b++]*e+f,u=c[b++]*-e,y=c[b++]*e+f,w=c[b++]*-e,g.bezierCurveTo(m,t,
|
|
|
+v,u,y,w),h=j[j.length-1]){o=h.x;n=h.y;h=1;for(divisions=this.divisions;h<=divisions;h++)x=h/divisions,I=THREE.Shape.Utils.b3(x,o,v,y,m),x=THREE.Shape.Utils.b3(x,n,u,w,t),j.push(new THREE.Vector2(I,x))}}}return{offset:C.ha*e,points:j,path:g}}}};
|
|
|
+(function(b){var c=function(b){for(var c=b.length,g=0,j=c-1,h=0;h<c;j=h++)g+=b[j].x*b[h].y-b[h].x*b[j].y;return g*0.5};b.Triangulate=function(b,f){var g=b.length;if(g<3)return null;var j=[],h=[],m=[],p,t,o;if(c(b)>0)for(t=0;t<g;t++)h[t]=t;else for(t=0;t<g;t++)h[t]=g-1-t;var n=2*g;for(t=g-1;g>2;){if(n--<=0){console.log("Warning, unable to triangulate polygon!");if(f)return m;return j}p=t;g<=p&&(p=0);t=p+1;g<=t&&(t=0);o=t+1;g<=o&&(o=0);var v;a:{v=b;var u=p,y=t,w=o,C=g,x=h,I=void 0,B=void 0,J=void 0,
|
|
|
+F=void 0,A=void 0,X=void 0,G=void 0,H=void 0,L=void 0,B=v[x[u]].x,J=v[x[u]].y,F=v[x[y]].x,A=v[x[y]].y,X=v[x[w]].x,G=v[x[w]].y;if(1.0E-10>(F-B)*(G-J)-(A-J)*(X-B))v=!1;else{for(I=0;I<C;I++)if(!(I==u||I==y||I==w)){var H=v[x[I]].x,L=v[x[I]].y,O=void 0,P=void 0,N=void 0,Q=void 0,S=void 0,$=void 0,k=void 0,K=void 0,da=void 0,Z=void 0,aa=void 0,ha=void 0,O=N=S=void 0,O=X-F,P=G-A,N=B-X,Q=J-G,S=F-B,$=A-J,k=H-B,K=L-J,da=H-F,Z=L-A,aa=H-X,ha=L-G,O=O*Z-P*da,S=S*K-$*k,N=N*ha-Q*aa;if(O>=0&&N>=0&&S>=0){v=!1;break a}}v=
|
|
|
+!0}}if(v){j.push([b[h[p]],b[h[t]],b[h[o]]]);m.push([h[p],h[t],h[o]]);p=t;for(o=t+1;o<g;p++,o++)h[p]=h[o];g--;n=2*g}}if(f)return m;return j};b.Triangulate.area=c;return b})(THREE.FontUtils);window._typeface_js={faces:THREE.FontUtils.faces,loadFace:THREE.FontUtils.loadFace};
|
|
|
THREE.TorusGeometry=function(b,c,e,f){THREE.Geometry.call(this);this.radius=b||100;this.tube=c||40;this.segmentsR=e||8;this.segmentsT=f||6;b=[];for(c=0;c<=this.segmentsR;++c)for(e=0;e<=this.segmentsT;++e){var f=e/this.segmentsT*2*Math.PI,g=c/this.segmentsR*2*Math.PI;this.vertices.push(new THREE.Vertex(new THREE.Vector3((this.radius+this.tube*Math.cos(g))*Math.cos(f),(this.radius+this.tube*Math.cos(g))*Math.sin(f),this.tube*Math.sin(g))));b.push([e/this.segmentsT,1-c/this.segmentsR])}for(c=1;c<=this.segmentsR;++c)for(e=
|
|
|
1;e<=this.segmentsT;++e){var f=(this.segmentsT+1)*c+e,g=(this.segmentsT+1)*c+e-1,j=(this.segmentsT+1)*(c-1)+e-1,h=(this.segmentsT+1)*(c-1)+e;this.faces.push(new THREE.Face4(f,g,j,h));this.faceVertexUvs[0].push([new THREE.UV(b[f][0],b[f][1]),new THREE.UV(b[g][0],b[g][1]),new THREE.UV(b[j][0],b[j][1]),new THREE.UV(b[h][0],b[h][1])])}delete b;this.computeCentroids();this.computeFaceNormals();this.computeVertexNormals()};THREE.TorusGeometry.prototype=new THREE.Geometry;
|
|
|
THREE.TorusGeometry.prototype.constructor=THREE.TorusGeometry;
|
|
|
THREE.TorusKnotGeometry=function(b,c,e,f,g,j,h){function m(b,c,e,f,h,g){c=e/f*b;e=Math.cos(c);return new THREE.Vector3(h*(2+e)*0.5*Math.cos(b),h*(2+e)*Math.sin(b)*0.5,g*h*Math.sin(c)*0.5)}THREE.Geometry.call(this);this.radius=b||200;this.tube=c||40;this.segmentsR=e||64;this.segmentsT=f||8;this.p=g||2;this.q=j||3;this.heightScale=h||1;this.grid=Array(this.segmentsR);e=new THREE.Vector3;f=new THREE.Vector3;j=new THREE.Vector3;for(b=0;b<this.segmentsR;++b){this.grid[b]=Array(this.segmentsT);for(c=0;c<
|
|
|
this.segmentsT;++c){var p=b/this.segmentsR*2*this.p*Math.PI,h=c/this.segmentsT*2*Math.PI,g=m(p,h,this.q,this.p,this.radius,this.heightScale),p=m(p+0.01,h,this.q,this.p,this.radius,this.heightScale);e.x=p.x-g.x;e.y=p.y-g.y;e.z=p.z-g.z;f.x=p.x+g.x;f.y=p.y+g.y;f.z=p.z+g.z;j.cross(e,f);f.cross(j,e);j.normalize();f.normalize();p=-this.tube*Math.cos(h);h=this.tube*Math.sin(h);g.x+=p*f.x+h*j.x;g.y+=p*f.y+h*j.y;g.z+=p*f.z+h*j.z;this.grid[b][c]=this.vertices.push(new THREE.Vertex(new THREE.Vector3(g.x,g.y,
|
|
|
-g.z)))-1}}for(b=0;b<this.segmentsR;++b)for(c=0;c<this.segmentsT;++c){var f=(b+1)%this.segmentsR,j=(c+1)%this.segmentsT,g=this.grid[b][c],e=this.grid[f][c],f=this.grid[f][j],j=this.grid[b][j],h=new THREE.UV(b/this.segmentsR,c/this.segmentsT),p=new THREE.UV((b+1)/this.segmentsR,c/this.segmentsT),t=new THREE.UV((b+1)/this.segmentsR,(c+1)/this.segmentsT),n=new THREE.UV(b/this.segmentsR,(c+1)/this.segmentsT);this.faces.push(new THREE.Face4(g,e,f,j));this.faceVertexUvs[0].push([h,p,t,n])}this.computeCentroids();
|
|
|
+g.z)))-1}}for(b=0;b<this.segmentsR;++b)for(c=0;c<this.segmentsT;++c){var f=(b+1)%this.segmentsR,j=(c+1)%this.segmentsT,g=this.grid[b][c],e=this.grid[f][c],f=this.grid[f][j],j=this.grid[b][j],h=new THREE.UV(b/this.segmentsR,c/this.segmentsT),p=new THREE.UV((b+1)/this.segmentsR,c/this.segmentsT),t=new THREE.UV((b+1)/this.segmentsR,(c+1)/this.segmentsT),o=new THREE.UV(b/this.segmentsR,(c+1)/this.segmentsT);this.faces.push(new THREE.Face4(g,e,f,j));this.faceVertexUvs[0].push([h,p,t,o])}this.computeCentroids();
|
|
|
this.computeFaceNormals();this.computeVertexNormals()};THREE.TorusKnotGeometry.prototype=new THREE.Geometry;THREE.TorusKnotGeometry.prototype.constructor=THREE.TorusKnotGeometry;THREE.Loader=function(b){this.statusDomElement=(this.showStatus=b)?THREE.Loader.prototype.addStatusElement():null;this.onLoadStart=function(){};this.onLoadProgress=function(){};this.onLoadComplete=function(){}};
|
|
|
THREE.Loader.prototype={addStatusElement:function(){var b=document.createElement("div");b.style.position="absolute";b.style.right="0px";b.style.top="0px";b.style.fontSize="0.8em";b.style.textAlign="left";b.style.background="rgba(0,0,0,0.25)";b.style.color="#fff";b.style.width="120px";b.style.padding="0.5em 0.5em 0.5em 0.5em";b.style.zIndex=1E3;b.innerHTML="Loading ...";return b},updateProgress:function(b){var c="Loaded ";c+=b.total?(100*b.loaded/b.total).toFixed(0)+"%":(b.loaded/1E3).toFixed(2)+" KB";
|
|
|
this.statusDomElement.innerHTML=c},extractUrlbase:function(b){b=b.split("/");b.pop();return b.join("/")},init_materials:function(b,c,e){b.materials=[];for(var f=0;f<c.length;++f)b.materials[f]=[THREE.Loader.prototype.createMaterial(c[f],e)]},hasNormals:function(b){var c,e,f=b.materials.length;for(e=0;e<f;e++)if(c=b.materials[e][0],c instanceof THREE.MeshShaderMaterial)return!0;return!1},createMaterial:function(b,c){function e(b){b=Math.log(b)/Math.LN2;return Math.floor(b)==b}function f(b,c){var f=
|
|
@@ -522,59 +524,59 @@ new Image;f.onload=function(){if(!e(this.width)||!e(this.height)){var c=Math.pow
|
|
|
1)b[e].wrapT=THREE.RepeatWrapping}j&&b[e].offset.set(j[0],j[1]);if(m){g={repeat:THREE.RepeatWrapping,mirror:THREE.MirroredRepeatWrapping};if(g[m[0]]!==void 0)b[e].wrapS=g[m[0]];if(g[m[1]]!==void 0)b[e].wrapT=g[m[1]]}f(b[e],c+"/"+h)}function j(b){return(b[0]*255<<16)+(b[1]*255<<8)+b[2]*255}var h,m,p;m="MeshLambertMaterial";h={color:15658734,opacity:1,map:null,lightMap:null,normalMap:null,wireframe:b.wireframe};b.shading&&(b.shading=="Phong"?m="MeshPhongMaterial":b.shading=="Basic"&&(m="MeshBasicMaterial"));
|
|
|
if(b.blending)if(b.blending=="Additive")h.blending=THREE.AdditiveBlending;else if(b.blending=="Subtractive")h.blending=THREE.SubtractiveBlending;else if(b.blending=="Multiply")h.blending=THREE.MultiplyBlending;if(b.transparent!==void 0||b.opacity<1)h.transparent=b.transparent;if(b.depthTest!==void 0)h.depthTest=b.depthTest;if(b.vertexColors!==void 0)if(b.vertexColors=="face")h.vertexColors=THREE.FaceColors;else if(b.vertexColors)h.vertexColors=THREE.VertexColors;if(b.colorDiffuse)h.color=j(b.colorDiffuse);
|
|
|
else if(b.DbgColor)h.color=b.DbgColor;if(b.colorSpecular)h.specular=j(b.colorSpecular);if(b.colorAmbient)h.ambient=j(b.colorAmbient);if(b.transparency)h.opacity=b.transparency;if(b.specularCoef)h.shininess=b.specularCoef;b.mapDiffuse&&c&&g(h,"map",b.mapDiffuse,b.mapDiffuseRepeat,b.mapDiffuseOffset,b.mapDiffuseWrap);b.mapLight&&c&&g(h,"lightMap",b.mapLight,b.mapLightRepeat,b.mapLightOffset,b.mapLightWrap);b.mapNormal&&c&&g(h,"normalMap",b.mapNormal,b.mapNormalRepeat,b.mapNormalOffset,b.mapNormalWrap);
|
|
|
-b.mapSpecular&&c&&g(h,"specularMap",b.mapSpecular,b.mapSpecularRepeat,b.mapSpecularOffset,b.mapSpecularWrap);if(b.mapNormal){var t=THREE.ShaderUtils.lib.normal,n=THREE.UniformsUtils.clone(t.uniforms),o=h.color;m=h.specular;p=h.ambient;var v=h.shininess;n.tNormal.texture=h.normalMap;if(b.mapNormalFactor)n.uNormalScale.value=b.mapNormalFactor;if(h.map)n.tDiffuse.texture=h.map,n.enableDiffuse.value=!0;if(h.specularMap)n.tSpecular.texture=h.specularMap,n.enableSpecular.value=!0;if(h.lightMap)n.tAO.texture=
|
|
|
-h.lightMap,n.enableAO.value=!0;n.uDiffuseColor.value.setHex(o);n.uSpecularColor.value.setHex(m);n.uAmbientColor.value.setHex(p);n.uShininess.value=v;if(h.opacity)n.uOpacity.value=h.opacity;h=new THREE.MeshShaderMaterial({fragmentShader:t.fragmentShader,vertexShader:t.vertexShader,uniforms:n,lights:!0,fog:!0})}else h=new THREE[m](h);return h}};THREE.JSONLoader=function(b){THREE.Loader.call(this,b)};THREE.JSONLoader.prototype=new THREE.Loader;THREE.JSONLoader.prototype.constructor=THREE.JSONLoader;
|
|
|
+b.mapSpecular&&c&&g(h,"specularMap",b.mapSpecular,b.mapSpecularRepeat,b.mapSpecularOffset,b.mapSpecularWrap);if(b.mapNormal){var t=THREE.ShaderUtils.lib.normal,o=THREE.UniformsUtils.clone(t.uniforms),n=h.color;m=h.specular;p=h.ambient;var v=h.shininess;o.tNormal.texture=h.normalMap;if(b.mapNormalFactor)o.uNormalScale.value=b.mapNormalFactor;if(h.map)o.tDiffuse.texture=h.map,o.enableDiffuse.value=!0;if(h.specularMap)o.tSpecular.texture=h.specularMap,o.enableSpecular.value=!0;if(h.lightMap)o.tAO.texture=
|
|
|
+h.lightMap,o.enableAO.value=!0;o.uDiffuseColor.value.setHex(n);o.uSpecularColor.value.setHex(m);o.uAmbientColor.value.setHex(p);o.uShininess.value=v;if(h.opacity)o.uOpacity.value=h.opacity;h=new THREE.MeshShaderMaterial({fragmentShader:t.fragmentShader,vertexShader:t.vertexShader,uniforms:o,lights:!0,fog:!0})}else h=new THREE[m](h);return h}};THREE.JSONLoader=function(b){THREE.Loader.call(this,b)};THREE.JSONLoader.prototype=new THREE.Loader;THREE.JSONLoader.prototype.constructor=THREE.JSONLoader;
|
|
|
THREE.JSONLoader.prototype.supr=THREE.Loader.prototype;THREE.JSONLoader.prototype.load=function(b){var c=this,e=b.model,f=b.callback,g=b.texture_path?b.texture_path:this.extractUrlbase(e),b=new Worker(e);b.onmessage=function(b){c.createModel(b.data,f,g);c.onLoadComplete()};this.onLoadStart();b.postMessage((new Date).getTime())};
|
|
|
-THREE.JSONLoader.prototype.createModel=function(b,c,e){var f=new THREE.Geometry,g=b.scale!==void 0?1/b.scale:1;this.init_materials(f,b.materials,e);(function(c){if(b.version===void 0||b.version!=2)console.error("Deprecated file format.");else{var e,g,p,t,n,o,v,u,x,z,y,w,I,C,K=b.faces;o=b.vertices;var F=b.normals,B=b.colors,O=0;for(e=0;e<b.uvs.length;e++)b.uvs[e].length&&O++;for(e=0;e<O;e++)f.faceUvs[e]=[],f.faceVertexUvs[e]=[];t=0;for(n=o.length;t<n;)v=new THREE.Vertex,v.position.x=o[t++]*c,v.position.y=
|
|
|
-o[t++]*c,v.position.z=o[t++]*c,f.vertices.push(v);t=0;for(n=K.length;t<n;){c=K[t++];o=c&1;p=c&2;e=c&4;g=c&8;u=c&16;v=c&32;z=c&64;c&=128;o?(y=new THREE.Face4,y.a=K[t++],y.b=K[t++],y.c=K[t++],y.d=K[t++],o=4):(y=new THREE.Face3,y.a=K[t++],y.b=K[t++],y.c=K[t++],o=3);if(p)p=K[t++],y.materials=f.materials[p];p=f.faces.length;if(e)for(e=0;e<O;e++)w=b.uvs[e],x=K[t++],C=w[x*2],x=w[x*2+1],f.faceUvs[e][p]=new THREE.UV(C,x);if(g)for(e=0;e<O;e++){w=b.uvs[e];I=[];for(g=0;g<o;g++)x=K[t++],C=w[x*2],x=w[x*2+1],I[g]=
|
|
|
-new THREE.UV(C,x);f.faceVertexUvs[e][p]=I}if(u)u=K[t++]*3,g=new THREE.Vector3,g.x=F[u++],g.y=F[u++],g.z=F[u],y.normal=g;if(v)for(e=0;e<o;e++)u=K[t++]*3,g=new THREE.Vector3,g.x=F[u++],g.y=F[u++],g.z=F[u],y.vertexNormals.push(g);if(z)v=K[t++],v=new THREE.Color(B[v]),y.color=v;if(c)for(e=0;e<o;e++)v=K[t++],v=new THREE.Color(B[v]),y.vertexColors.push(v);f.faces.push(y)}}})(g);(function(){var c,e,g,p;if(b.skinWeights){c=0;for(e=b.skinWeights.length;c<e;c+=2)g=b.skinWeights[c],p=b.skinWeights[c+1],f.skinWeights.push(new THREE.Vector4(g,
|
|
|
-p,0,0))}if(b.skinIndices){c=0;for(e=b.skinIndices.length;c<e;c+=2)g=b.skinIndices[c],p=b.skinIndices[c+1],f.skinIndices.push(new THREE.Vector4(g,p,0,0))}f.bones=b.bones;f.animation=b.animation})();(function(c){if(b.morphTargets!==void 0){var e,g,p,t,n,o,v,u,x;e=0;for(g=b.morphTargets.length;e<g;e++){f.morphTargets[e]={};f.morphTargets[e].name=b.morphTargets[e].name;f.morphTargets[e].vertices=[];u=f.morphTargets[e].vertices;x=b.morphTargets[e].vertices;p=0;for(t=x.length;p<t;p+=3)n=x[p]*c,o=x[p+1]*
|
|
|
-c,v=x[p+2]*c,u.push(new THREE.Vertex(new THREE.Vector3(n,o,v)))}}if(b.morphColors!==void 0){e=0;for(g=b.morphColors.length;e<g;e++){f.morphColors[e]={};f.morphColors[e].name=b.morphColors[e].name;f.morphColors[e].colors=[];t=f.morphColors[e].colors;n=b.morphColors[e].colors;c=0;for(p=n.length;c<p;c+=3)o=new THREE.Color(16755200),o.setRGB(n[c],n[c+1],n[c+2]),t.push(o)}}})(g);(function(){if(b.edges!==void 0){var c,e,g;for(c=0;c<b.edges.length;c+=2)e=b.edges[c],g=b.edges[c+1],f.edges.push(new THREE.Edge(f.vertices[e],
|
|
|
+THREE.JSONLoader.prototype.createModel=function(b,c,e){var f=new THREE.Geometry,g=b.scale!==void 0?1/b.scale:1;this.init_materials(f,b.materials,e);(function(c){if(b.version===void 0||b.version!=2)console.error("Deprecated file format.");else{var e,g,p,t,o,n,v,u,y,w,C,x,I,B,J=b.faces;n=b.vertices;var F=b.normals,A=b.colors,X=0;for(e=0;e<b.uvs.length;e++)b.uvs[e].length&&X++;for(e=0;e<X;e++)f.faceUvs[e]=[],f.faceVertexUvs[e]=[];t=0;for(o=n.length;t<o;)v=new THREE.Vertex,v.position.x=n[t++]*c,v.position.y=
|
|
|
+n[t++]*c,v.position.z=n[t++]*c,f.vertices.push(v);t=0;for(o=J.length;t<o;){c=J[t++];n=c&1;p=c&2;e=c&4;g=c&8;u=c&16;v=c&32;w=c&64;c&=128;n?(C=new THREE.Face4,C.a=J[t++],C.b=J[t++],C.c=J[t++],C.d=J[t++],n=4):(C=new THREE.Face3,C.a=J[t++],C.b=J[t++],C.c=J[t++],n=3);if(p)p=J[t++],C.materials=f.materials[p];p=f.faces.length;if(e)for(e=0;e<X;e++)x=b.uvs[e],y=J[t++],B=x[y*2],y=x[y*2+1],f.faceUvs[e][p]=new THREE.UV(B,y);if(g)for(e=0;e<X;e++){x=b.uvs[e];I=[];for(g=0;g<n;g++)y=J[t++],B=x[y*2],y=x[y*2+1],I[g]=
|
|
|
+new THREE.UV(B,y);f.faceVertexUvs[e][p]=I}if(u)u=J[t++]*3,g=new THREE.Vector3,g.x=F[u++],g.y=F[u++],g.z=F[u],C.normal=g;if(v)for(e=0;e<n;e++)u=J[t++]*3,g=new THREE.Vector3,g.x=F[u++],g.y=F[u++],g.z=F[u],C.vertexNormals.push(g);if(w)v=J[t++],v=new THREE.Color(A[v]),C.color=v;if(c)for(e=0;e<n;e++)v=J[t++],v=new THREE.Color(A[v]),C.vertexColors.push(v);f.faces.push(C)}}})(g);(function(){var c,e,g,p;if(b.skinWeights){c=0;for(e=b.skinWeights.length;c<e;c+=2)g=b.skinWeights[c],p=b.skinWeights[c+1],f.skinWeights.push(new THREE.Vector4(g,
|
|
|
+p,0,0))}if(b.skinIndices){c=0;for(e=b.skinIndices.length;c<e;c+=2)g=b.skinIndices[c],p=b.skinIndices[c+1],f.skinIndices.push(new THREE.Vector4(g,p,0,0))}f.bones=b.bones;f.animation=b.animation})();(function(c){if(b.morphTargets!==void 0){var e,g,p,t,o,n,v,u,y;e=0;for(g=b.morphTargets.length;e<g;e++){f.morphTargets[e]={};f.morphTargets[e].name=b.morphTargets[e].name;f.morphTargets[e].vertices=[];u=f.morphTargets[e].vertices;y=b.morphTargets[e].vertices;p=0;for(t=y.length;p<t;p+=3)o=y[p]*c,n=y[p+1]*
|
|
|
+c,v=y[p+2]*c,u.push(new THREE.Vertex(new THREE.Vector3(o,n,v)))}}if(b.morphColors!==void 0){e=0;for(g=b.morphColors.length;e<g;e++){f.morphColors[e]={};f.morphColors[e].name=b.morphColors[e].name;f.morphColors[e].colors=[];t=f.morphColors[e].colors;o=b.morphColors[e].colors;c=0;for(p=o.length;c<p;c+=3)n=new THREE.Color(16755200),n.setRGB(o[c],o[c+1],o[c+2]),t.push(n)}}})(g);(function(){if(b.edges!==void 0){var c,e,g;for(c=0;c<b.edges.length;c+=2)e=b.edges[c],g=b.edges[c+1],f.edges.push(new THREE.Edge(f.vertices[e],
|
|
|
f.vertices[g],e,g))}})();f.computeCentroids();f.computeFaceNormals();this.hasNormals(f)&&f.computeTangents();c(f)};THREE.BinaryLoader=function(b){THREE.Loader.call(this,b)};THREE.BinaryLoader.prototype=new THREE.Loader;THREE.BinaryLoader.prototype.constructor=THREE.BinaryLoader;THREE.BinaryLoader.prototype.supr=THREE.Loader.prototype;
|
|
|
THREE.BinaryLoader.prototype={load:function(b){var c=b.model,e=b.callback,f=b.texture_path?b.texture_path:THREE.Loader.prototype.extractUrlbase(c),g=b.bin_path?b.bin_path:THREE.Loader.prototype.extractUrlbase(c),b=(new Date).getTime(),c=new Worker(c),j=this.showProgress?THREE.Loader.prototype.updateProgress:null;c.onmessage=function(b){THREE.BinaryLoader.prototype.loadAjaxBuffers(b.data.buffers,b.data.materials,e,g,f,j)};c.onerror=function(b){alert("worker.onerror: "+b.message+"\n"+b.data);b.preventDefault()};
|
|
|
c.postMessage(b)},loadAjaxBuffers:function(b,c,e,f,g,j){var h=new XMLHttpRequest,m=f+"/"+b,p=0;h.onreadystatechange=function(){h.readyState==4?h.status==200||h.status==0?THREE.BinaryLoader.prototype.createBinModel(h.responseText,e,g,c):alert("Couldn't load ["+m+"] ["+h.status+"]"):h.readyState==3?j&&(p==0&&(p=h.getResponseHeader("Content-Length")),j({total:p,loaded:h.responseText.length})):h.readyState==2&&(p=h.getResponseHeader("Content-Length"))};h.open("GET",m,!0);h.overrideMimeType("text/plain; charset=x-user-defined");
|
|
|
-h.setRequestHeader("Content-Type","text/plain");h.send(null)},createBinModel:function(b,c,e,f){var g=function(c){function e(b,c){var f=n(b,c),g=n(b,c+1),h=n(b,c+2),j=n(b,c+3),k=(j<<1&255|h>>7)-127;f|=(h&127)<<16|g<<8;if(f==0&&k==-127)return 0;return(1-2*(j>>7))*(1+f*Math.pow(2,-23))*Math.pow(2,k)}function g(b,c){var e=n(b,c),f=n(b,c+1),h=n(b,c+2);return(n(b,c+3)<<24)+(h<<16)+(f<<8)+e}function p(b,c){var e=n(b,c);return(n(b,c+1)<<8)+e}function t(b,c){var e=n(b,c);return e>127?e-256:e}function n(b,
|
|
|
-c){return b.charCodeAt(c)&255}function o(c){var e,f,h;e=g(b,c);f=g(b,c+B);h=g(b,c+O);c=p(b,c+E);THREE.BinaryLoader.prototype.f3(w,e,f,h,c)}function v(c){var e,f,h,j,k,n;e=g(b,c);f=g(b,c+B);h=g(b,c+O);j=p(b,c+E);k=g(b,c+H);n=g(b,c+P);c=g(b,c+V);THREE.BinaryLoader.prototype.f3n(w,K,e,f,h,j,k,n,c)}function u(c){var e,f,h,j;e=g(b,c);f=g(b,c+G);h=g(b,c+aa);j=g(b,c+Q);c=p(b,c+S);THREE.BinaryLoader.prototype.f4(w,e,f,h,j,c)}function x(c){var e,f,h,j,n,o,t,u;e=g(b,c);f=g(b,c+G);h=g(b,c+aa);j=g(b,c+Q);n=p(b,
|
|
|
-c+S);o=g(b,c+T);t=g(b,c+k);u=g(b,c+L);c=g(b,c+ca);THREE.BinaryLoader.prototype.f4n(w,K,e,f,h,j,n,o,t,u,c)}function z(c){var e,f;e=g(b,c);f=g(b,c+W);c=g(b,c+X);THREE.BinaryLoader.prototype.uv3(w.faceVertexUvs[0],F[e*2],F[e*2+1],F[f*2],F[f*2+1],F[c*2],F[c*2+1])}function y(c){var e,f,h;e=g(b,c);f=g(b,c+$);h=g(b,c+da);c=g(b,c+ea);THREE.BinaryLoader.prototype.uv4(w.faceVertexUvs[0],F[e*2],F[e*2+1],F[f*2],F[f*2+1],F[h*2],F[h*2+1],F[c*2],F[c*2+1])}var w=this,I=0,C,K=[],F=[],B,O,E,H,P,V,G,aa,Q,S,T,k,L,ca,
|
|
|
-W,X,$,da,ea,fa,J,ia,la,ja,oa;THREE.Geometry.call(this);THREE.Loader.prototype.init_materials(w,f,c);C={signature:b.substr(I,8),header_bytes:n(b,I+8),vertex_coordinate_bytes:n(b,I+9),normal_coordinate_bytes:n(b,I+10),uv_coordinate_bytes:n(b,I+11),vertex_index_bytes:n(b,I+12),normal_index_bytes:n(b,I+13),uv_index_bytes:n(b,I+14),material_index_bytes:n(b,I+15),nvertices:g(b,I+16),nnormals:g(b,I+16+4),nuvs:g(b,I+16+8),ntri_flat:g(b,I+16+12),ntri_smooth:g(b,I+16+16),ntri_flat_uv:g(b,I+16+20),ntri_smooth_uv:g(b,
|
|
|
-I+16+24),nquad_flat:g(b,I+16+28),nquad_smooth:g(b,I+16+32),nquad_flat_uv:g(b,I+16+36),nquad_smooth_uv:g(b,I+16+40)};I+=C.header_bytes;B=C.vertex_index_bytes;O=C.vertex_index_bytes*2;E=C.vertex_index_bytes*3;H=C.vertex_index_bytes*3+C.material_index_bytes;P=C.vertex_index_bytes*3+C.material_index_bytes+C.normal_index_bytes;V=C.vertex_index_bytes*3+C.material_index_bytes+C.normal_index_bytes*2;G=C.vertex_index_bytes;aa=C.vertex_index_bytes*2;Q=C.vertex_index_bytes*3;S=C.vertex_index_bytes*4;T=C.vertex_index_bytes*
|
|
|
-4+C.material_index_bytes;k=C.vertex_index_bytes*4+C.material_index_bytes+C.normal_index_bytes;L=C.vertex_index_bytes*4+C.material_index_bytes+C.normal_index_bytes*2;ca=C.vertex_index_bytes*4+C.material_index_bytes+C.normal_index_bytes*3;W=C.uv_index_bytes;X=C.uv_index_bytes*2;$=C.uv_index_bytes;da=C.uv_index_bytes*2;ea=C.uv_index_bytes*3;c=C.vertex_index_bytes*3+C.material_index_bytes;oa=C.vertex_index_bytes*4+C.material_index_bytes;fa=C.ntri_flat*c;J=C.ntri_smooth*(c+C.normal_index_bytes*3);ia=C.ntri_flat_uv*
|
|
|
-(c+C.uv_index_bytes*3);la=C.ntri_smooth_uv*(c+C.normal_index_bytes*3+C.uv_index_bytes*3);ja=C.nquad_flat*oa;c=C.nquad_smooth*(oa+C.normal_index_bytes*4);oa=C.nquad_flat_uv*(oa+C.uv_index_bytes*4);I+=function(c){for(var f,g,j,k=C.vertex_coordinate_bytes*3,m=c+C.nvertices*k;c<m;c+=k)f=e(b,c),g=e(b,c+C.vertex_coordinate_bytes),j=e(b,c+C.vertex_coordinate_bytes*2),THREE.BinaryLoader.prototype.v(w,f,g,j);return C.nvertices*k}(I);I+=function(c){for(var e,f,g,h=C.normal_coordinate_bytes*3,j=c+C.nnormals*
|
|
|
-h;c<j;c+=h)e=t(b,c),f=t(b,c+C.normal_coordinate_bytes),g=t(b,c+C.normal_coordinate_bytes*2),K.push(e/127,f/127,g/127);return C.nnormals*h}(I);I+=function(c){for(var f,g,j=C.uv_coordinate_bytes*2,k=c+C.nuvs*j;c<k;c+=j)f=e(b,c),g=e(b,c+C.uv_coordinate_bytes),F.push(f,g);return C.nuvs*j}(I);fa=I+fa;J=fa+J;ia=J+ia;la=ia+la;ja=la+ja;c=ja+c;oa=c+oa;(function(b){var c,e=C.vertex_index_bytes*3+C.material_index_bytes,f=e+C.uv_index_bytes*3,g=b+C.ntri_flat_uv*f;for(c=b;c<g;c+=f)o(c),z(c+e);return g-b})(J);
|
|
|
-(function(b){var c,e=C.vertex_index_bytes*3+C.material_index_bytes+C.normal_index_bytes*3,f=e+C.uv_index_bytes*3,g=b+C.ntri_smooth_uv*f;for(c=b;c<g;c+=f)v(c),z(c+e);return g-b})(ia);(function(b){var c,e=C.vertex_index_bytes*4+C.material_index_bytes,f=e+C.uv_index_bytes*4,g=b+C.nquad_flat_uv*f;for(c=b;c<g;c+=f)u(c),y(c+e);return g-b})(c);(function(b){var c,e=C.vertex_index_bytes*4+C.material_index_bytes+C.normal_index_bytes*4,f=e+C.uv_index_bytes*4,g=b+C.nquad_smooth_uv*f;for(c=b;c<g;c+=f)x(c),y(c+
|
|
|
-e);return g-b})(oa);(function(b){var c,e=C.vertex_index_bytes*3+C.material_index_bytes,f=b+C.ntri_flat*e;for(c=b;c<f;c+=e)o(c);return f-b})(I);(function(b){var c,e=C.vertex_index_bytes*3+C.material_index_bytes+C.normal_index_bytes*3,f=b+C.ntri_smooth*e;for(c=b;c<f;c+=e)v(c);return f-b})(fa);(function(b){var c,e=C.vertex_index_bytes*4+C.material_index_bytes,f=b+C.nquad_flat*e;for(c=b;c<f;c+=e)u(c);return f-b})(la);(function(b){var c,e=C.vertex_index_bytes*4+C.material_index_bytes+C.normal_index_bytes*
|
|
|
-4,f=b+C.nquad_smooth*e;for(c=b;c<f;c+=e)x(c);return f-b})(ja);this.computeCentroids();this.computeFaceNormals();THREE.Loader.prototype.hasNormals(this)&&this.computeTangents()};g.prototype=new THREE.Geometry;g.prototype.constructor=g;c(new g(e))},v:function(b,c,e,f){b.vertices.push(new THREE.Vertex(new THREE.Vector3(c,e,f)))},f3:function(b,c,e,f,g){b.faces.push(new THREE.Face3(c,e,f,null,null,b.materials[g]))},f4:function(b,c,e,f,g,j){b.faces.push(new THREE.Face4(c,e,f,g,null,null,b.materials[j]))},
|
|
|
-f3n:function(b,c,e,f,g,j,h,m,p){var j=b.materials[j],t=c[m*3],n=c[m*3+1],m=c[m*3+2],o=c[p*3],v=c[p*3+1],p=c[p*3+2];b.faces.push(new THREE.Face3(e,f,g,[new THREE.Vector3(c[h*3],c[h*3+1],c[h*3+2]),new THREE.Vector3(t,n,m),new THREE.Vector3(o,v,p)],null,j))},f4n:function(b,c,e,f,g,j,h,m,p,t,n){var h=b.materials[h],o=c[p*3],v=c[p*3+1],p=c[p*3+2],u=c[t*3],x=c[t*3+1],t=c[t*3+2],z=c[n*3],y=c[n*3+1],n=c[n*3+2];b.faces.push(new THREE.Face4(e,f,g,j,[new THREE.Vector3(c[m*3],c[m*3+1],c[m*3+2]),new THREE.Vector3(o,
|
|
|
-v,p),new THREE.Vector3(u,x,t),new THREE.Vector3(z,y,n)],null,h))},uv3:function(b,c,e,f,g,j,h){var m=[];m.push(new THREE.UV(c,e));m.push(new THREE.UV(f,g));m.push(new THREE.UV(j,h));b.push(m)},uv4:function(b,c,e,f,g,j,h,m,p){var t=[];t.push(new THREE.UV(c,e));t.push(new THREE.UV(f,g));t.push(new THREE.UV(j,h));t.push(new THREE.UV(m,p));b.push(t)}};
|
|
|
+h.setRequestHeader("Content-Type","text/plain");h.send(null)},createBinModel:function(b,c,e,f){var g=function(c){function e(b,c){var f=o(b,c),g=o(b,c+1),h=o(b,c+2),j=o(b,c+3),k=(j<<1&255|h>>7)-127;f|=(h&127)<<16|g<<8;if(f==0&&k==-127)return 0;return(1-2*(j>>7))*(1+f*Math.pow(2,-23))*Math.pow(2,k)}function g(b,c){var e=o(b,c),f=o(b,c+1),h=o(b,c+2);return(o(b,c+3)<<24)+(h<<16)+(f<<8)+e}function p(b,c){var e=o(b,c);return(o(b,c+1)<<8)+e}function t(b,c){var e=o(b,c);return e>127?e-256:e}function o(b,
|
|
|
+c){return b.charCodeAt(c)&255}function n(c){var e,f,h;e=g(b,c);f=g(b,c+A);h=g(b,c+X);c=p(b,c+G);THREE.BinaryLoader.prototype.f3(x,e,f,h,c)}function v(c){var e,f,h,j,k,n;e=g(b,c);f=g(b,c+A);h=g(b,c+X);j=p(b,c+G);k=g(b,c+H);n=g(b,c+L);c=g(b,c+O);THREE.BinaryLoader.prototype.f3n(x,J,e,f,h,j,k,n,c)}function u(c){var e,f,h,j;e=g(b,c);f=g(b,c+P);h=g(b,c+N);j=g(b,c+Q);c=p(b,c+S);THREE.BinaryLoader.prototype.f4(x,e,f,h,j,c)}function y(c){var e,f,h,j,n,o,t,u;e=g(b,c);f=g(b,c+P);h=g(b,c+N);j=g(b,c+Q);n=p(b,
|
|
|
+c+S);o=g(b,c+$);t=g(b,c+k);u=g(b,c+K);c=g(b,c+da);THREE.BinaryLoader.prototype.f4n(x,J,e,f,h,j,n,o,t,u,c)}function w(c){var e,f;e=g(b,c);f=g(b,c+Z);c=g(b,c+aa);THREE.BinaryLoader.prototype.uv3(x.faceVertexUvs[0],F[e*2],F[e*2+1],F[f*2],F[f*2+1],F[c*2],F[c*2+1])}function C(c){var e,f,h;e=g(b,c);f=g(b,c+ha);h=g(b,c+la);c=g(b,c+fa);THREE.BinaryLoader.prototype.uv4(x.faceVertexUvs[0],F[e*2],F[e*2+1],F[f*2],F[f*2+1],F[h*2],F[h*2+1],F[c*2],F[c*2+1])}var x=this,I=0,B,J=[],F=[],A,X,G,H,L,O,P,N,Q,S,$,k,K,da,
|
|
|
+Z,aa,ha,la,fa,pa,D,ea,ca,ja,na;THREE.Geometry.call(this);THREE.Loader.prototype.init_materials(x,f,c);B={signature:b.substr(I,8),header_bytes:o(b,I+8),vertex_coordinate_bytes:o(b,I+9),normal_coordinate_bytes:o(b,I+10),uv_coordinate_bytes:o(b,I+11),vertex_index_bytes:o(b,I+12),normal_index_bytes:o(b,I+13),uv_index_bytes:o(b,I+14),material_index_bytes:o(b,I+15),nvertices:g(b,I+16),nnormals:g(b,I+16+4),nuvs:g(b,I+16+8),ntri_flat:g(b,I+16+12),ntri_smooth:g(b,I+16+16),ntri_flat_uv:g(b,I+16+20),ntri_smooth_uv:g(b,
|
|
|
+I+16+24),nquad_flat:g(b,I+16+28),nquad_smooth:g(b,I+16+32),nquad_flat_uv:g(b,I+16+36),nquad_smooth_uv:g(b,I+16+40)};I+=B.header_bytes;A=B.vertex_index_bytes;X=B.vertex_index_bytes*2;G=B.vertex_index_bytes*3;H=B.vertex_index_bytes*3+B.material_index_bytes;L=B.vertex_index_bytes*3+B.material_index_bytes+B.normal_index_bytes;O=B.vertex_index_bytes*3+B.material_index_bytes+B.normal_index_bytes*2;P=B.vertex_index_bytes;N=B.vertex_index_bytes*2;Q=B.vertex_index_bytes*3;S=B.vertex_index_bytes*4;$=B.vertex_index_bytes*
|
|
|
+4+B.material_index_bytes;k=B.vertex_index_bytes*4+B.material_index_bytes+B.normal_index_bytes;K=B.vertex_index_bytes*4+B.material_index_bytes+B.normal_index_bytes*2;da=B.vertex_index_bytes*4+B.material_index_bytes+B.normal_index_bytes*3;Z=B.uv_index_bytes;aa=B.uv_index_bytes*2;ha=B.uv_index_bytes;la=B.uv_index_bytes*2;fa=B.uv_index_bytes*3;c=B.vertex_index_bytes*3+B.material_index_bytes;na=B.vertex_index_bytes*4+B.material_index_bytes;pa=B.ntri_flat*c;D=B.ntri_smooth*(c+B.normal_index_bytes*3);ea=
|
|
|
+B.ntri_flat_uv*(c+B.uv_index_bytes*3);ca=B.ntri_smooth_uv*(c+B.normal_index_bytes*3+B.uv_index_bytes*3);ja=B.nquad_flat*na;c=B.nquad_smooth*(na+B.normal_index_bytes*4);na=B.nquad_flat_uv*(na+B.uv_index_bytes*4);I+=function(c){for(var f,g,j,k=B.vertex_coordinate_bytes*3,m=c+B.nvertices*k;c<m;c+=k)f=e(b,c),g=e(b,c+B.vertex_coordinate_bytes),j=e(b,c+B.vertex_coordinate_bytes*2),THREE.BinaryLoader.prototype.v(x,f,g,j);return B.nvertices*k}(I);I+=function(c){for(var e,f,g,h=B.normal_coordinate_bytes*3,
|
|
|
+j=c+B.nnormals*h;c<j;c+=h)e=t(b,c),f=t(b,c+B.normal_coordinate_bytes),g=t(b,c+B.normal_coordinate_bytes*2),J.push(e/127,f/127,g/127);return B.nnormals*h}(I);I+=function(c){for(var f,g,j=B.uv_coordinate_bytes*2,k=c+B.nuvs*j;c<k;c+=j)f=e(b,c),g=e(b,c+B.uv_coordinate_bytes),F.push(f,g);return B.nuvs*j}(I);pa=I+pa;D=pa+D;ea=D+ea;ca=ea+ca;ja=ca+ja;c=ja+c;na=c+na;(function(b){var c,e=B.vertex_index_bytes*3+B.material_index_bytes,f=e+B.uv_index_bytes*3,g=b+B.ntri_flat_uv*f;for(c=b;c<g;c+=f)n(c),w(c+e);return g-
|
|
|
+b})(D);(function(b){var c,e=B.vertex_index_bytes*3+B.material_index_bytes+B.normal_index_bytes*3,f=e+B.uv_index_bytes*3,g=b+B.ntri_smooth_uv*f;for(c=b;c<g;c+=f)v(c),w(c+e);return g-b})(ea);(function(b){var c,e=B.vertex_index_bytes*4+B.material_index_bytes,f=e+B.uv_index_bytes*4,g=b+B.nquad_flat_uv*f;for(c=b;c<g;c+=f)u(c),C(c+e);return g-b})(c);(function(b){var c,e=B.vertex_index_bytes*4+B.material_index_bytes+B.normal_index_bytes*4,f=e+B.uv_index_bytes*4,g=b+B.nquad_smooth_uv*f;for(c=b;c<g;c+=f)y(c),
|
|
|
+C(c+e);return g-b})(na);(function(b){var c,e=B.vertex_index_bytes*3+B.material_index_bytes,f=b+B.ntri_flat*e;for(c=b;c<f;c+=e)n(c);return f-b})(I);(function(b){var c,e=B.vertex_index_bytes*3+B.material_index_bytes+B.normal_index_bytes*3,f=b+B.ntri_smooth*e;for(c=b;c<f;c+=e)v(c);return f-b})(pa);(function(b){var c,e=B.vertex_index_bytes*4+B.material_index_bytes,f=b+B.nquad_flat*e;for(c=b;c<f;c+=e)u(c);return f-b})(ca);(function(b){var c,e=B.vertex_index_bytes*4+B.material_index_bytes+B.normal_index_bytes*
|
|
|
+4,f=b+B.nquad_smooth*e;for(c=b;c<f;c+=e)y(c);return f-b})(ja);this.computeCentroids();this.computeFaceNormals();THREE.Loader.prototype.hasNormals(this)&&this.computeTangents()};g.prototype=new THREE.Geometry;g.prototype.constructor=g;c(new g(e))},v:function(b,c,e,f){b.vertices.push(new THREE.Vertex(new THREE.Vector3(c,e,f)))},f3:function(b,c,e,f,g){b.faces.push(new THREE.Face3(c,e,f,null,null,b.materials[g]))},f4:function(b,c,e,f,g,j){b.faces.push(new THREE.Face4(c,e,f,g,null,null,b.materials[j]))},
|
|
|
+f3n:function(b,c,e,f,g,j,h,m,p){var j=b.materials[j],t=c[m*3],o=c[m*3+1],m=c[m*3+2],n=c[p*3],v=c[p*3+1],p=c[p*3+2];b.faces.push(new THREE.Face3(e,f,g,[new THREE.Vector3(c[h*3],c[h*3+1],c[h*3+2]),new THREE.Vector3(t,o,m),new THREE.Vector3(n,v,p)],null,j))},f4n:function(b,c,e,f,g,j,h,m,p,t,o){var h=b.materials[h],n=c[p*3],v=c[p*3+1],p=c[p*3+2],u=c[t*3],y=c[t*3+1],t=c[t*3+2],w=c[o*3],C=c[o*3+1],o=c[o*3+2];b.faces.push(new THREE.Face4(e,f,g,j,[new THREE.Vector3(c[m*3],c[m*3+1],c[m*3+2]),new THREE.Vector3(n,
|
|
|
+v,p),new THREE.Vector3(u,y,t),new THREE.Vector3(w,C,o)],null,h))},uv3:function(b,c,e,f,g,j,h){var m=[];m.push(new THREE.UV(c,e));m.push(new THREE.UV(f,g));m.push(new THREE.UV(j,h));b.push(m)},uv4:function(b,c,e,f,g,j,h,m,p){var t=[];t.push(new THREE.UV(c,e));t.push(new THREE.UV(f,g));t.push(new THREE.UV(j,h));t.push(new THREE.UV(m,p));b.push(t)}};
|
|
|
THREE.SceneLoader=function(){this.onLoadStart=function(){};this.onLoadProgress=function(){};this.onLoadComplete=function(){};this.callbackSync=function(){};this.callbackProgress=function(){}};
|
|
|
-THREE.SceneLoader.prototype={load:function(b,c){var e=this,f=new Worker(b);f.postMessage(0);var g=THREE.Loader.prototype.extractUrlbase(b);f.onmessage=function(b){function f(b,c){return c=="relativeToHTML"?b:g+"/"+b}function m(){for(u in G.objects)if(!L.objects[u])if(I=G.objects[u],I.geometry!==void 0){if(B=L.geometries[I.geometry]){var b=!1;P=[];for(W=0;W<I.materials.length;W++)P[W]=L.materials[I.materials[W]],b=P[W]instanceof THREE.MeshShaderMaterial;b&&B.computeTangents();C=I.position;r=I.rotation;
|
|
|
-q=I.quaternion;s=I.scale;q=0;P.length==0&&(P[0]=new THREE.MeshFaceMaterial);P.length>1&&(P=[new THREE.MeshFaceMaterial]);object=new THREE.Mesh(B,P);object.name=u;object.position.set(C[0],C[1],C[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=I.visible;L.scene.addObject(object);L.objects[u]=object;I.meshCollider&&(b=THREE.CollisionUtils.MeshColliderWBox(object),L.scene.collisions.colliders.push(b));
|
|
|
-if(I.castsShadow)b=new THREE.ShadowVolume(B),L.scene.addChild(b),b.position=object.position,b.rotation=object.rotation,b.scale=object.scale;I.trigger&&I.trigger.toLowerCase()!="none"&&(b={type:I.trigger,object:I},L.triggers[object.name]=b)}}else C=I.position,r=I.rotation,q=I.quaternion,s=I.scale,q=0,object=new THREE.Object3D,object.name=u,object.position.set(C[0],C[1],C[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=I.visible!==void 0?I.visible:!1,L.scene.addObject(object),L.objects[u]=object,L.empties[u]=object,I.trigger&&I.trigger.toLowerCase()!="none"&&(b={type:I.trigger,object:I},L.triggers[object.name]=b)}function p(b){return function(c){L.geometries[b]=c;m();Q-=1;e.onLoadComplete();n()}}function t(b){return function(c){L.geometries[b]=c}}function n(){e.callbackProgress({totalModels:T,totalTextures:k,loadedModels:T-Q,loadedTextures:k-S},L);e.onLoadProgress();Q==0&&S==0&&c(L)}var o,
|
|
|
-v,u,x,z,y,w,I,C,K,F,B,O,E,H,P,V,G,aa,Q,S,T,k,L;G=b.data;H=new THREE.BinaryLoader;aa=new THREE.JSONLoader;S=Q=0;L={scene:new THREE.Scene,geometries:{},materials:{},textures:{},objects:{},cameras:{},lights:{},fogs:{},triggers:{},empties:{}};b=!1;for(u in G.objects)if(I=G.objects[u],I.meshCollider){b=!0;break}if(b)L.scene.collisions=new THREE.CollisionSystem;if(G.transform){b=G.transform.position;K=G.transform.rotation;var ca=G.transform.scale;b&&L.scene.position.set(b[0],b[1],b[2]);K&&L.scene.rotation.set(K[0],
|
|
|
-K[1],K[2]);ca&&L.scene.scale.set(ca[0],ca[1],ca[2]);(b||K||ca)&&L.scene.updateMatrix()}b=function(){S-=1;n();e.onLoadComplete()};for(z in G.cameras){K=G.cameras[z];if(K.type=="perspective")O=new THREE.Camera(K.fov,K.aspect,K.near,K.far);else if(K.type=="ortho")O=new THREE.Camera,O.projectionMatrix=THREE.Matrix4.makeOrtho(K.left,K.right,K.top,K.bottom,K.near,K.far);C=K.position;K=K.target;O.position.set(C[0],C[1],C[2]);O.target.position.set(K[0],K[1],K[2]);L.cameras[z]=O}for(x in G.lights)z=G.lights[x],
|
|
|
-O=z.color!==void 0?z.color:16777215,K=z.intensity!==void 0?z.intensity:1,z.type=="directional"?(C=z.direction,V=new THREE.DirectionalLight(O,K),V.position.set(C[0],C[1],C[2]),V.position.normalize()):z.type=="point"?(C=z.position,d=z.distance,V=new THREE.PointLight(O,K,d),V.position.set(C[0],C[1],C[2])):z.type=="ambient"&&(V=new THREE.AmbientLight(O)),L.scene.addLight(V),L.lights[x]=V;for(y in G.fogs)x=G.fogs[y],x.type=="linear"?E=new THREE.Fog(0,x.near,x.far):x.type=="exp2"&&(E=new THREE.FogExp2(0,
|
|
|
-x.density)),K=x.color,E.color.setRGB(K[0],K[1],K[2]),L.fogs[y]=E;if(L.cameras&&G.defaults.camera)L.currentCamera=L.cameras[G.defaults.camera];if(L.fogs&&G.defaults.fog)L.scene.fog=L.fogs[G.defaults.fog];K=G.defaults.bgcolor;L.bgColor=new THREE.Color;L.bgColor.setRGB(K[0],K[1],K[2]);L.bgColorAlpha=G.defaults.bgalpha;for(o in G.geometries)if(y=G.geometries[o],y.type=="bin_mesh"||y.type=="ascii_mesh")Q+=1,e.onLoadStart();T=Q;for(o in G.geometries)y=G.geometries[o],y.type=="cube"?(B=new THREE.CubeGeometry(y.width,
|
|
|
-y.height,y.depth,y.segmentsWidth,y.segmentsHeight,y.segmentsDepth,null,y.flipped,y.sides),L.geometries[o]=B):y.type=="plane"?(B=new THREE.PlaneGeometry(y.width,y.height,y.segmentsWidth,y.segmentsHeight),L.geometries[o]=B):y.type=="sphere"?(B=new THREE.SphereGeometry(y.radius,y.segmentsWidth,y.segmentsHeight),L.geometries[o]=B):y.type=="cylinder"?(B=new THREE.CylinderGeometry(y.numSegs,y.topRad,y.botRad,y.height,y.topOffset,y.botOffset),L.geometries[o]=B):y.type=="torus"?(B=new THREE.TorusGeometry(y.radius,
|
|
|
-y.tube,y.segmentsR,y.segmentsT),L.geometries[o]=B):y.type=="icosahedron"?(B=new THREE.IcosahedronGeometry(y.subdivisions),L.geometries[o]=B):y.type=="bin_mesh"?H.load({model:f(y.url,G.urlBaseType),callback:p(o)}):y.type=="ascii_mesh"?aa.load({model:f(y.url,G.urlBaseType),callback:p(o)}):y.type=="embedded_mesh"&&(y=G.embeds[y.id])&&aa.createModel(y,t(o),"");for(w in G.textures)if(o=G.textures[w],o.url instanceof Array){S+=o.url.length;for(H=0;H<o.url.length;H++)e.onLoadStart()}else S+=1,e.onLoadStart();
|
|
|
-k=S;for(w in G.textures){o=G.textures[w];if(o.mapping!=void 0&&THREE[o.mapping]!=void 0)o.mapping=new THREE[o.mapping];if(o.url instanceof Array){H=[];for(var W=0;W<o.url.length;W++)H[W]=f(o.url[W],G.urlBaseType);H=THREE.ImageUtils.loadTextureCube(H,o.mapping,b)}else{H=THREE.ImageUtils.loadTexture(f(o.url,G.urlBaseType),o.mapping,b);if(THREE[o.minFilter]!=void 0)H.minFilter=THREE[o.minFilter];if(THREE[o.magFilter]!=void 0)H.magFilter=THREE[o.magFilter];if(o.repeat){H.repeat.set(o.repeat[0],o.repeat[1]);
|
|
|
-if(o.repeat[0]!=1)H.wrapS=THREE.RepeatWrapping;if(o.repeat[1]!=1)H.wrapT=THREE.RepeatWrapping}o.offset&&H.offset.set(o.offset[0],o.offset[1]);if(o.wrap){aa={repeat:THREE.RepeatWrapping,mirror:THREE.MirroredRepeatWrapping};if(aa[o.wrap[0]]!==void 0)H.wrapS=aa[o.wrap[0]];if(aa[o.wrap[1]]!==void 0)H.wrapT=aa[o.wrap[1]]}}L.textures[w]=H}for(v in G.materials){w=G.materials[v];for(F in w.parameters)if(F=="envMap"||F=="map"||F=="lightMap")w.parameters[F]=L.textures[w.parameters[F]];else if(F=="shading")w.parameters[F]=
|
|
|
-w.parameters[F]=="flat"?THREE.FlatShading:THREE.SmoothShading;else if(F=="blending")w.parameters[F]=THREE[w.parameters[F]]?THREE[w.parameters[F]]:THREE.NormalBlending;else if(F=="combine")w.parameters[F]=w.parameters[F]=="MixOperation"?THREE.MixOperation:THREE.MultiplyOperation;else if(F=="vertexColors")if(w.parameters[F]=="face")w.parameters[F]=THREE.FaceColors;else if(w.parameters[F])w.parameters[F]=THREE.VertexColors;if(w.parameters.opacity!==void 0&&w.parameters.opacity<1)w.parameters.transparent=
|
|
|
-!0;if(w.parameters.normalMap){o=THREE.ShaderUtils.lib.normal;b=THREE.UniformsUtils.clone(o.uniforms);H=w.parameters.color;aa=w.parameters.specular;y=w.parameters.ambient;E=w.parameters.shininess;b.tNormal.texture=L.textures[w.parameters.normalMap];if(w.parameters.normalMapFactor)b.uNormalScale.value=w.parameters.normalMapFactor;if(w.parameters.map)b.tDiffuse.texture=w.parameters.map,b.enableDiffuse.value=!0;if(w.parameters.lightMap)b.tAO.texture=w.parameters.lightMap,b.enableAO.value=!0;if(w.parameters.specularMap)b.tSpecular.texture=
|
|
|
-L.textures[w.parameters.specularMap],b.enableSpecular.value=!0;b.uDiffuseColor.value.setHex(H);b.uSpecularColor.value.setHex(aa);b.uAmbientColor.value.setHex(y);b.uShininess.value=E;if(w.parameters.opacity)b.uOpacity.value=w.parameters.opacity;w=new THREE.MeshShaderMaterial({fragmentShader:o.fragmentShader,vertexShader:o.vertexShader,uniforms:b,lights:!0,fog:!0})}else w=new THREE[w.type](w.parameters);L.materials[v]=w}m();e.callbackSync(L)}}};
|
|
|
+THREE.SceneLoader.prototype={load:function(b,c){var e=this,f=new Worker(b);f.postMessage(0);var g=THREE.Loader.prototype.extractUrlbase(b);f.onmessage=function(b){function f(b,c){return c=="relativeToHTML"?b:g+"/"+b}function m(){for(u in P.objects)if(!K.objects[u])if(I=P.objects[u],I.geometry!==void 0){if(A=K.geometries[I.geometry]){var b=!1;L=[];for(Z=0;Z<I.materials.length;Z++)L[Z]=K.materials[I.materials[Z]],b=L[Z]instanceof THREE.MeshShaderMaterial;b&&A.computeTangents();B=I.position;r=I.rotation;
|
|
|
+q=I.quaternion;s=I.scale;q=0;L.length==0&&(L[0]=new THREE.MeshFaceMaterial);L.length>1&&(L=[new THREE.MeshFaceMaterial]);object=new THREE.Mesh(A,L);object.name=u;object.position.set(B[0],B[1],B[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=I.visible;K.scene.addObject(object);K.objects[u]=object;I.meshCollider&&(b=THREE.CollisionUtils.MeshColliderWBox(object),K.scene.collisions.colliders.push(b));
|
|
|
+if(I.castsShadow)b=new THREE.ShadowVolume(A),K.scene.addChild(b),b.position=object.position,b.rotation=object.rotation,b.scale=object.scale;I.trigger&&I.trigger.toLowerCase()!="none"&&(b={type:I.trigger,object:I},K.triggers[object.name]=b)}}else B=I.position,r=I.rotation,q=I.quaternion,s=I.scale,q=0,object=new THREE.Object3D,object.name=u,object.position.set(B[0],B[1],B[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=I.visible!==void 0?I.visible:!1,K.scene.addObject(object),K.objects[u]=object,K.empties[u]=object,I.trigger&&I.trigger.toLowerCase()!="none"&&(b={type:I.trigger,object:I},K.triggers[object.name]=b)}function p(b){return function(c){K.geometries[b]=c;m();Q-=1;e.onLoadComplete();o()}}function t(b){return function(c){K.geometries[b]=c}}function o(){e.callbackProgress({totalModels:$,totalTextures:k,loadedModels:$-Q,loadedTextures:k-S},K);e.onLoadProgress();Q==0&&S==0&&c(K)}var n,
|
|
|
+v,u,y,w,C,x,I,B,J,F,A,X,G,H,L,O,P,N,Q,S,$,k,K;P=b.data;H=new THREE.BinaryLoader;N=new THREE.JSONLoader;S=Q=0;K={scene:new THREE.Scene,geometries:{},materials:{},textures:{},objects:{},cameras:{},lights:{},fogs:{},triggers:{},empties:{}};b=!1;for(u in P.objects)if(I=P.objects[u],I.meshCollider){b=!0;break}if(b)K.scene.collisions=new THREE.CollisionSystem;if(P.transform){b=P.transform.position;J=P.transform.rotation;var da=P.transform.scale;b&&K.scene.position.set(b[0],b[1],b[2]);J&&K.scene.rotation.set(J[0],
|
|
|
+J[1],J[2]);da&&K.scene.scale.set(da[0],da[1],da[2]);(b||J||da)&&K.scene.updateMatrix()}b=function(){S-=1;o();e.onLoadComplete()};for(w in P.cameras){J=P.cameras[w];if(J.type=="perspective")X=new THREE.Camera(J.fov,J.aspect,J.near,J.far);else if(J.type=="ortho")X=new THREE.Camera,X.projectionMatrix=THREE.Matrix4.makeOrtho(J.left,J.right,J.top,J.bottom,J.near,J.far);B=J.position;J=J.target;X.position.set(B[0],B[1],B[2]);X.target.position.set(J[0],J[1],J[2]);K.cameras[w]=X}for(y in P.lights)w=P.lights[y],
|
|
|
+X=w.color!==void 0?w.color:16777215,J=w.intensity!==void 0?w.intensity:1,w.type=="directional"?(B=w.direction,O=new THREE.DirectionalLight(X,J),O.position.set(B[0],B[1],B[2]),O.position.normalize()):w.type=="point"?(B=w.position,d=w.distance,O=new THREE.PointLight(X,J,d),O.position.set(B[0],B[1],B[2])):w.type=="ambient"&&(O=new THREE.AmbientLight(X)),K.scene.addLight(O),K.lights[y]=O;for(C in P.fogs)y=P.fogs[C],y.type=="linear"?G=new THREE.Fog(0,y.near,y.far):y.type=="exp2"&&(G=new THREE.FogExp2(0,
|
|
|
+y.density)),J=y.color,G.color.setRGB(J[0],J[1],J[2]),K.fogs[C]=G;if(K.cameras&&P.defaults.camera)K.currentCamera=K.cameras[P.defaults.camera];if(K.fogs&&P.defaults.fog)K.scene.fog=K.fogs[P.defaults.fog];J=P.defaults.bgcolor;K.bgColor=new THREE.Color;K.bgColor.setRGB(J[0],J[1],J[2]);K.bgColorAlpha=P.defaults.bgalpha;for(n in P.geometries)if(C=P.geometries[n],C.type=="bin_mesh"||C.type=="ascii_mesh")Q+=1,e.onLoadStart();$=Q;for(n in P.geometries)C=P.geometries[n],C.type=="cube"?(A=new THREE.CubeGeometry(C.width,
|
|
|
+C.height,C.depth,C.segmentsWidth,C.segmentsHeight,C.segmentsDepth,null,C.flipped,C.sides),K.geometries[n]=A):C.type=="plane"?(A=new THREE.PlaneGeometry(C.width,C.height,C.segmentsWidth,C.segmentsHeight),K.geometries[n]=A):C.type=="sphere"?(A=new THREE.SphereGeometry(C.radius,C.segmentsWidth,C.segmentsHeight),K.geometries[n]=A):C.type=="cylinder"?(A=new THREE.CylinderGeometry(C.numSegs,C.topRad,C.botRad,C.height,C.topOffset,C.botOffset),K.geometries[n]=A):C.type=="torus"?(A=new THREE.TorusGeometry(C.radius,
|
|
|
+C.tube,C.segmentsR,C.segmentsT),K.geometries[n]=A):C.type=="icosahedron"?(A=new THREE.IcosahedronGeometry(C.subdivisions),K.geometries[n]=A):C.type=="bin_mesh"?H.load({model:f(C.url,P.urlBaseType),callback:p(n)}):C.type=="ascii_mesh"?N.load({model:f(C.url,P.urlBaseType),callback:p(n)}):C.type=="embedded_mesh"&&(C=P.embeds[C.id])&&N.createModel(C,t(n),"");for(x in P.textures)if(n=P.textures[x],n.url instanceof Array){S+=n.url.length;for(H=0;H<n.url.length;H++)e.onLoadStart()}else S+=1,e.onLoadStart();
|
|
|
+k=S;for(x in P.textures){n=P.textures[x];if(n.mapping!=void 0&&THREE[n.mapping]!=void 0)n.mapping=new THREE[n.mapping];if(n.url instanceof Array){H=[];for(var Z=0;Z<n.url.length;Z++)H[Z]=f(n.url[Z],P.urlBaseType);H=THREE.ImageUtils.loadTextureCube(H,n.mapping,b)}else{H=THREE.ImageUtils.loadTexture(f(n.url,P.urlBaseType),n.mapping,b);if(THREE[n.minFilter]!=void 0)H.minFilter=THREE[n.minFilter];if(THREE[n.magFilter]!=void 0)H.magFilter=THREE[n.magFilter];if(n.repeat){H.repeat.set(n.repeat[0],n.repeat[1]);
|
|
|
+if(n.repeat[0]!=1)H.wrapS=THREE.RepeatWrapping;if(n.repeat[1]!=1)H.wrapT=THREE.RepeatWrapping}n.offset&&H.offset.set(n.offset[0],n.offset[1]);if(n.wrap){N={repeat:THREE.RepeatWrapping,mirror:THREE.MirroredRepeatWrapping};if(N[n.wrap[0]]!==void 0)H.wrapS=N[n.wrap[0]];if(N[n.wrap[1]]!==void 0)H.wrapT=N[n.wrap[1]]}}K.textures[x]=H}for(v in P.materials){x=P.materials[v];for(F in x.parameters)if(F=="envMap"||F=="map"||F=="lightMap")x.parameters[F]=K.textures[x.parameters[F]];else if(F=="shading")x.parameters[F]=
|
|
|
+x.parameters[F]=="flat"?THREE.FlatShading:THREE.SmoothShading;else if(F=="blending")x.parameters[F]=THREE[x.parameters[F]]?THREE[x.parameters[F]]:THREE.NormalBlending;else if(F=="combine")x.parameters[F]=x.parameters[F]=="MixOperation"?THREE.MixOperation:THREE.MultiplyOperation;else if(F=="vertexColors")if(x.parameters[F]=="face")x.parameters[F]=THREE.FaceColors;else if(x.parameters[F])x.parameters[F]=THREE.VertexColors;if(x.parameters.opacity!==void 0&&x.parameters.opacity<1)x.parameters.transparent=
|
|
|
+!0;if(x.parameters.normalMap){n=THREE.ShaderUtils.lib.normal;b=THREE.UniformsUtils.clone(n.uniforms);H=x.parameters.color;N=x.parameters.specular;C=x.parameters.ambient;G=x.parameters.shininess;b.tNormal.texture=K.textures[x.parameters.normalMap];if(x.parameters.normalMapFactor)b.uNormalScale.value=x.parameters.normalMapFactor;if(x.parameters.map)b.tDiffuse.texture=x.parameters.map,b.enableDiffuse.value=!0;if(x.parameters.lightMap)b.tAO.texture=x.parameters.lightMap,b.enableAO.value=!0;if(x.parameters.specularMap)b.tSpecular.texture=
|
|
|
+K.textures[x.parameters.specularMap],b.enableSpecular.value=!0;b.uDiffuseColor.value.setHex(H);b.uSpecularColor.value.setHex(N);b.uAmbientColor.value.setHex(C);b.uShininess.value=G;if(x.parameters.opacity)b.uOpacity.value=x.parameters.opacity;x=new THREE.MeshShaderMaterial({fragmentShader:n.fragmentShader,vertexShader:n.vertexShader,uniforms:b,lights:!0,fog:!0})}else x=new THREE[x.type](x.parameters);K.materials[v]=x}m();e.callbackSync(K)}}};
|
|
|
THREE.MarchingCubes=function(b,c){THREE.Object3D.call(this);this.materials=c instanceof Array?c:[c];this.init=function(b){this.isolation=80;this.size=b;this.size2=this.size*this.size;this.size3=this.size2*this.size;this.halfsize=this.size/2;this.delta=2/this.size;this.yd=this.size;this.zd=this.size2;this.field=new Float32Array(this.size3);this.normal_cache=new Float32Array(this.size3*3);this.vlist=new Float32Array(36);this.nlist=new Float32Array(36);this.firstDraw=!0;this.maxCount=4096;this.count=
|
|
|
-0;this.hasNormal=this.hasPos=!1;this.positionArray=new Float32Array(this.maxCount*3);this.normalArray=new Float32Array(this.maxCount*3)};this.lerp=function(b,c,g){return b+(c-b)*g};this.VIntX=function(b,c,g,j,h,m,p,t,n,o){h=(h-n)/(o-n);n=this.normal_cache;c[j]=m+h*this.delta;c[j+1]=p;c[j+2]=t;g[j]=this.lerp(n[b],n[b+3],h);g[j+1]=this.lerp(n[b+1],n[b+4],h);g[j+2]=this.lerp(n[b+2],n[b+5],h)};this.VIntY=function(b,c,g,j,h,m,p,t,n,o){h=(h-n)/(o-n);n=this.normal_cache;c[j]=m;c[j+1]=p+h*this.delta;c[j+
|
|
|
-2]=t;c=b+this.yd*3;g[j]=this.lerp(n[b],n[c],h);g[j+1]=this.lerp(n[b+1],n[c+1],h);g[j+2]=this.lerp(n[b+2],n[c+2],h)};this.VIntZ=function(b,c,g,j,h,m,p,t,n,o){h=(h-n)/(o-n);n=this.normal_cache;c[j]=m;c[j+1]=p;c[j+2]=t+h*this.delta;c=b+this.zd*3;g[j]=this.lerp(n[b],n[c],h);g[j+1]=this.lerp(n[b+1],n[c+1],h);g[j+2]=this.lerp(n[b+2],n[c+2],h)};this.compNorm=function(b){var c=b*3;this.normal_cache[c]==0&&(this.normal_cache[c]=this.field[b-1]-this.field[b+1],this.normal_cache[c+1]=this.field[b-this.yd]-this.field[b+
|
|
|
-this.yd],this.normal_cache[c+2]=this.field[b-this.zd]-this.field[b+this.zd])};this.polygonize=function(b,c,g,j,h,m){var p=j+1,t=j+this.yd,n=j+this.zd,o=p+this.yd,v=p+this.zd,u=j+this.yd+this.zd,x=p+this.yd+this.zd,z=0,y=this.field[j],w=this.field[p],I=this.field[t],C=this.field[o],K=this.field[n],F=this.field[v],B=this.field[u],O=this.field[x];y<h&&(z|=1);w<h&&(z|=2);I<h&&(z|=8);C<h&&(z|=4);K<h&&(z|=16);F<h&&(z|=32);B<h&&(z|=128);O<h&&(z|=64);var E=THREE.edgeTable[z];if(E==0)return 0;var H=this.delta,
|
|
|
-P=b+H,V=c+H,H=g+H;E&1&&(this.compNorm(j),this.compNorm(p),this.VIntX(j*3,this.vlist,this.nlist,0,h,b,c,g,y,w));E&2&&(this.compNorm(p),this.compNorm(o),this.VIntY(p*3,this.vlist,this.nlist,3,h,P,c,g,w,C));E&4&&(this.compNorm(t),this.compNorm(o),this.VIntX(t*3,this.vlist,this.nlist,6,h,b,V,g,I,C));E&8&&(this.compNorm(j),this.compNorm(t),this.VIntY(j*3,this.vlist,this.nlist,9,h,b,c,g,y,I));E&16&&(this.compNorm(n),this.compNorm(v),this.VIntX(n*3,this.vlist,this.nlist,12,h,b,c,H,K,F));E&32&&(this.compNorm(v),
|
|
|
-this.compNorm(x),this.VIntY(v*3,this.vlist,this.nlist,15,h,P,c,H,F,O));E&64&&(this.compNorm(u),this.compNorm(x),this.VIntX(u*3,this.vlist,this.nlist,18,h,b,V,H,B,O));E&128&&(this.compNorm(n),this.compNorm(u),this.VIntY(n*3,this.vlist,this.nlist,21,h,b,c,H,K,B));E&256&&(this.compNorm(j),this.compNorm(n),this.VIntZ(j*3,this.vlist,this.nlist,24,h,b,c,g,y,K));E&512&&(this.compNorm(p),this.compNorm(v),this.VIntZ(p*3,this.vlist,this.nlist,27,h,P,c,g,w,F));E&1024&&(this.compNorm(o),this.compNorm(x),this.VIntZ(o*
|
|
|
-3,this.vlist,this.nlist,30,h,P,V,g,C,O));E&2048&&(this.compNorm(t),this.compNorm(u),this.VIntZ(t*3,this.vlist,this.nlist,33,h,b,V,g,I,B));z<<=4;for(h=j=0;THREE.triTable[z+h]!=-1;)b=z+h,c=b+1,g=b+2,this.posnormtriv(this.vlist,this.nlist,3*THREE.triTable[b],3*THREE.triTable[c],3*THREE.triTable[g],m),h+=3,j++;return j};this.posnormtriv=function(b,c,g,j,h,m){var p=this.count*3;this.positionArray[p]=b[g];this.positionArray[p+1]=b[g+1];this.positionArray[p+2]=b[g+2];this.positionArray[p+3]=b[j];this.positionArray[p+
|
|
|
+0;this.hasNormal=this.hasPos=!1;this.positionArray=new Float32Array(this.maxCount*3);this.normalArray=new Float32Array(this.maxCount*3)};this.lerp=function(b,c,g){return b+(c-b)*g};this.VIntX=function(b,c,g,j,h,m,p,t,o,n){h=(h-o)/(n-o);o=this.normal_cache;c[j]=m+h*this.delta;c[j+1]=p;c[j+2]=t;g[j]=this.lerp(o[b],o[b+3],h);g[j+1]=this.lerp(o[b+1],o[b+4],h);g[j+2]=this.lerp(o[b+2],o[b+5],h)};this.VIntY=function(b,c,g,j,h,m,p,t,o,n){h=(h-o)/(n-o);o=this.normal_cache;c[j]=m;c[j+1]=p+h*this.delta;c[j+
|
|
|
+2]=t;c=b+this.yd*3;g[j]=this.lerp(o[b],o[c],h);g[j+1]=this.lerp(o[b+1],o[c+1],h);g[j+2]=this.lerp(o[b+2],o[c+2],h)};this.VIntZ=function(b,c,g,j,h,m,p,t,o,n){h=(h-o)/(n-o);o=this.normal_cache;c[j]=m;c[j+1]=p;c[j+2]=t+h*this.delta;c=b+this.zd*3;g[j]=this.lerp(o[b],o[c],h);g[j+1]=this.lerp(o[b+1],o[c+1],h);g[j+2]=this.lerp(o[b+2],o[c+2],h)};this.compNorm=function(b){var c=b*3;this.normal_cache[c]==0&&(this.normal_cache[c]=this.field[b-1]-this.field[b+1],this.normal_cache[c+1]=this.field[b-this.yd]-this.field[b+
|
|
|
+this.yd],this.normal_cache[c+2]=this.field[b-this.zd]-this.field[b+this.zd])};this.polygonize=function(b,c,g,j,h,m){var p=j+1,t=j+this.yd,o=j+this.zd,n=p+this.yd,v=p+this.zd,u=j+this.yd+this.zd,y=p+this.yd+this.zd,w=0,C=this.field[j],x=this.field[p],I=this.field[t],B=this.field[n],J=this.field[o],F=this.field[v],A=this.field[u],X=this.field[y];C<h&&(w|=1);x<h&&(w|=2);I<h&&(w|=8);B<h&&(w|=4);J<h&&(w|=16);F<h&&(w|=32);A<h&&(w|=128);X<h&&(w|=64);var G=THREE.edgeTable[w];if(G==0)return 0;var H=this.delta,
|
|
|
+L=b+H,O=c+H,H=g+H;G&1&&(this.compNorm(j),this.compNorm(p),this.VIntX(j*3,this.vlist,this.nlist,0,h,b,c,g,C,x));G&2&&(this.compNorm(p),this.compNorm(n),this.VIntY(p*3,this.vlist,this.nlist,3,h,L,c,g,x,B));G&4&&(this.compNorm(t),this.compNorm(n),this.VIntX(t*3,this.vlist,this.nlist,6,h,b,O,g,I,B));G&8&&(this.compNorm(j),this.compNorm(t),this.VIntY(j*3,this.vlist,this.nlist,9,h,b,c,g,C,I));G&16&&(this.compNorm(o),this.compNorm(v),this.VIntX(o*3,this.vlist,this.nlist,12,h,b,c,H,J,F));G&32&&(this.compNorm(v),
|
|
|
+this.compNorm(y),this.VIntY(v*3,this.vlist,this.nlist,15,h,L,c,H,F,X));G&64&&(this.compNorm(u),this.compNorm(y),this.VIntX(u*3,this.vlist,this.nlist,18,h,b,O,H,A,X));G&128&&(this.compNorm(o),this.compNorm(u),this.VIntY(o*3,this.vlist,this.nlist,21,h,b,c,H,J,A));G&256&&(this.compNorm(j),this.compNorm(o),this.VIntZ(j*3,this.vlist,this.nlist,24,h,b,c,g,C,J));G&512&&(this.compNorm(p),this.compNorm(v),this.VIntZ(p*3,this.vlist,this.nlist,27,h,L,c,g,x,F));G&1024&&(this.compNorm(n),this.compNorm(y),this.VIntZ(n*
|
|
|
+3,this.vlist,this.nlist,30,h,L,O,g,B,X));G&2048&&(this.compNorm(t),this.compNorm(u),this.VIntZ(t*3,this.vlist,this.nlist,33,h,b,O,g,I,A));w<<=4;for(h=j=0;THREE.triTable[w+h]!=-1;)b=w+h,c=b+1,g=b+2,this.posnormtriv(this.vlist,this.nlist,3*THREE.triTable[b],3*THREE.triTable[c],3*THREE.triTable[g],m),h+=3,j++;return j};this.posnormtriv=function(b,c,g,j,h,m){var p=this.count*3;this.positionArray[p]=b[g];this.positionArray[p+1]=b[g+1];this.positionArray[p+2]=b[g+2];this.positionArray[p+3]=b[j];this.positionArray[p+
|
|
|
4]=b[j+1];this.positionArray[p+5]=b[j+2];this.positionArray[p+6]=b[h];this.positionArray[p+7]=b[h+1];this.positionArray[p+8]=b[h+2];this.normalArray[p]=c[g];this.normalArray[p+1]=c[g+1];this.normalArray[p+2]=c[g+2];this.normalArray[p+3]=c[j];this.normalArray[p+4]=c[j+1];this.normalArray[p+5]=c[j+2];this.normalArray[p+6]=c[h];this.normalArray[p+7]=c[h+1];this.normalArray[p+8]=c[h+2];this.hasNormal=this.hasPos=!0;this.count+=3;this.count>=this.maxCount-3&&m(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;c<this.positionArray.length;c++)this.positionArray[c]=0;b(this)}};this.addBall=function(b,c,g,j,h){var m=this.size*Math.sqrt(j/h),p=g*this.size,t=c*this.size,n=b*this.size,o=Math.floor(p-m);o<1&&(o=1);p=Math.floor(p+m);p>this.size-1&&(p=this.size-1);var v=Math.floor(t-m);v<1&&(v=1);t=Math.floor(t+m);t>this.size-1&&(t=this.size-1);var u=Math.floor(n-m);u<1&&(u=1);m=Math.floor(n+m);m>this.size-1&&(m=this.size-
|
|
|
-1);for(var x,z,y,w,I,C;o<p;o++){n=this.size2*o;z=o/this.size-g;I=z*z;for(z=v;z<t;z++){y=n+this.size*z;x=z/this.size-c;C=x*x;for(x=u;x<m;x++)w=x/this.size-b,w=j/(1.0E-6+w*w+C+I)-h,w>0&&(this.field[y+x]+=w)}}};this.addPlaneX=function(b,c){var g,j,h,m,p,t=this.size,n=this.yd,o=this.zd,v=this.field,u=t*Math.sqrt(b/c);u>t&&(u=t);for(g=0;g<u;g++)if(j=g/t,j*=j,m=b/(1.0E-4+j)-c,m>0)for(j=0;j<t;j++){p=g+j*n;for(h=0;h<t;h++)v[o*h+p]+=m}};this.addPlaneY=function(b,c){var g,j,h,m,p,t,n=this.size,o=this.yd,v=
|
|
|
-this.zd,u=this.field,x=n*Math.sqrt(b/c);x>n&&(x=n);for(j=0;j<x;j++)if(g=j/n,g*=g,m=b/(1.0E-4+g)-c,m>0){p=j*o;for(g=0;g<n;g++){t=p+g;for(h=0;h<n;h++)u[v*h+t]+=m}}};this.addPlaneZ=function(b,c){var g,j,h,m,p,t;size=this.size;yd=this.yd;zd=this.zd;field=this.field;dist=size*Math.sqrt(b/c);dist>size&&(dist=size);for(h=0;h<dist;h++)if(g=h/size,g*=g,m=b/(1.0E-4+g)-c,m>0){p=zd*h;for(j=0;j<size;j++){t=p+j*yd;for(g=0;g<size;g++)field[t+g]+=m}}};this.reset=function(){var b;for(b=0;b<this.size3;b++)this.normal_cache[b*
|
|
|
-3]=0,this.field[b]=0};this.render=function(b){this.begin();var c,g,j,h,m,p,t,n,o,v=this.size-2;for(h=1;h<v;h++){o=this.size2*h;t=(h-this.halfsize)/this.halfsize;for(j=1;j<v;j++){n=o+this.size*j;p=(j-this.halfsize)/this.halfsize;for(g=1;g<v;g++)m=(g-this.halfsize)/this.halfsize,c=n+g,this.polygonize(m,p,t,c,this.isolation,b)}}this.end(b)};this.generateGeometry=function(){var b=0,c=new THREE.Geometry,g=[];this.render(function(j){var h,m,p,t,n,o,v,u;for(h=0;h<j.count;h++)v=h*3,n=v+1,u=v+2,m=j.positionArray[v],
|
|
|
-p=j.positionArray[n],t=j.positionArray[u],o=new THREE.Vector3(m,p,t),m=j.normalArray[v],p=j.normalArray[n],t=j.normalArray[u],v=new THREE.Vector3(m,p,t),v.normalize(),n=new THREE.Vertex(o),c.vertices.push(n),g.push(v);nfaces=j.count/3;for(h=0;h<nfaces;h++)v=(b+h)*3,n=v+1,u=v+2,o=g[v],m=g[n],p=g[u],v=new THREE.Face3(v,n,u,[o,m,p]),c.faces.push(v);b+=nfaces;j.count=0});return c};this.init(b)};THREE.MarchingCubes.prototype=new THREE.Object3D;THREE.MarchingCubes.prototype.constructor=THREE.MarchingCubes;
|
|
|
+this.hasNormal=this.hasPos=!1};this.end=function(b){if(this.count!=0){for(var c=this.count*3;c<this.positionArray.length;c++)this.positionArray[c]=0;b(this)}};this.addBall=function(b,c,g,j,h){var m=this.size*Math.sqrt(j/h),p=g*this.size,t=c*this.size,o=b*this.size,n=Math.floor(p-m);n<1&&(n=1);p=Math.floor(p+m);p>this.size-1&&(p=this.size-1);var v=Math.floor(t-m);v<1&&(v=1);t=Math.floor(t+m);t>this.size-1&&(t=this.size-1);var u=Math.floor(o-m);u<1&&(u=1);m=Math.floor(o+m);m>this.size-1&&(m=this.size-
|
|
|
+1);for(var y,w,C,x,I,B;n<p;n++){o=this.size2*n;w=n/this.size-g;I=w*w;for(w=v;w<t;w++){C=o+this.size*w;y=w/this.size-c;B=y*y;for(y=u;y<m;y++)x=y/this.size-b,x=j/(1.0E-6+x*x+B+I)-h,x>0&&(this.field[C+y]+=x)}}};this.addPlaneX=function(b,c){var g,j,h,m,p,t=this.size,o=this.yd,n=this.zd,v=this.field,u=t*Math.sqrt(b/c);u>t&&(u=t);for(g=0;g<u;g++)if(j=g/t,j*=j,m=b/(1.0E-4+j)-c,m>0)for(j=0;j<t;j++){p=g+j*o;for(h=0;h<t;h++)v[n*h+p]+=m}};this.addPlaneY=function(b,c){var g,j,h,m,p,t,o=this.size,n=this.yd,v=
|
|
|
+this.zd,u=this.field,y=o*Math.sqrt(b/c);y>o&&(y=o);for(j=0;j<y;j++)if(g=j/o,g*=g,m=b/(1.0E-4+g)-c,m>0){p=j*n;for(g=0;g<o;g++){t=p+g;for(h=0;h<o;h++)u[v*h+t]+=m}}};this.addPlaneZ=function(b,c){var g,j,h,m,p,t;size=this.size;yd=this.yd;zd=this.zd;field=this.field;dist=size*Math.sqrt(b/c);dist>size&&(dist=size);for(h=0;h<dist;h++)if(g=h/size,g*=g,m=b/(1.0E-4+g)-c,m>0){p=zd*h;for(j=0;j<size;j++){t=p+j*yd;for(g=0;g<size;g++)field[t+g]+=m}}};this.reset=function(){var b;for(b=0;b<this.size3;b++)this.normal_cache[b*
|
|
|
+3]=0,this.field[b]=0};this.render=function(b){this.begin();var c,g,j,h,m,p,t,o,n,v=this.size-2;for(h=1;h<v;h++){n=this.size2*h;t=(h-this.halfsize)/this.halfsize;for(j=1;j<v;j++){o=n+this.size*j;p=(j-this.halfsize)/this.halfsize;for(g=1;g<v;g++)m=(g-this.halfsize)/this.halfsize,c=o+g,this.polygonize(m,p,t,c,this.isolation,b)}}this.end(b)};this.generateGeometry=function(){var b=0,c=new THREE.Geometry,g=[];this.render(function(j){var h,m,p,t,o,n,v,u;for(h=0;h<j.count;h++)v=h*3,o=v+1,u=v+2,m=j.positionArray[v],
|
|
|
+p=j.positionArray[o],t=j.positionArray[u],n=new THREE.Vector3(m,p,t),m=j.normalArray[v],p=j.normalArray[o],t=j.normalArray[u],v=new THREE.Vector3(m,p,t),v.normalize(),o=new THREE.Vertex(n),c.vertices.push(o),g.push(v);nfaces=j.count/3;for(h=0;h<nfaces;h++)v=(b+h)*3,o=v+1,u=v+2,n=g[v],m=g[o],p=g[u],v=new THREE.Face3(v,o,u,[n,m,p]),c.faces.push(v);b+=nfaces;j.count=0});return c};this.init(b)};THREE.MarchingCubes.prototype=new THREE.Object3D;THREE.MarchingCubes.prototype.constructor=THREE.MarchingCubes;
|
|
|
THREE.edgeTable=new Int32Array([0,265,515,778,1030,1295,1541,1804,2060,2309,2575,2822,3082,3331,3593,3840,400,153,915,666,1430,1183,1941,1692,2460,2197,2975,2710,3482,3219,3993,3728,560,825,51,314,1590,1855,1077,1340,2620,2869,2111,2358,3642,3891,3129,3376,928,681,419,170,1958,1711,1445,1196,2988,2725,2479,2214,4010,3747,3497,3232,1120,1385,1635,1898,102,367,613,876,3180,3429,3695,3942,2154,2403,2665,2912,1520,1273,2035,1786,502,255,1013,764,3580,3317,4095,3830,2554,2291,3065,2800,1616,1881,1107,
|
|
|
1370,598,863,85,348,3676,3925,3167,3414,2650,2899,2137,2384,1984,1737,1475,1226,966,719,453,204,4044,3781,3535,3270,3018,2755,2505,2240,2240,2505,2755,3018,3270,3535,3781,4044,204,453,719,966,1226,1475,1737,1984,2384,2137,2899,2650,3414,3167,3925,3676,348,85,863,598,1370,1107,1881,1616,2800,3065,2291,2554,3830,4095,3317,3580,764,1013,255,502,1786,2035,1273,1520,2912,2665,2403,2154,3942,3695,3429,3180,876,613,367,102,1898,1635,1385,1120,3232,3497,3747,4010,2214,2479,2725,2988,1196,1445,1711,1958,170,
|
|
|
419,681,928,3376,3129,3891,3642,2358,2111,2869,2620,1340,1077,1855,1590,314,51,825,560,3728,3993,3219,3482,2710,2975,2197,2460,1692,1941,1183,1430,666,915,153,400,3840,3593,3331,3082,2822,2575,2309,2060,1804,1541,1295,1030,778,515,265,0]);
|
|
@@ -606,8 +608,8 @@ THREE.MeshCollider=function(b,c){this.mesh=b;this.box=c;this.numFaces=this.mesh.
|
|
|
THREE.CollisionSystem.prototype.rayCastAll=function(b){b.direction.normalize();this.hits.length=0;var c,e,f,g,j=0;c=0;for(e=this.colliders.length;c<e;c++)if(g=this.colliders[c],f=this.rayCast(b,g),f<Number.MAX_VALUE)g.distance=f,f>j?this.hits.push(g):this.hits.unshift(g),j=f;return this.hits};
|
|
|
THREE.CollisionSystem.prototype.rayCastNearest=function(b){var c=this.rayCastAll(b);if(c.length==0)return null;for(var e=0;c[e]instanceof THREE.MeshCollider;){var f=this.rayMesh(b,c[e]);if(f.dist<Number.MAX_VALUE){c[e].distance=f.dist;c[e].faceIndex=f.faceIndex;break}e++}if(e>c.length)return null;return c[e]};
|
|
|
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 e=this.makeRayLocal(b,c.mesh),f=Number.MAX_VALUE,g,j=0;j<c.numFaces;j++){var h=c.mesh.geometry.faces[j],m=c.mesh.geometry.vertices[h.a].position,p=c.mesh.geometry.vertices[h.b].position,t=c.mesh.geometry.vertices[h.c].position,n=h instanceof THREE.Face4?c.mesh.geometry.vertices[h.d].position:null;h instanceof THREE.Face3?(h=this.rayTriangle(e,m,p,t,f,this.collisionNormal,c.mesh),h<f&&(f=h,g=j,c.normal.copy(this.collisionNormal),c.normal.normalize())):
|
|
|
-h instanceof THREE.Face4&&(h=this.rayTriangle(e,m,p,n,f,this.collisionNormal,c.mesh),h<f&&(f=h,g=j,c.normal.copy(this.collisionNormal),c.normal.normalize()),h=this.rayTriangle(e,p,t,n,f,this.collisionNormal,c.mesh),h<f&&(f=h,g=j,c.normal.copy(this.collisionNormal),c.normal.normalize()))}return{dist:f,faceIndex:g}};
|
|
|
+THREE.CollisionSystem.prototype.rayMesh=function(b,c){for(var e=this.makeRayLocal(b,c.mesh),f=Number.MAX_VALUE,g,j=0;j<c.numFaces;j++){var h=c.mesh.geometry.faces[j],m=c.mesh.geometry.vertices[h.a].position,p=c.mesh.geometry.vertices[h.b].position,t=c.mesh.geometry.vertices[h.c].position,o=h instanceof THREE.Face4?c.mesh.geometry.vertices[h.d].position:null;h instanceof THREE.Face3?(h=this.rayTriangle(e,m,p,t,f,this.collisionNormal,c.mesh),h<f&&(f=h,g=j,c.normal.copy(this.collisionNormal),c.normal.normalize())):
|
|
|
+h instanceof THREE.Face4&&(h=this.rayTriangle(e,m,p,o,f,this.collisionNormal,c.mesh),h<f&&(f=h,g=j,c.normal.copy(this.collisionNormal),c.normal.normalize()),h=this.rayTriangle(e,p,t,o,f,this.collisionNormal,c.mesh),h<f&&(f=h,g=j,c.normal.copy(this.collisionNormal),c.normal.normalize()))}return{dist:f,faceIndex:g}};
|
|
|
THREE.CollisionSystem.prototype.rayTriangle=function(b,c,e,f,g,j,h){var m=THREE.CollisionSystem.__v1,p=THREE.CollisionSystem.__v2;j.set(0,0,0);m.sub(e,c);p.sub(f,e);j.cross(m,p);m=j.dot(b.direction);if(!(m<0))if(h.doubleSided||h.flipSided)j.multiplyScalar(-1),m*=-1;else return Number.MAX_VALUE;h=j.dot(c)-j.dot(b.origin);if(!(h<=0))return Number.MAX_VALUE;if(!(h>=m*g))return Number.MAX_VALUE;h/=m;m=THREE.CollisionSystem.__v3;m.copy(b.direction);m.multiplyScalar(h);m.addSelf(b.origin);Math.abs(j.x)>
|
|
|
Math.abs(j.y)?Math.abs(j.x)>Math.abs(j.z)?(b=m.y-c.y,j=e.y-c.y,g=f.y-c.y,m=m.z-c.z,e=e.z-c.z,f=f.z-c.z):(b=m.x-c.x,j=e.x-c.x,g=f.x-c.x,m=m.y-c.y,e=e.y-c.y,f=f.y-c.y):Math.abs(j.y)>Math.abs(j.z)?(b=m.x-c.x,j=e.x-c.x,g=f.x-c.x,m=m.z-c.z,e=e.z-c.z,f=f.z-c.z):(b=m.x-c.x,j=e.x-c.x,g=f.x-c.x,m=m.y-c.y,e=e.y-c.y,f=f.y-c.y);c=j*f-e*g;if(c==0)return Number.MAX_VALUE;c=1/c;f=(b*f-m*g)*c;if(!(f>=0))return Number.MAX_VALUE;c*=j*m-e*b;if(!(c>=0))return Number.MAX_VALUE;if(!(1-f-c>=0))return Number.MAX_VALUE;return h};
|
|
|
THREE.CollisionSystem.prototype.makeRayLocal=function(b,c){var e=THREE.CollisionSystem.__m;THREE.Matrix4.makeInvert(c.matrixWorld,e);var f=THREE.CollisionSystem.__r;f.origin.copy(b.origin);f.direction.copy(b.direction);e.multiplyVector3(f.origin);e.rotateAxis(f.direction);f.direction.normalize();return f};
|
|
@@ -617,9 +619,9 @@ f;if(e<c.min.z||e>c.max.z)return Number.MAX_VALUE;c.normal.set(0,m,0);break;case
|
|
|
THREE.CollisionSystem.prototype.raySphere=function(b,c){var e=c.center.clone().subSelf(b.origin);if(e.lengthSq<c.radiusSq)return-1;var f=e.dot(b.direction.clone());if(f<=0)return Number.MAX_VALUE;e=c.radiusSq-(e.lengthSq()-f*f);if(e>=0)return Math.abs(f)-Math.sqrt(e);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,e=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]),e=new THREE.BoxCollider(e,c);e.mesh=b;return e};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))};
|
|
|
-if(THREE.WebGLRenderer)THREE.AnaglyphWebGLRenderer=function(b){THREE.WebGLRenderer.call(this,b);var c=this,e=this.setSize,f=this.render,g=new THREE.Camera,j=new THREE.Camera,h=new THREE.Matrix4,m=new THREE.Matrix4,p,t,n;g.useTarget=j.useTarget=!1;g.matrixAutoUpdate=j.matrixAutoUpdate=!1;var b={minFilter:THREE.LinearFilter,magFilter:THREE.NearestFilter,format:THREE.RGBAFormat},o=new THREE.WebGLRenderTarget(512,512,b),v=new THREE.WebGLRenderTarget(512,512,b),u=new THREE.Camera(53,1,1,1E4);u.position.z=
|
|
|
-2;_material=new THREE.MeshShaderMaterial({uniforms:{mapLeft:{type:"t",value:0,texture:o},mapRight:{type:"t",value:1,texture:v}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"uniform sampler2D mapLeft;\nuniform sampler2D mapRight;\nvarying vec2 vUv;\nvoid main() {\nvec4 colorL, colorR;\nvec2 uv = vUv;\ncolorL = texture2D( mapLeft, uv );\ncolorR = texture2D( mapRight, uv );\ngl_FragColor = vec4( colorL.g * 0.7 + colorL.b * 0.3, colorR.g, colorR.b, colorL.a + colorR.a ) * 1.1;\n}"});
|
|
|
-var x=new THREE.Scene;x.addObject(new THREE.Mesh(new THREE.PlaneGeometry(2,2),_material));this.setSize=function(b,f){e.call(c,b,f);o.width=b;o.height=f;v.width=b;v.height=f};this.render=function(b,e){e.update(null,!0);if(p!==e.aspect||t!==e.near||n!==e.fov){p=e.aspect;t=e.near;n=e.fov;var w=e.projectionMatrix.clone(),I=125/30*0.5,C=I*t/125,K=t*Math.tan(n*Math.PI/360),F;h.n14=I;m.n14=-I;I=-K*p+C;F=K*p+C;w.n11=2*t/(F-I);w.n13=(F+I)/(F-I);g.projectionMatrix=w.clone();I=-K*p-C;F=K*p-C;w.n11=2*t/(F-I);
|
|
|
-w.n13=(F+I)/(F-I);j.projectionMatrix=w.clone()}g.matrix=e.matrixWorld.clone().multiplySelf(m);g.update(null,!0);g.position.copy(e.position);g.near=t;g.far=e.far;f.call(c,b,g,o,!0);j.matrix=e.matrixWorld.clone().multiplySelf(h);j.update(null,!0);j.position.copy(e.position);j.near=t;j.far=e.far;f.call(c,b,j,v,!0);f.call(c,x,u)}};
|
|
|
+if(THREE.WebGLRenderer)THREE.AnaglyphWebGLRenderer=function(b){THREE.WebGLRenderer.call(this,b);var c=this,e=this.setSize,f=this.render,g=new THREE.Camera,j=new THREE.Camera,h=new THREE.Matrix4,m=new THREE.Matrix4,p,t,o;g.useTarget=j.useTarget=!1;g.matrixAutoUpdate=j.matrixAutoUpdate=!1;var b={minFilter:THREE.LinearFilter,magFilter:THREE.NearestFilter,format:THREE.RGBAFormat},n=new THREE.WebGLRenderTarget(512,512,b),v=new THREE.WebGLRenderTarget(512,512,b),u=new THREE.Camera(53,1,1,1E4);u.position.z=
|
|
|
+2;_material=new THREE.MeshShaderMaterial({uniforms:{mapLeft:{type:"t",value:0,texture:n},mapRight:{type:"t",value:1,texture:v}},vertexShader:"varying vec2 vUv;\nvoid main() {\nvUv = vec2( uv.x, 1.0 - uv.y );\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}",fragmentShader:"uniform sampler2D mapLeft;\nuniform sampler2D mapRight;\nvarying vec2 vUv;\nvoid main() {\nvec4 colorL, colorR;\nvec2 uv = vUv;\ncolorL = texture2D( mapLeft, uv );\ncolorR = texture2D( mapRight, uv );\ngl_FragColor = vec4( colorL.g * 0.7 + colorL.b * 0.3, colorR.g, colorR.b, colorL.a + colorR.a ) * 1.1;\n}"});
|
|
|
+var y=new THREE.Scene;y.addObject(new THREE.Mesh(new THREE.PlaneGeometry(2,2),_material));this.setSize=function(b,f){e.call(c,b,f);n.width=b;n.height=f;v.width=b;v.height=f};this.render=function(b,e){e.update(null,!0);if(p!==e.aspect||t!==e.near||o!==e.fov){p=e.aspect;t=e.near;o=e.fov;var x=e.projectionMatrix.clone(),I=125/30*0.5,B=I*t/125,J=t*Math.tan(o*Math.PI/360),F;h.n14=I;m.n14=-I;I=-J*p+B;F=J*p+B;x.n11=2*t/(F-I);x.n13=(F+I)/(F-I);g.projectionMatrix=x.clone();I=-J*p-B;F=J*p-B;x.n11=2*t/(F-I);
|
|
|
+x.n13=(F+I)/(F-I);j.projectionMatrix=x.clone()}g.matrix=e.matrixWorld.clone().multiplySelf(m);g.update(null,!0);g.position.copy(e.position);g.near=t;g.far=e.far;f.call(c,b,g,n,!0);j.matrix=e.matrixWorld.clone().multiplySelf(h);j.update(null,!0);j.position.copy(e.position);j.near=t;j.far=e.far;f.call(c,b,j,v,!0);f.call(c,y,u)}};
|
|
|
if(THREE.WebGLRenderer)THREE.CrosseyedWebGLRenderer=function(b){THREE.WebGLRenderer.call(this,b);this.autoClear=!1;var c=this,e=this.setSize,f=this.render,g,j,h=new THREE.Camera,m=new THREE.Camera;c.separation=10;if(b&&b.separation!==void 0)c.separation=b.separation;(new THREE.Camera(53,window.innerWidth/2/window.innerHeight,1,1E4)).position.z=-10;this.setSize=function(b,f){e.call(c,b,f);g=b/2;j=f};this.render=function(b,e){this.clear();h.fov=e.fov;h.aspect=0.5*e.aspect;h.near=e.near;h.far=e.far;
|
|
|
h.updateProjectionMatrix();h.position.copy(e.position);h.target.position.copy(e.target.position);h.translateX(c.separation);m.projectionMatrix=h.projectionMatrix;m.position.copy(e.position);m.target.position.copy(e.target.position);m.translateX(-c.separation);this.setViewport(0,0,g,j);f.call(c,b,h);this.setViewport(g,0,g,j);f.call(c,b,m,!1)}};
|