Browse Source

Merging with alteredq's branch.

Mr.doob 14 years ago
parent
commit
02f81a26f4
6 changed files with 471 additions and 605 deletions
  1. 180 179
      build/Three.js
  2. 181 180
      build/ThreeDebug.js
  3. 0 187
      build/ThreeExtras.js
  4. 1 4
      examples/materials_gl.html
  5. 7 0
      src/materials/MeshDepthMaterial.js
  6. 102 55
      src/renderers/WebGLRenderer.js

+ 180 - 179
build/Three.js

@@ -1,179 +1,180 @@
-// Three.js r31 - http://github.com/mrdoob/three.js
-var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};
-THREE.Color.prototype={setRGB:function(a,b,g){this.r=a;this.g=b;this.b=g;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=~~a&16777215;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},updateHex:function(){this.hex=~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},updateRGBA:function(){this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgb("+~~(this.r*255)+
-","+~~(this.g*255)+","+~~(this.b*255)+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};
-THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*
-this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,b,g){this.x=a||0;this.y=b||0;this.z=g||0};
-THREE.Vector3.prototype={set:function(a,b,g){this.x=a;this.y=b;this.z=g;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},
-cross:function(a,b){this.x=a.y*b.z-a.z*b.y;this.y=a.z*b.x-a.x*b.z;this.z=a.x*b.y-a.y*b.x;return this},crossSelf:function(a){var b=this.x,g=this.y,d=this.z;this.x=g*a.z-d*a.y;this.y=d*a.x-b*a.z;this.z=b*a.y-g*a.x;return this},multiply:function(a,b){this.x=a.x*b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=
-a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return Math.sqrt(b*b+g*g+a*a)},distanceToSquared:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return b*b+g*g+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){var a=
-Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z);a>0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){return Math.abs(this.x)<1.0E-4&&Math.abs(this.y)<1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)},toString:function(){return"THREE.Vector3 ( "+this.x+", "+this.y+", "+this.z+" )"}};
-THREE.Vector4=function(a,b,g,d){this.x=a||0;this.y=b||0;this.z=g||0;this.w=d||1};
-THREE.Vector4.prototype={set:function(a,b,g,d){this.x=a;this.y=b;this.z=g;this.w=d;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=a.w||1;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;
-return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;this.w*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;this.w/=a;return this},lerpSelf:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)},toString:function(){return"THREE.Vector4 ("+this.x+", "+this.y+", "+this.z+", "+this.w+")"}};
-THREE.Ray=function(a,b){this.origin=a||new THREE.Vector3;this.direction=b||new THREE.Vector3};
-THREE.Ray.prototype={intersectScene:function(a){var b,g,d=a.objects,i=[];a=0;for(b=d.length;a<b;a++){g=d[a];if(g instanceof THREE.Mesh)i=i.concat(this.intersectObject(g))}i.sort(function(k,o){return k.distance-o.distance});return i},intersectObject:function(a){function b(N,q,Q,D){D=D.clone().subSelf(q);Q=Q.clone().subSelf(q);var e=N.clone().subSelf(q);N=D.dot(D);q=D.dot(Q);D=D.dot(e);var l=Q.dot(Q);Q=Q.dot(e);e=1/(N*l-q*q);l=(l*D-q*Q)*e;N=(N*Q-q*D)*e;return l>0&&N>0&&l+N<1}var g,d,i,k,o,m,n,c,C,B,
-w,v=a.geometry,J=v.vertices,P=[];g=0;for(d=v.faces.length;g<d;g++){i=v.faces[g];B=this.origin.clone();w=this.direction.clone();k=a.matrix.multiplyVector3(J[i.a].position.clone());o=a.matrix.multiplyVector3(J[i.b].position.clone());m=a.matrix.multiplyVector3(J[i.c].position.clone());n=i instanceof THREE.Face4?a.matrix.multiplyVector3(J[i.d].position.clone()):null;c=a.rotationMatrix.multiplyVector3(i.normal.clone());C=w.dot(c);if(C<0){c=c.dot((new THREE.Vector3).sub(k,B))/C;B=B.addSelf(w.multiplyScalar(c));
-if(i instanceof THREE.Face3){if(b(B,k,o,m)){i={distance:this.origin.distanceTo(B),point:B,face:i,object:a};P.push(i)}}else if(i instanceof THREE.Face4)if(b(B,k,o,n)||b(B,o,m,n)){i={distance:this.origin.distanceTo(B),point:B,face:i,object:a};P.push(i)}}}return P}};
-THREE.Rectangle=function(){function a(){k=d-b;o=i-g}var b,g,d,i,k,o,m=true;this.getX=function(){return b};this.getY=function(){return g};this.getWidth=function(){return k};this.getHeight=function(){return o};this.getLeft=function(){return b};this.getTop=function(){return g};this.getRight=function(){return d};this.getBottom=function(){return i};this.set=function(n,c,C,B){m=false;b=n;g=c;d=C;i=B;a()};this.addPoint=function(n,c){if(m){m=false;b=n;g=c;d=n;i=c}else{b=b<n?b:n;g=g<c?g:c;d=d>n?d:n;i=i>c?
-i:c}a()};this.add3Points=function(n,c,C,B,w,v){if(m){m=false;b=n<C?n<w?n:w:C<w?C:w;g=c<B?c<v?c:v:B<v?B:v;d=n>C?n>w?n:w:C>w?C:w;i=c>B?c>v?c:v:B>v?B:v}else{b=n<C?n<w?n<b?n:b:w<b?w:b:C<w?C<b?C:b:w<b?w:b;g=c<B?c<v?c<g?c:g:v<g?v:g:B<v?B<g?B:g:v<g?v:g;d=n>C?n>w?n>d?n:d:w>d?w:d:C>w?C>d?C:d:w>d?w:d;i=c>B?c>v?c>i?c:i:v>i?v:i:B>v?B>i?B:i:v>i?v:i}a()};this.addRectangle=function(n){if(m){m=false;b=n.getLeft();g=n.getTop();d=n.getRight();i=n.getBottom()}else{b=b<n.getLeft()?b:n.getLeft();g=g<n.getTop()?g:n.getTop();
-d=d>n.getRight()?d:n.getRight();i=i>n.getBottom()?i:n.getBottom()}a()};this.inflate=function(n){b-=n;g-=n;d+=n;i+=n;a()};this.minSelf=function(n){b=b>n.getLeft()?b:n.getLeft();g=g>n.getTop()?g:n.getTop();d=d<n.getRight()?d:n.getRight();i=i<n.getBottom()?i:n.getBottom();a()};this.instersects=function(n){return Math.min(d,n.getRight())-Math.max(b,n.getLeft())>=0&&Math.min(i,n.getBottom())-Math.max(g,n.getTop())>=0};this.empty=function(){m=true;i=d=g=b=0;a()};this.isEmpty=function(){return m};this.toString=
-function(){return"THREE.Rectangle ( left: "+b+", right: "+d+", top: "+g+", bottom: "+i+", width: "+k+", height: "+o+" )"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};
-THREE.Matrix4=function(a,b,g,d,i,k,o,m,n,c,C,B,w,v,J,P){this.n11=a||1;this.n12=b||0;this.n13=g||0;this.n14=d||0;this.n21=i||0;this.n22=k||1;this.n23=o||0;this.n24=m||0;this.n31=n||0;this.n32=c||0;this.n33=C||1;this.n34=B||0;this.n41=w||0;this.n42=v||0;this.n43=J||0;this.n44=P||1};
-THREE.Matrix4.prototype={identity:function(){this.n11=1;this.n21=this.n14=this.n13=this.n12=0;this.n22=1;this.n32=this.n31=this.n24=this.n23=0;this.n33=1;this.n43=this.n42=this.n41=this.n34=0;this.n44=1;return this},set:function(a,b,g,d,i,k,o,m,n,c,C,B,w,v,J,P){this.n11=a;this.n12=b;this.n13=g;this.n14=d;this.n21=i;this.n22=k;this.n23=o;this.n24=m;this.n31=n;this.n32=c;this.n33=C;this.n34=B;this.n41=w;this.n42=v;this.n43=J;this.n44=P;return this},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=
-a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44;return this},lookAt:function(a,b,g){var d=new THREE.Vector3,i=new THREE.Vector3,k=new THREE.Vector3;k.sub(a,b).normalize();d.cross(g,k).normalize();i.cross(k,d).normalize();this.n11=d.x;this.n12=d.y;this.n13=d.z;this.n14=-d.dot(a);this.n21=i.x;this.n22=i.y;this.n23=i.z;this.n24=-i.dot(a);this.n31=k.x;
-this.n32=k.y;this.n33=k.z;this.n34=-k.dot(a);this.n43=this.n42=this.n41=0;this.n44=1;return this},multiplyVector3:function(a){var b=a.x,g=a.y,d=a.z,i=1/(this.n41*b+this.n42*g+this.n43*d+this.n44);a.x=(this.n11*b+this.n12*g+this.n13*d+this.n14)*i;a.y=(this.n21*b+this.n22*g+this.n23*d+this.n24)*i;a.z=(this.n31*b+this.n32*g+this.n33*d+this.n34)*i;return a},multiplyVector4:function(a){var b=a.x,g=a.y,d=a.z,i=a.w;a.x=this.n11*b+this.n12*g+this.n13*d+this.n14*i;a.y=this.n21*b+this.n22*g+this.n23*d+this.n24*
-i;a.z=this.n31*b+this.n32*g+this.n33*d+this.n34*i;a.w=this.n41*b+this.n42*g+this.n43*d+this.n44*i;return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var g=a.n11,d=a.n12,i=a.n13,k=a.n14,o=a.n21,m=a.n22,n=a.n23,c=a.n24,C=a.n31,B=a.n32,
-w=a.n33,v=a.n34,J=a.n41,P=a.n42,N=a.n43,q=a.n44,Q=b.n11,D=b.n12,e=b.n13,l=b.n14,f=b.n21,p=b.n22,j=b.n23,h=b.n24,s=b.n31,E=b.n32,r=b.n33,u=b.n34,t=b.n41,K=b.n42,F=b.n43,G=b.n44;this.n11=g*Q+d*f+i*s+k*t;this.n12=g*D+d*p+i*E+k*K;this.n13=g*e+d*j+i*r+k*F;this.n14=g*l+d*h+i*u+k*G;this.n21=o*Q+m*f+n*s+c*t;this.n22=o*D+m*p+n*E+c*K;this.n23=o*e+m*j+n*r+c*F;this.n24=o*l+m*h+n*u+c*G;this.n31=C*Q+B*f+w*s+v*t;this.n32=C*D+B*p+w*E+v*K;this.n33=C*e+B*j+w*r+v*F;this.n34=C*l+B*h+w*u+v*G;this.n41=J*Q+P*f+N*s+q*t;
-this.n42=J*D+P*p+N*E+q*K;this.n43=J*e+P*j+N*r+q*F;this.n44=J*l+P*h+N*u+q*G;return this},multiplySelf:function(a){var b=this.n11,g=this.n12,d=this.n13,i=this.n14,k=this.n21,o=this.n22,m=this.n23,n=this.n24,c=this.n31,C=this.n32,B=this.n33,w=this.n34,v=this.n41,J=this.n42,P=this.n43,N=this.n44,q=a.n11,Q=a.n21,D=a.n31,e=a.n41,l=a.n12,f=a.n22,p=a.n32,j=a.n42,h=a.n13,s=a.n23,E=a.n33,r=a.n43,u=a.n14,t=a.n24,K=a.n34;a=a.n44;this.n11=b*q+g*Q+d*D+i*e;this.n12=b*l+g*f+d*p+i*j;this.n13=b*h+g*s+d*E+i*r;this.n14=
-b*u+g*t+d*K+i*a;this.n21=k*q+o*Q+m*D+n*e;this.n22=k*l+o*f+m*p+n*j;this.n23=k*h+o*s+m*E+n*r;this.n24=k*u+o*t+m*K+n*a;this.n31=c*q+C*Q+B*D+w*e;this.n32=c*l+C*f+B*p+w*j;this.n33=c*h+C*s+B*E+w*r;this.n34=c*u+C*t+B*K+w*a;this.n41=v*q+J*Q+P*D+N*e;this.n42=v*l+J*f+P*p+N*j;this.n43=v*h+J*s+P*E+N*r;this.n44=v*u+J*t+P*K+N*a;return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=
-a;this.n42*=a;this.n43*=a;this.n44*=a;return this},determinant:function(){return this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*
-this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44},transpose:function(){function a(b,g,d){var i=b[g];b[g]=b[d];
-b[d]=i}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,
-this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n14=a;d.n24=b;d.n34=g;return d};
-THREE.Matrix4.scaleMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n11=a;d.n22=b;d.n33=g;return d};THREE.Matrix4.rotationXMatrix=function(a){var b=new THREE.Matrix4;b.n22=b.n33=Math.cos(a);b.n32=Math.sin(a);b.n23=-b.n32;return b};THREE.Matrix4.rotationYMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n33=Math.cos(a);b.n13=Math.sin(a);b.n31=-b.n13;return b};THREE.Matrix4.rotationZMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n22=Math.cos(a);b.n21=Math.sin(a);b.n12=-b.n21;return b};
-THREE.Matrix4.rotationAxisAngleMatrix=function(a,b){var g=new THREE.Matrix4,d=Math.cos(b),i=Math.sin(b),k=1-d,o=a.x,m=a.y,n=a.z;g.n11=k*o*o+d;g.n12=k*o*m-i*n;g.n13=k*o*n+i*m;g.n21=k*o*m+i*n;g.n22=k*m*m+d;g.n23=k*m*n-i*o;g.n31=k*o*n-i*m;g.n32=k*m*n+i*o;g.n33=k*n*n+d;return g};
-THREE.Matrix4.makeInvert=function(a){var b=new THREE.Matrix4;b.n11=a.n23*a.n34*a.n42-a.n24*a.n33*a.n42+a.n24*a.n32*a.n43-a.n22*a.n34*a.n43-a.n23*a.n32*a.n44+a.n22*a.n33*a.n44;b.n12=a.n14*a.n33*a.n42-a.n13*a.n34*a.n42-a.n14*a.n32*a.n43+a.n12*a.n34*a.n43+a.n13*a.n32*a.n44-a.n12*a.n33*a.n44;b.n13=a.n13*a.n24*a.n42-a.n14*a.n23*a.n42+a.n14*a.n22*a.n43-a.n12*a.n24*a.n43-a.n13*a.n22*a.n44+a.n12*a.n23*a.n44;b.n14=a.n14*a.n23*a.n32-a.n13*a.n24*a.n32-a.n14*a.n22*a.n33+a.n12*a.n24*a.n33+a.n13*a.n22*a.n34-a.n12*
-a.n23*a.n34;b.n21=a.n24*a.n33*a.n41-a.n23*a.n34*a.n41-a.n24*a.n31*a.n43+a.n21*a.n34*a.n43+a.n23*a.n31*a.n44-a.n21*a.n33*a.n44;b.n22=a.n13*a.n34*a.n41-a.n14*a.n33*a.n41+a.n14*a.n31*a.n43-a.n11*a.n34*a.n43-a.n13*a.n31*a.n44+a.n11*a.n33*a.n44;b.n23=a.n14*a.n23*a.n41-a.n13*a.n24*a.n41-a.n14*a.n21*a.n43+a.n11*a.n24*a.n43+a.n13*a.n21*a.n44-a.n11*a.n23*a.n44;b.n24=a.n13*a.n24*a.n31-a.n14*a.n23*a.n31+a.n14*a.n21*a.n33-a.n11*a.n24*a.n33-a.n13*a.n21*a.n34+a.n11*a.n23*a.n34;b.n31=a.n22*a.n34*a.n41-a.n24*a.n32*
-a.n41+a.n24*a.n31*a.n42-a.n21*a.n34*a.n42-a.n22*a.n31*a.n44+a.n21*a.n32*a.n44;b.n32=a.n14*a.n32*a.n41-a.n12*a.n34*a.n41-a.n14*a.n31*a.n42+a.n11*a.n34*a.n42+a.n12*a.n31*a.n44-a.n11*a.n32*a.n44;b.n33=a.n13*a.n24*a.n41-a.n14*a.n22*a.n41+a.n14*a.n21*a.n42-a.n11*a.n24*a.n42-a.n12*a.n21*a.n44+a.n11*a.n22*a.n44;b.n34=a.n14*a.n22*a.n31-a.n12*a.n24*a.n31-a.n14*a.n21*a.n32+a.n11*a.n24*a.n32+a.n12*a.n21*a.n34-a.n11*a.n22*a.n34;b.n41=a.n23*a.n32*a.n41-a.n22*a.n33*a.n41-a.n23*a.n31*a.n42+a.n21*a.n33*a.n42+a.n22*
-a.n31*a.n43-a.n21*a.n32*a.n43;b.n42=a.n12*a.n33*a.n41-a.n13*a.n32*a.n41+a.n13*a.n31*a.n42-a.n11*a.n33*a.n42-a.n12*a.n31*a.n43+a.n11*a.n32*a.n43;b.n43=a.n13*a.n22*a.n41-a.n12*a.n23*a.n41-a.n13*a.n21*a.n42+a.n11*a.n23*a.n42+a.n12*a.n21*a.n43-a.n11*a.n22*a.n43;b.n44=a.n12*a.n23*a.n31-a.n13*a.n22*a.n31+a.n13*a.n21*a.n32-a.n11*a.n23*a.n32-a.n12*a.n21*a.n33+a.n11*a.n22*a.n33;b.multiplyScalar(1/a.determinant());return b};
-THREE.Matrix4.makeInvert3x3=function(a){var b=a.flatten();a=new THREE.Matrix3;var g=b[10]*b[5]-b[6]*b[9],d=-b[10]*b[1]+b[2]*b[9],i=b[6]*b[1]-b[2]*b[5],k=-b[10]*b[4]+b[6]*b[8],o=b[10]*b[0]-b[2]*b[8],m=-b[6]*b[0]+b[2]*b[4],n=b[9]*b[4]-b[5]*b[8],c=-b[9]*b[0]+b[1]*b[8],C=b[5]*b[0]-b[1]*b[4];b=b[0]*g+b[1]*k+b[2]*n;if(b==0)throw"matrix not invertible";b=1/b;a.m[0]=b*g;a.m[1]=b*d;a.m[2]=b*i;a.m[3]=b*k;a.m[4]=b*o;a.m[5]=b*m;a.m[6]=b*n;a.m[7]=b*c;a.m[8]=b*C;return a};
-THREE.Matrix4.makeFrustum=function(a,b,g,d,i,k){var o,m,n;o=new THREE.Matrix4;m=2*i/(b-a);n=2*i/(d-g);a=(b+a)/(b-a);g=(d+g)/(d-g);d=-(k+i)/(k-i);i=-2*k*i/(k-i);o.n11=m;o.n12=0;o.n13=a;o.n14=0;o.n21=0;o.n22=n;o.n23=g;o.n24=0;o.n31=0;o.n32=0;o.n33=d;o.n34=i;o.n41=0;o.n42=0;o.n43=-1;o.n44=0;return o};THREE.Matrix4.makePerspective=function(a,b,g,d){var i;a=g*Math.tan(a*Math.PI/360);i=-a;return THREE.Matrix4.makeFrustum(i*b,a*b,i,a,g,d)};
-THREE.Matrix4.makeOrtho=function(a,b,g,d,i,k){var o,m,n,c;o=new THREE.Matrix4;m=b-a;n=g-d;c=k-i;a=(b+a)/m;g=(g+d)/n;i=(k+i)/c;o.n11=2/m;o.n12=0;o.n13=0;o.n14=-a;o.n21=0;o.n22=2/n;o.n23=0;o.n24=-g;o.n31=0;o.n32=0;o.n33=-2/c;o.n34=-i;o.n41=0;o.n42=0;o.n43=0;o.n44=1;return o};
-THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3;this.positionWorld=new THREE.Vector3;this.positionScreen=new THREE.Vector4;this.normal=b||new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.normalScreen=new THREE.Vector3;this.tangent=new THREE.Vector4;this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};
-THREE.Face3=function(a,b,g,d,i){this.a=a;this.b=b;this.c=g;this.centroid=new THREE.Vector3;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.material=i instanceof Array?i:[i]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};
-THREE.Face4=function(a,b,g,d,i,k){this.a=a;this.b=b;this.c=g;this.d=d;this.centroid=new THREE.Vector3;this.normal=i instanceof THREE.Vector3?i:new THREE.Vector3;this.vertexNormals=i instanceof Array?i:[];this.material=k instanceof Array?k:[k]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(a,b){this.u=a||0;this.v=b||0};
-THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[];this.boundingSphere=this.boundingBox=null;this.geometryChunks={};this.hasTangents=false};
-THREE.Geometry.prototype={computeCentroids:function(){var a,b,g;a=0;for(b=this.faces.length;a<b;a++){g=this.faces[a];g.centroid.set(0,0,0);if(g instanceof THREE.Face3){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);g.centroid.divideScalar(3)}else if(g instanceof THREE.Face4){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);
-g.centroid.addSelf(this.vertices[g.d].position);g.centroid.divideScalar(4)}}},computeFaceNormals:function(a){var b,g,d,i,k,o,m=new THREE.Vector3,n=new THREE.Vector3;d=0;for(i=this.vertices.length;d<i;d++){k=this.vertices[d];k.normal.set(0,0,0)}d=0;for(i=this.faces.length;d<i;d++){k=this.faces[d];if(a&&k.vertexNormals.length){m.set(0,0,0);b=0;for(g=k.normal.length;b<g;b++)m.addSelf(k.vertexNormals[b]);m.divideScalar(3)}else{b=this.vertices[k.a];g=this.vertices[k.b];o=this.vertices[k.c];m.sub(o.position,
-g.position);n.sub(b.position,g.position);m.crossSelf(n)}m.isZero()||m.normalize();k.normal.copy(m)}},computeVertexNormals:function(){var a,b=[],g,d;a=0;for(vl=this.vertices.length;a<vl;a++)b[a]=new THREE.Vector3;a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal)}else if(d instanceof THREE.Face4){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal);b[d.d].addSelf(d.normal)}}a=
-0;for(vl=this.vertices.length;a<vl;a++)b[a].normalize();a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone()}else if(d instanceof THREE.Face4){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone();d.vertexNormals[3]=b[d.d].clone()}}},computeTangents:function(){function a(u,t,K,F){k=u.vertices[t].position;o=u.vertices[K].position;
-m=u.vertices[F].position;n=i[0];c=i[1];C=i[2];B=o.x-k.x;w=m.x-k.x;v=o.y-k.y;J=m.y-k.y;P=o.z-k.z;N=m.z-k.z;q=c.u-n.u;Q=C.u-n.u;D=c.v-n.v;e=C.v-n.v;l=1/(q*e-Q*D);h.set((e*B-D*w)*l,(e*v-D*J)*l,(e*P-D*N)*l);s.set((q*w-Q*B)*l,(q*J-Q*v)*l,(q*N-Q*P)*l);p[t].addSelf(h);p[K].addSelf(h);p[F].addSelf(h);j[t].addSelf(s);j[K].addSelf(s);j[F].addSelf(s)}var b,g,d,i,k,o,m,n,c,C,B,w,v,J,P,N,q,Q,D,e,l,f,p=[],j=[],h=new THREE.Vector3,s=new THREE.Vector3,E=new THREE.Vector3,r=new THREE.Vector3;f=new THREE.Vector3;b=
-0;for(g=this.vertices.length;b<g;b++){p[b]=new THREE.Vector3;j[b]=new THREE.Vector3}b=0;for(g=this.faces.length;b<g;b++){d=this.faces[b];i=this.uvs[b];if(d instanceof THREE.Face3){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);this.vertices[d.c].normal.copy(d.vertexNormals[2])}else if(d instanceof THREE.Face4){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);
-this.vertices[d.c].normal.copy(d.vertexNormals[2]);this.vertices[d.d].normal.copy(d.vertexNormals[3])}}b=0;for(g=this.vertices.length;b<g;b++){f.copy(this.vertices[b].normal);d=p[b];E.copy(d);E.subSelf(f.multiplyScalar(f.dot(d))).normalize();r.cross(this.vertices[b].normal,d);test=r.dot(j[b]);d=test<0?-1:1;this.vertices[b].tangent.set(E.x,E.y,E.z,d)}this.hasTangents=true},computeBoundingBox:function(){var a;if(this.vertices.length>0){this.bbox={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 b=1,g=this.vertices.length;b<g;b++){a=this.vertices[b];if(a.position.x<this.bbox.x[0])this.bbox.x[0]=a.position.x;else if(a.position.x>this.bbox.x[1])this.bbox.x[1]=a.position.x;if(a.position.y<this.bbox.y[0])this.bbox.y[0]=a.position.y;else if(a.position.y>this.bbox.y[1])this.bbox.y[1]=a.position.y;if(a.position.z<this.bbox.z[0])this.bbox.z[0]=a.position.z;else if(a.position.z>
-this.bbox.z[1])this.bbox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,g=this.vertices.length;b<g;b++)a=Math.max(a,this.vertices[b].position.length());this.boundingSphere={radius:a}},sortFacesByMaterial:function(){function a(C){var B=[];b=0;for(g=C.length;b<g;b++)C[b]==undefined?B.push("undefined"):B.push(C[b].toString());return B.join("_")}var b,g,d,i,k,o,m,n,c={};d=0;for(i=this.faces.length;d<i;d++){k=this.faces[d];o=
-k.material;m=a(o);if(c[m]==undefined)c[m]={hash:m,counter:0};n=c[m].hash+"_"+c[m].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:o,vertices:0};k=k instanceof THREE.Face3?3:4;if(this.geometryChunks[n].vertices+k>65535){c[m].counter+=1;n=c[m].hash+"_"+c[m].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:o,vertices:0}}this.geometryChunks[n].faces.push(d);this.geometryChunks[n].vertices+=k}},toString:function(){return"THREE.Geometry ( vertices: "+
-this.vertices+", faces: "+this.faces+", uvs: "+this.uvs+" )"}};
-THREE.Camera=function(a,b,g,d){this.position=new THREE.Vector3;this.target={position:new THREE.Vector3};this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4;this.projectionMatrix=THREE.Matrix4.makePerspective(a,b,g,d);this.autoUpdateMatrix=true;this.translateX=function(i){i=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(i);i.cross(i.clone(),this.up);this.position.addSelf(i);this.target.position.addSelf(i)};this.translateZ=function(i){i=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(i);
-this.position.subSelf(i);this.target.position.subSelf(i)};this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Light=function(a){this.color=new THREE.Color(a)};THREE.AmbientLight=function(a){THREE.Light.call(this,a)};THREE.AmbientLight.prototype=new THREE.Light;THREE.AmbientLight.prototype.constructor=THREE.AmbientLight;
-THREE.DirectionalLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3(0,1,0);this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.DirectionalLight;THREE.PointLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3;this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.PointLight;
-THREE.Object3D=function(){this.id=THREE.Object3DCounter.value++;this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.matrix=new THREE.Matrix4;this.translationMatrix=new THREE.Matrix4;this.rotationMatrix=new THREE.Matrix4;this.scaleMatrix=new THREE.Matrix4;this.screen=new THREE.Vector3;this.autoUpdateMatrix=this.visible=true;this.updateMatrix=function(){this.matrixPosition=THREE.Matrix4.translationMatrix(this.position.x,this.position.y,this.position.z);
-this.rotationMatrix=THREE.Matrix4.rotationXMatrix(this.rotation.x);this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationYMatrix(this.rotation.y));this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationZMatrix(this.rotation.z));this.scaleMatrix=THREE.Matrix4.scaleMatrix(this.scale.x,this.scale.y,this.scale.z);this.matrix.copy(this.matrixPosition);this.matrix.multiplySelf(this.rotationMatrix);this.matrix.multiplySelf(this.scaleMatrix)}};THREE.Object3DCounter={value:0};
-THREE.Particle=function(a){THREE.Object3D.call(this);this.material=a instanceof Array?a:[a];this.autoUpdateMatrix=false};THREE.Particle.prototype=new THREE.Object3D;THREE.Particle.prototype.constructor=THREE.Particle;THREE.Line=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b]};THREE.Line.prototype=new THREE.Object3D;THREE.Line.prototype.constructor=THREE.Line;
-THREE.Mesh=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b];this.overdraw=this.doubleSided=this.flipSided=false;this.geometry.boundingSphere||this.geometry.computeBoundingSphere()};THREE.Mesh.prototype=new THREE.Object3D;THREE.Mesh.prototype.constructor=THREE.Mesh;THREE.FlatShading=0;THREE.SmoothShading=1;THREE.NormalBlending=0;THREE.AdditiveBlending=1;THREE.SubtractiveBlending=2;
-THREE.LineBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;this.linewidth=1;this.linejoin=this.linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending;if(a.linewidth!==undefined)this.linewidth=a.linewidth;if(a.linecap!==undefined)this.linecap=a.linecap;if(a.linejoin!==undefined)this.linejoin=a.linejoin}this.toString=function(){return"THREE.LineBasicMaterial (<br/>color: "+
-this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>linewidth: "+this.linewidth+"<br/>linecap: "+this.linecap+"<br/>linejoin: "+this.linejoin+"<br/>)"}};
-THREE.MeshBasicMaterial=function(a){this.id=THREE.MeshBasicMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
-a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
-a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshBasicMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>blending: "+
-this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshBasicMaterialCounter={value:0};
-THREE.MeshLambertMaterial=function(a){this.id=THREE.MeshLambertMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
-a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
-a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshLambertMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+
-this.shading+"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/> )"}};THREE.MeshLambertMaterialCounter={value:0};
-THREE.MeshPhongMaterial=function(a){this.id=THREE.MeshPhongMaterialCounter.value++;this.color=new THREE.Color(16777215);this.ambient=new THREE.Color(328965);this.specular=new THREE.Color(1118481);this.shininess=30;this.env_map=this.specular_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap=
-"round";if(a){if(a.color!==undefined)this.color=new THREE.Color(a.color);if(a.ambient!==undefined)this.ambient=new THREE.Color(a.ambient);if(a.specular!==undefined)this.specular=new THREE.Color(a.specular);if(a.shininess!==undefined)this.shininess=a.shininess;if(a.map!==undefined)this.map=a.map;if(a.specular_map!==undefined)this.specular_map=a.specular_map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=
-a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=
-a.wireframe_linejoin}this.toString=function(){return"THREE.MeshPhongMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>ambient: "+this.ambient+"<br/>specular: "+this.specular+"<br/>shininess: "+this.shininess+"<br/>map: "+this.map+"<br/>specular_map: "+this.specular_map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+this.shading+"<br/>wireframe: "+
-this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>"+ +")"}};THREE.MeshPhongMaterialCounter={value:0};
-THREE.MeshDepthMaterial=function(a){this.near=1;this.far=1E3;this.opacity=1;this.blending=THREE.NormalBlending;if(a){if(a.near!==undefined)this.near=a.near;if(a.far!==undefined)this.far=a.far;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.__2near=2*this.near;this.__farPlusNear=this.far+this.near;this.__farMinusNear=this.far-this.near;this.toString=function(){return"THREE.MeshDepthMaterial"}};
-THREE.MeshNormalMaterial=function(a){this.opacity=1;this.shading=THREE.FlatShading;this.blending=THREE.NormalBlending;if(a){if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.MeshNormalMaterial"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};
-THREE.MeshShaderMaterial=function(a){this.id=THREE.MeshShaderMaterialCounter.value++;this.vertex_shader=this.fragment_shader="void main() {}";this.uniforms={};this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){if(a.fragment_shader!==undefined)this.fragment_shader=a.fragment_shader;if(a.vertex_shader!==undefined)this.vertex_shader=a.vertex_shader;if(a.uniforms!==
-undefined)this.uniforms=a.uniforms;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshShaderMaterial (<br/>id: "+this.id+
-"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshShaderMaterialCounter={value:0};
-THREE.ParticleBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.map=null;this.opacity=1;this.blending=THREE.NormalBlending;this.offset=new THREE.Vector2;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=a.map;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleBasicMaterial (<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>opacity: "+this.opacity+"<br/>blending: "+
-this.blending+"<br/>)"}};THREE.ParticleCircleMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleCircleMaterial (<br/>color: "+this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>)"}};
-THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};
-THREE.Texture=function(a,b,g,d,i,k){this.image=a;this.mapping=b!==undefined?b:new THREE.UVMapping;this.wrap_s=g!==undefined?g:THREE.ClampToEdgeWrapping;this.wrap_t=d!==undefined?d:THREE.ClampToEdgeWrapping;this.mag_filter=i!==undefined?i:THREE.LinearFilter;this.min_filter=k!==undefined?k:THREE.LinearMipMapLinearFilter;this.toString=function(){return"THREE.Texture (<br/>image: "+this.image+"<br/>wrap_s: "+this.wrap_s+"<br/>wrap_t: "+this.wrap_t+"<br/>mag_filter: "+this.mag_filter+"<br/>min_filter: "+
-this.min_filter+"<br/>)"}};THREE.MultiplyOperation=0;THREE.MixOperation=1;THREE.RepeatWrapping=0;THREE.ClampToEdgeWrapping=1;THREE.MirroredRepeatWrapping=2;THREE.NearestFilter=3;THREE.NearestMipMapNearestFilter=4;THREE.NearestMipMapLinearFilter=5;THREE.LinearFilter=6;THREE.LinearMipMapNearestFilter=7;THREE.LinearMipMapLinearFilter=8;THREE.CubeReflectionMapping=function(){};THREE.CubeRefractionMapping=function(){};THREE.LatitudeReflectionMapping=function(){};THREE.LatitudeRefractionMapping=function(){};
-THREE.SphericalReflectionMapping=function(){};THREE.SphericalRefractionMapping=function(){};THREE.UVMapping=function(){};
-THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.indexOf(a)===-1&&this.objects.push(a)};this.removeObject=function(a){a=this.objects.indexOf(a);a!==-1&&this.objects.splice(a,1)};this.addLight=function(a){this.lights.indexOf(a)===-1&&this.lights.push(a)};this.removeLight=function(a){a=this.lights.indexOf(a);a!==-1&&this.lights.splice(a,1)};this.toString=function(){return"THREE.Scene ( "+this.objects+" )"}};
-THREE.Projector=function(){function a(p,j){return j.z-p.z}function b(p,j){var h=0,s=1,E=p.z+p.w,r=j.z+j.w,u=-p.z+p.w,t=-j.z+j.w;if(E>=0&&r>=0&&u>=0&&t>=0)return true;else if(E<0&&r<0||u<0&&t<0)return false;else{if(E<0)h=Math.max(h,E/(E-r));else if(r<0)s=Math.min(s,E/(E-r));if(u<0)h=Math.max(h,u/(u-t));else if(t<0)s=Math.min(s,u/(u-t));if(s<h)return false;else{p.lerpSelf(j,h);j.lerpSelf(p,1-s);return true}}}var g,d,i=[],k,o,m,n=[],c,C,B=[],w,v,J=[],P=new THREE.Vector4,N=new THREE.Vector4,q=new THREE.Matrix4,
-Q=new THREE.Matrix4,D=[],e=new THREE.Vector4,l=new THREE.Vector4,f;this.projectObjects=function(p,j,h){var s=[],E,r;d=0;q.multiply(j.projectionMatrix,j.matrix);D[0]=new THREE.Vector4(q.n41-q.n11,q.n42-q.n12,q.n43-q.n13,q.n44-q.n14);D[1]=new THREE.Vector4(q.n41+q.n11,q.n42+q.n12,q.n43+q.n13,q.n44+q.n14);D[2]=new THREE.Vector4(q.n41+q.n21,q.n42+q.n22,q.n43+q.n23,q.n44+q.n24);D[3]=new THREE.Vector4(q.n41-q.n21,q.n42-q.n22,q.n43-q.n23,q.n44-q.n24);D[4]=new THREE.Vector4(q.n41-q.n31,q.n42-q.n32,q.n43-
-q.n33,q.n44-q.n34);D[5]=new THREE.Vector4(q.n41+q.n31,q.n42+q.n32,q.n43+q.n33,q.n44+q.n34);j=0;for(E=D.length;j<E;j++){r=D[j];r.divideScalar(Math.sqrt(r.x*r.x+r.y*r.y+r.z*r.z))}E=p.objects;p=0;for(j=E.length;p<j;p++){r=E[p];var u;if(!(u=r.visible===false)){a:{u=void 0;for(var t=r.position,K=-r.geometry.boundingSphere.radius*Math.max(r.scale.x,Math.max(r.scale.y,r.scale.z)),F=0;F<6;F++){u=D[F].x*t.x+D[F].y*t.y+D[F].z*t.z+D[F].w;if(u<=K){u=false;break a}}u=true}u=u===false}if(!u){g=i[d]=i[d]||new THREE.RenderableObject;
-P.copy(r.position);q.multiplyVector3(P);g.object=r;g.z=P.z;s.push(g);d++}}h&&s.sort(a);return s};this.projectScene=function(p,j,h){var s=[],E,r,u,t,K,F,G,R,X,V,M,z,y,L,S,H;m=C=v=0;j.autoUpdateMatrix&&j.updateMatrix();q.multiply(j.projectionMatrix,j.matrix);F=p.objects;p=0;for(E=F.length;p<E;p++){G=F[p];if(G.visible!==false){G.autoUpdateMatrix&&G.updateMatrix();R=G.matrix;X=G.rotationMatrix;V=G.material;M=G.overdraw;if(G instanceof THREE.Mesh){z=G.geometry;y=z.vertices;r=0;for(u=y.length;r<u;r++){L=
-y[r];L.positionWorld.copy(L.position);R.multiplyVector3(L.positionWorld);t=L.positionScreen;t.copy(L.positionWorld);q.multiplyVector4(t);t.multiplyScalar(1/t.w);L.__visible=t.z>0&&t.z<1}z=z.faces;r=0;for(u=z.length;r<u;r++){L=z[r];if(L instanceof THREE.Face3){t=y[L.a];K=y[L.b];S=y[L.c];if(t.__visible&&K.__visible&&S.__visible)if(G.doubleSided||G.flipSided!=(S.positionScreen.x-t.positionScreen.x)*(K.positionScreen.y-t.positionScreen.y)-(S.positionScreen.y-t.positionScreen.y)*(K.positionScreen.x-t.positionScreen.x)<
-0){k=n[m]=n[m]||new THREE.RenderableFace3;k.v1.positionWorld.copy(t.positionWorld);k.v2.positionWorld.copy(K.positionWorld);k.v3.positionWorld.copy(S.positionWorld);k.v1.positionScreen.copy(t.positionScreen);k.v2.positionScreen.copy(K.positionScreen);k.v3.positionScreen.copy(S.positionScreen);k.normalWorld.copy(L.normal);X.multiplyVector3(k.normalWorld);k.centroidWorld.copy(L.centroid);R.multiplyVector3(k.centroidWorld);k.centroidScreen.copy(k.centroidWorld);q.multiplyVector3(k.centroidScreen);S=
-L.vertexNormals;f=k.vertexNormalsWorld;t=0;for(K=S.length;t<K;t++){H=f[t]=f[t]||new THREE.Vector3;H.copy(S[t]);X.multiplyVector3(H)}k.z=k.centroidScreen.z;k.meshMaterial=V;k.faceMaterial=L.material;k.overdraw=M;if(G.geometry.uvs[r]){k.uvs[0]=G.geometry.uvs[r][0];k.uvs[1]=G.geometry.uvs[r][1];k.uvs[2]=G.geometry.uvs[r][2]}s.push(k);m++}}else if(L instanceof THREE.Face4){t=y[L.a];K=y[L.b];S=y[L.c];H=y[L.d];if(t.__visible&&K.__visible&&S.__visible&&H.__visible)if(G.doubleSided||G.flipSided!=((H.positionScreen.x-
-t.positionScreen.x)*(K.positionScreen.y-t.positionScreen.y)-(H.positionScreen.y-t.positionScreen.y)*(K.positionScreen.x-t.positionScreen.x)<0||(K.positionScreen.x-S.positionScreen.x)*(H.positionScreen.y-S.positionScreen.y)-(K.positionScreen.y-S.positionScreen.y)*(H.positionScreen.x-S.positionScreen.x)<0)){k=n[m]=n[m]||new THREE.RenderableFace3;k.v1.positionWorld.copy(t.positionWorld);k.v2.positionWorld.copy(K.positionWorld);k.v3.positionWorld.copy(H.positionWorld);k.v1.positionScreen.copy(t.positionScreen);
-k.v2.positionScreen.copy(K.positionScreen);k.v3.positionScreen.copy(H.positionScreen);k.normalWorld.copy(L.normal);X.multiplyVector3(k.normalWorld);k.centroidWorld.copy(L.centroid);R.multiplyVector3(k.centroidWorld);k.centroidScreen.copy(k.centroidWorld);q.multiplyVector3(k.centroidScreen);k.z=k.centroidScreen.z;k.meshMaterial=V;k.faceMaterial=L.material;k.overdraw=M;if(G.geometry.uvs[r]){k.uvs[0]=G.geometry.uvs[r][0];k.uvs[1]=G.geometry.uvs[r][1];k.uvs[2]=G.geometry.uvs[r][3]}s.push(k);m++;o=n[m]=
-n[m]||new THREE.RenderableFace3;o.v1.positionWorld.copy(K.positionWorld);o.v2.positionWorld.copy(S.positionWorld);o.v3.positionWorld.copy(H.positionWorld);o.v1.positionScreen.copy(K.positionScreen);o.v2.positionScreen.copy(S.positionScreen);o.v3.positionScreen.copy(H.positionScreen);o.normalWorld.copy(k.normalWorld);o.centroidWorld.copy(k.centroidWorld);o.centroidScreen.copy(k.centroidScreen);o.z=o.centroidScreen.z;o.meshMaterial=V;o.faceMaterial=L.material;o.overdraw=M;if(G.geometry.uvs[r]){o.uvs[0]=
-G.geometry.uvs[r][1];o.uvs[1]=G.geometry.uvs[r][2];o.uvs[2]=G.geometry.uvs[r][3]}s.push(o);m++}}}}else if(G instanceof THREE.Line){Q.multiply(q,R);y=G.geometry.vertices;L=y[0];L.positionScreen.copy(L.position);Q.multiplyVector4(L.positionScreen);r=1;for(u=y.length;r<u;r++){t=y[r];t.positionScreen.copy(t.position);Q.multiplyVector4(t.positionScreen);K=y[r-1];e.copy(t.positionScreen);l.copy(K.positionScreen);if(b(e,l)){e.multiplyScalar(1/e.w);l.multiplyScalar(1/l.w);c=B[C]=B[C]||new THREE.RenderableLine;
-c.v1.positionScreen.copy(e);c.v2.positionScreen.copy(l);c.z=Math.max(e.z,l.z);c.material=G.material;s.push(c);C++}}}else if(G instanceof THREE.Particle){N.set(G.position.x,G.position.y,G.position.z,1);q.multiplyVector4(N);N.z/=N.w;if(N.z>0&&N.z<1){w=J[v]=J[v]||new THREE.RenderableParticle;w.x=N.x/N.w;w.y=N.y/N.w;w.z=N.z;w.rotation=G.rotation.z;w.scale.x=G.scale.x*Math.abs(w.x-(N.x+j.projectionMatrix.n11)/(N.w+j.projectionMatrix.n14));w.scale.y=G.scale.y*Math.abs(w.y-(N.y+j.projectionMatrix.n22)/(N.w+
-j.projectionMatrix.n24));w.material=G.material;s.push(w);v++}}}}h&&s.sort(a);return s};this.unprojectVector=function(p,j){var h=new THREE.Matrix4;h.multiply(THREE.Matrix4.makeInvert(j.matrix),THREE.Matrix4.makeInvert(j.projectionMatrix));h.multiplyVector3(p);return p}};
-THREE.DOMRenderer=function(){THREE.Renderer.call(this);var a=null,b=new THREE.Projector,g,d,i,k;this.domElement=document.createElement("div");this.setSize=function(o,m){g=o;d=m;i=g/2;k=d/2};this.render=function(o,m){var n,c,C,B,w,v,J,P;a=b.projectScene(o,m);n=0;for(c=a.length;n<c;n++){w=a[n];if(w instanceof THREE.RenderableParticle){J=w.x*i+i;P=w.y*k+k;C=0;for(B=w.material.length;C<B;C++){v=w.material[C];if(v instanceof THREE.ParticleDOMMaterial){v=v.domElement;v.style.left=J+"px";v.style.top=P+"px"}}}}}};
-THREE.CanvasRenderer=function(){var a=null,b=new THREE.Projector,g=document.createElement("canvas"),d,i,k,o,m=g.getContext("2d"),n=1,c=0,C=null,B=null,w=1,v,J,P,N,q,Q,D,e,l,f=new THREE.Color,p=new THREE.Color,j=new THREE.Color,h=new THREE.Color,s=new THREE.Color,E,r,u,t,K,F,G,R,X,V,M=new THREE.Rectangle,z=new THREE.Rectangle,y=new THREE.Rectangle,L=false,S=new THREE.Color,H=new THREE.Color,U=new THREE.Color,aa=new THREE.Color,Ja=Math.PI*2,Y=new THREE.Vector3,na,oa,Aa,da,pa,ta,la=16;na=document.createElement("canvas");
-na.width=na.height=2;oa=na.getContext("2d");oa.fillStyle="rgba(0,0,0,1)";oa.fillRect(0,0,2,2);Aa=oa.getImageData(0,0,2,2);da=Aa.data;pa=document.createElement("canvas");pa.width=pa.height=la;ta=pa.getContext("2d");ta.translate(-la/2,-la/2);ta.scale(la,la);la--;this.domElement=g;this.sortElements=this.sortObjects=this.autoClear=true;this.setSize=function(ga,ua){d=ga;i=ua;k=d/2;o=i/2;g.width=d;g.height=i;M.set(-k,-o,k,o)};this.clear=function(){if(!z.isEmpty()){z.inflate(1);z.minSelf(M);m.clearRect(z.getX(),
-z.getY(),z.getWidth(),z.getHeight());z.empty()}};this.render=function(ga,ua){function Ka(x){var T,O,A,I=x.lights;H.setRGB(0,0,0);U.setRGB(0,0,0);aa.setRGB(0,0,0);x=0;for(T=I.length;x<T;x++){O=I[x];A=O.color;if(O instanceof THREE.AmbientLight){H.r+=A.r;H.g+=A.g;H.b+=A.b}else if(O instanceof THREE.DirectionalLight){U.r+=A.r;U.g+=A.g;U.b+=A.b}else if(O instanceof THREE.PointLight){aa.r+=A.r;aa.g+=A.g;aa.b+=A.b}}}function va(x,T,O,A){var I,W,$,ba,ca=x.lights;x=0;for(I=ca.length;x<I;x++){W=ca[x];$=W.color;
-ba=W.intensity;if(W instanceof THREE.DirectionalLight){W=O.dot(W.position)*ba;if(W>0){A.r+=$.r*W;A.g+=$.g*W;A.b+=$.b*W}}else if(W instanceof THREE.PointLight){Y.sub(W.position,T);Y.normalize();W=O.dot(Y)*ba;if(W>0){A.r+=$.r*W;A.g+=$.g*W;A.b+=$.b*W}}}}function La(x,T,O){if(O.opacity!=0){Ba(O.opacity);wa(O.blending);var A,I,W,$,ba,ca;if(O instanceof THREE.ParticleBasicMaterial){if(O.map){$=O.map;ba=$.width>>1;ca=$.height>>1;I=T.scale.x*k;W=T.scale.y*o;O=I*ba;A=W*ca;y.set(x.x-O,x.y-A,x.x+O,x.y+A);if(M.instersects(y)){m.save();
-m.translate(x.x,x.y);m.rotate(-T.rotation);m.scale(I,-W);m.translate(-ba,-ca);m.drawImage($,0,0);m.restore()}}}else if(O instanceof THREE.ParticleCircleMaterial){if(L){S.r=H.r+U.r+aa.r;S.g=H.g+U.g+aa.g;S.b=H.b+U.b+aa.b;f.r=O.color.r*S.r;f.g=O.color.g*S.g;f.b=O.color.b*S.b;f.updateStyleString()}else f.__styleString=O.color.__styleString;O=T.scale.x*k;A=T.scale.y*o;y.set(x.x-O,x.y-A,x.x+O,x.y+A);if(M.instersects(y)){I=f.__styleString;if(B!=I)m.fillStyle=B=I;m.save();m.translate(x.x,x.y);m.rotate(-T.rotation);
-m.scale(O,A);m.beginPath();m.arc(0,0,1,0,Ja,true);m.closePath();m.fill();m.restore()}}}}function Ma(x,T,O,A){if(A.opacity!=0){Ba(A.opacity);wa(A.blending);m.beginPath();m.moveTo(x.positionScreen.x,x.positionScreen.y);m.lineTo(T.positionScreen.x,T.positionScreen.y);m.closePath();if(A instanceof THREE.LineBasicMaterial){f.__styleString=A.color.__styleString;x=A.linewidth;if(w!=x)m.lineWidth=w=x;x=f.__styleString;if(C!=x)m.strokeStyle=C=x;m.stroke();y.inflate(A.linewidth*2)}}}function Fa(x,T,O,A,I,W){if(I.opacity!=
-0){Ba(I.opacity);wa(I.blending);N=x.positionScreen.x;q=x.positionScreen.y;Q=T.positionScreen.x;D=T.positionScreen.y;e=O.positionScreen.x;l=O.positionScreen.y;m.beginPath();m.moveTo(N,q);m.lineTo(Q,D);m.lineTo(e,l);m.lineTo(N,q);m.closePath();if(I instanceof THREE.MeshBasicMaterial)if(I.map)I.map.image.loaded&&I.map.mapping instanceof THREE.UVMapping&&qa(N,q,Q,D,e,l,I.map.image,A.uvs[0].u,A.uvs[0].v,A.uvs[1].u,A.uvs[1].v,A.uvs[2].u,A.uvs[2].v);else if(I.env_map){if(I.env_map.image.loaded)if(I.env_map.mapping instanceof
-THREE.SphericalReflectionMapping){x=ua.matrix;Y.copy(A.vertexNormalsWorld[0]);K=(Y.x*x.n11+Y.y*x.n12+Y.z*x.n13)*0.5+0.5;F=-(Y.x*x.n21+Y.y*x.n22+Y.z*x.n23)*0.5+0.5;Y.copy(A.vertexNormalsWorld[1]);G=(Y.x*x.n11+Y.y*x.n12+Y.z*x.n13)*0.5+0.5;R=-(Y.x*x.n21+Y.y*x.n22+Y.z*x.n23)*0.5+0.5;Y.copy(A.vertexNormalsWorld[2]);X=(Y.x*x.n11+Y.y*x.n12+Y.z*x.n13)*0.5+0.5;V=-(Y.x*x.n21+Y.y*x.n22+Y.z*x.n23)*0.5+0.5;qa(N,q,Q,D,e,l,I.env_map.image,K,F,G,R,X,V)}}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):
-ya(I.color.__styleString);else if(I instanceof THREE.MeshLambertMaterial){if(I.map&&!I.wireframe){I.map.mapping instanceof THREE.UVMapping&&qa(N,q,Q,D,e,l,I.map.image,A.uvs[0].u,A.uvs[0].v,A.uvs[1].u,A.uvs[1].v,A.uvs[2].u,A.uvs[2].v);wa(THREE.SubtractiveBlending)}if(L)if(!I.wireframe&&I.shading==THREE.SmoothShading&&A.vertexNormalsWorld.length==3){p.r=j.r=h.r=H.r;p.g=j.g=h.g=H.g;p.b=j.b=h.b=H.b;va(W,A.v1.positionWorld,A.vertexNormalsWorld[0],p);va(W,A.v2.positionWorld,A.vertexNormalsWorld[1],j);va(W,
-A.v3.positionWorld,A.vertexNormalsWorld[2],h);s.r=(j.r+h.r)*0.5;s.g=(j.g+h.g)*0.5;s.b=(j.b+h.b)*0.5;t=Ga(p,j,h,s);qa(N,q,Q,D,e,l,t,0,0,1,0,0,1)}else{S.r=H.r;S.g=H.g;S.b=H.b;va(W,A.centroidWorld,A.normalWorld,S);f.r=I.color.r*S.r;f.g=I.color.g*S.g;f.b=I.color.b*S.b;f.updateStyleString();I.wireframe?xa(f.__styleString,I.wireframe_linewidth):ya(f.__styleString)}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):ya(I.color.__styleString)}else if(I instanceof THREE.MeshDepthMaterial){E=I.__2near;
-r=I.__farPlusNear;u=I.__farMinusNear;p.r=p.g=p.b=1-E/(r-x.positionScreen.z*u);j.r=j.g=j.b=1-E/(r-T.positionScreen.z*u);h.r=h.g=h.b=1-E/(r-O.positionScreen.z*u);s.r=(j.r+h.r)*0.5;s.g=(j.g+h.g)*0.5;s.b=(j.b+h.b)*0.5;t=Ga(p,j,h,s);qa(N,q,Q,D,e,l,t,0,0,1,0,0,1)}else if(I instanceof THREE.MeshNormalMaterial){f.r=Ca(A.normalWorld.x);f.g=Ca(A.normalWorld.y);f.b=Ca(A.normalWorld.z);f.updateStyleString();I.wireframe?xa(f.__styleString,I.wireframe_linewidth):ya(f.__styleString)}}}function xa(x,T){if(C!=x)m.strokeStyle=
-C=x;if(w!=T)m.lineWidth=w=T;m.stroke();y.inflate(T*2)}function ya(x){if(B!=x)m.fillStyle=B=x;m.fill()}function qa(x,T,O,A,I,W,$,ba,ca,ha,ea,ia,ra){var ka,ja;ka=$.width-1;ja=$.height-1;ba*=ka;ca*=ja;ha*=ka;ea*=ja;ia*=ka;ra*=ja;O-=x;A-=T;I-=x;W-=T;ha-=ba;ea-=ca;ia-=ba;ra-=ca;ja=1/(ha*ra-ia*ea);ka=(ra*O-ea*I)*ja;ea=(ra*A-ea*W)*ja;O=(ha*I-ia*O)*ja;A=(ha*W-ia*A)*ja;x=x-ka*ba-O*ca;T=T-ea*ba-A*ca;m.save();m.transform(ka,ea,O,A,x,T);m.clip();m.drawImage($,0,0);m.restore()}function Ba(x){if(n!=x)m.globalAlpha=
-n=x}function wa(x){if(c!=x){switch(x){case THREE.NormalBlending:m.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:m.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:m.globalCompositeOperation="darker"}c=x}}function Ga(x,T,O,A){var I=~~(x.r*255),W=~~(x.g*255);x=~~(x.b*255);var $=~~(T.r*255),ba=~~(T.g*255);T=~~(T.b*255);var ca=~~(O.r*255),ha=~~(O.g*255);O=~~(O.b*255);var ea=~~(A.r*255),ia=~~(A.g*255);A=~~(A.b*255);da[0]=I<0?0:I>255?255:I;da[1]=W<0?0:W>
-255?255:W;da[2]=x<0?0:x>255?255:x;da[4]=$<0?0:$>255?255:$;da[5]=ba<0?0:ba>255?255:ba;da[6]=T<0?0:T>255?255:T;da[8]=ca<0?0:ca>255?255:ca;da[9]=ha<0?0:ha>255?255:ha;da[10]=O<0?0:O>255?255:O;da[12]=ea<0?0:ea>255?255:ea;da[13]=ia<0?0:ia>255?255:ia;da[14]=A<0?0:A>255?255:A;oa.putImageData(Aa,0,0);ta.drawImage(na,0,0);return pa}function Ca(x){x=(x+1)*0.5;return x<0?0:x>1?1:x}function Da(x,T){var O=T.x-x.x,A=T.y-x.y,I=1/Math.sqrt(O*O+A*A);O*=I;A*=I;T.x+=O;T.y+=A;x.x-=O;x.y-=A}var za,Ha,Z,fa,ma,Ea,Ia,sa;
-m.setTransform(1,0,0,-1,k,o);this.autoClear&&this.clear();a=b.projectScene(ga,ua,this.sortElements);(L=ga.lights.length>0)&&Ka(ga);za=0;for(Ha=a.length;za<Ha;za++){Z=a[za];y.empty();if(Z instanceof THREE.RenderableParticle){v=Z;v.x*=k;v.y*=o;fa=0;for(ma=Z.material.length;fa<ma;fa++)La(v,Z,Z.material[fa],ga)}else if(Z instanceof THREE.RenderableLine){v=Z.v1;J=Z.v2;v.positionScreen.x*=k;v.positionScreen.y*=o;J.positionScreen.x*=k;J.positionScreen.y*=o;y.addPoint(v.positionScreen.x,v.positionScreen.y);
-y.addPoint(J.positionScreen.x,J.positionScreen.y);if(M.instersects(y)){fa=0;for(ma=Z.material.length;fa<ma;)Ma(v,J,Z,Z.material[fa++],ga)}}else if(Z instanceof THREE.RenderableFace3){v=Z.v1;J=Z.v2;P=Z.v3;v.positionScreen.x*=k;v.positionScreen.y*=o;J.positionScreen.x*=k;J.positionScreen.y*=o;P.positionScreen.x*=k;P.positionScreen.y*=o;if(Z.overdraw){Da(v.positionScreen,J.positionScreen);Da(J.positionScreen,P.positionScreen);Da(P.positionScreen,v.positionScreen)}y.add3Points(v.positionScreen.x,v.positionScreen.y,
-J.positionScreen.x,J.positionScreen.y,P.positionScreen.x,P.positionScreen.y);if(M.instersects(y)){fa=0;for(ma=Z.meshMaterial.length;fa<ma;){sa=Z.meshMaterial[fa++];if(sa instanceof THREE.MeshFaceMaterial){Ea=0;for(Ia=Z.faceMaterial.length;Ea<Ia;)(sa=Z.faceMaterial[Ea++])&&Fa(v,J,P,Z,sa,ga)}else Fa(v,J,P,Z,sa,ga)}}}z.addRectangle(y)}m.setTransform(1,0,0,1,0,0)}};
-THREE.SVGRenderer=function(){function a(R,X,V){var M,z,y,L;M=0;for(z=R.lights.length;M<z;M++){y=R.lights[M];if(y instanceof THREE.DirectionalLight){L=X.normalWorld.dot(y.position)*y.intensity;if(L>0){V.r+=y.color.r*L;V.g+=y.color.g*L;V.b+=y.color.b*L}}else if(y instanceof THREE.PointLight){h.sub(y.position,X.centroidWorld);h.normalize();L=X.normalWorld.dot(h)*y.intensity;if(L>0){V.r+=y.color.r*L;V.g+=y.color.g*L;V.b+=y.color.b*L}}}}function b(R,X,V,M,z,y){u=d(t++);u.setAttribute("d","M "+R.positionScreen.x+
-" "+R.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+V.positionScreen.x+","+V.positionScreen.y+"z");if(z instanceof THREE.MeshBasicMaterial)D.__styleString=z.color.__styleString;else if(z instanceof THREE.MeshLambertMaterial)if(Q){e.r=l.r;e.g=l.g;e.b=l.b;a(y,M,e);D.r=z.color.r*e.r;D.g=z.color.g*e.g;D.b=z.color.b*e.b;D.updateStyleString()}else D.__styleString=z.color.__styleString;else if(z instanceof THREE.MeshDepthMaterial){j=1-z.__2near/(z.__farPlusNear-M.z*z.__farMinusNear);
-D.setRGB(j,j,j)}else z instanceof THREE.MeshNormalMaterial&&D.setRGB(i(M.normalWorld.x),i(M.normalWorld.y),i(M.normalWorld.z));z.wireframe?u.setAttribute("style","fill: none; stroke: "+D.__styleString+"; stroke-width: "+z.wireframe_linewidth+"; stroke-opacity: "+z.opacity+"; stroke-linecap: "+z.wireframe_linecap+"; stroke-linejoin: "+z.wireframe_linejoin):u.setAttribute("style","fill: "+D.__styleString+"; fill-opacity: "+z.opacity);m.appendChild(u)}function g(R,X,V,M,z,y,L){u=d(t++);u.setAttribute("d",
-"M "+R.positionScreen.x+" "+R.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+V.positionScreen.x+","+V.positionScreen.y+" L "+M.positionScreen.x+","+M.positionScreen.y+"z");if(y instanceof THREE.MeshBasicMaterial)D.__styleString=y.color.__styleString;else if(y instanceof THREE.MeshLambertMaterial)if(Q){e.r=l.r;e.g=l.g;e.b=l.b;a(L,z,e);D.r=y.color.r*e.r;D.g=y.color.g*e.g;D.b=y.color.b*e.b;D.updateStyleString()}else D.__styleString=y.color.__styleString;else if(y instanceof THREE.MeshDepthMaterial){j=
-1-y.__2near/(y.__farPlusNear-z.z*y.__farMinusNear);D.setRGB(j,j,j)}else y instanceof THREE.MeshNormalMaterial&&D.setRGB(i(z.normalWorld.x),i(z.normalWorld.y),i(z.normalWorld.z));y.wireframe?u.setAttribute("style","fill: none; stroke: "+D.__styleString+"; stroke-width: "+y.wireframe_linewidth+"; stroke-opacity: "+y.opacity+"; stroke-linecap: "+y.wireframe_linecap+"; stroke-linejoin: "+y.wireframe_linejoin):u.setAttribute("style","fill: "+D.__styleString+"; fill-opacity: "+y.opacity);m.appendChild(u)}
-function d(R){if(s[R]==null){s[R]=document.createElementNS("http://www.w3.org/2000/svg","path");G==0&&s[R].setAttribute("shape-rendering","crispEdges");return s[R]}return s[R]}function i(R){return R<0?Math.min((1+R)*0.5,0.5):0.5+Math.min(R*0.5,0.5)}var k=null,o=new THREE.Projector,m=document.createElementNS("http://www.w3.org/2000/svg","svg"),n,c,C,B,w,v,J,P,N=new THREE.Rectangle,q=new THREE.Rectangle,Q=false,D=new THREE.Color(16777215),e=new THREE.Color(16777215),l=new THREE.Color(0),f=new THREE.Color(0),
-p=new THREE.Color(0),j,h=new THREE.Vector3,s=[],E=[],r=[],u,t,K,F,G=1;this.domElement=m;this.sortElements=this.sortObjects=this.autoClear=true;this.setQuality=function(R){switch(R){case "high":G=1;break;case "low":G=0}};this.setSize=function(R,X){n=R;c=X;C=n/2;B=c/2;m.setAttribute("viewBox",-C+" "+-B+" "+n+" "+c);m.setAttribute("width",n);m.setAttribute("height",c);N.set(-C,-B,C,B)};this.clear=function(){for(;m.childNodes.length>0;)m.removeChild(m.childNodes[0])};this.render=function(R,X){var V,M,
-z,y,L,S,H,U;this.autoClear&&this.clear();k=o.projectScene(R,X,this.sortElements);F=K=t=0;if(Q=R.lights.length>0){H=R.lights;l.setRGB(0,0,0);f.setRGB(0,0,0);p.setRGB(0,0,0);V=0;for(M=H.length;V<M;V++){z=H[V];y=z.color;if(z instanceof THREE.AmbientLight){l.r+=y.r;l.g+=y.g;l.b+=y.b}else if(z instanceof THREE.DirectionalLight){f.r+=y.r;f.g+=y.g;f.b+=y.b}else if(z instanceof THREE.PointLight){p.r+=y.r;p.g+=y.g;p.b+=y.b}}}V=0;for(M=k.length;V<M;V++){H=k[V];q.empty();if(H instanceof THREE.RenderableParticle){w=
-H;w.x*=C;w.y*=-B;z=0;for(y=H.material.length;z<y;z++)if(U=H.material[z]){L=w;S=H;U=U;var aa=K++;if(E[aa]==null){E[aa]=document.createElementNS("http://www.w3.org/2000/svg","circle");G==0&&E[aa].setAttribute("shape-rendering","crispEdges")}u=E[aa];u.setAttribute("cx",L.x);u.setAttribute("cy",L.y);u.setAttribute("r",S.scale.x*C);if(U instanceof THREE.ParticleCircleMaterial){if(Q){e.r=l.r+f.r+p.r;e.g=l.g+f.g+p.g;e.b=l.b+f.b+p.b;D.r=U.color.r*e.r;D.g=U.color.g*e.g;D.b=U.color.b*e.b;D.updateStyleString()}else D=
-U.color;u.setAttribute("style","fill: "+D.__styleString)}m.appendChild(u)}}else if(H instanceof THREE.RenderableLine){w=H.v1;v=H.v2;w.positionScreen.x*=C;w.positionScreen.y*=-B;v.positionScreen.x*=C;v.positionScreen.y*=-B;q.addPoint(w.positionScreen.x,w.positionScreen.y);q.addPoint(v.positionScreen.x,v.positionScreen.y);if(N.instersects(q)){z=0;for(y=H.material.length;z<y;)if(U=H.material[z++]){L=w;S=v;U=U;aa=F++;if(r[aa]==null){r[aa]=document.createElementNS("http://www.w3.org/2000/svg","line");
-G==0&&r[aa].setAttribute("shape-rendering","crispEdges")}u=r[aa];u.setAttribute("x1",L.positionScreen.x);u.setAttribute("y1",L.positionScreen.y);u.setAttribute("x2",S.positionScreen.x);u.setAttribute("y2",S.positionScreen.y);if(U instanceof THREE.LineBasicMaterial){D.__styleString=U.color.__styleString;u.setAttribute("style","fill: none; stroke: "+D.__styleString+"; stroke-width: "+U.linewidth+"; stroke-opacity: "+U.opacity+"; stroke-linecap: "+U.linecap+"; stroke-linejoin: "+U.linejoin);m.appendChild(u)}}}}else if(H instanceof
-THREE.RenderableFace3){w=H.v1;v=H.v2;J=H.v3;w.positionScreen.x*=C;w.positionScreen.y*=-B;v.positionScreen.x*=C;v.positionScreen.y*=-B;J.positionScreen.x*=C;J.positionScreen.y*=-B;q.addPoint(w.positionScreen.x,w.positionScreen.y);q.addPoint(v.positionScreen.x,v.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);if(N.instersects(q)){z=0;for(y=H.meshMaterial.length;z<y;){U=H.meshMaterial[z++];if(U instanceof THREE.MeshFaceMaterial){L=0;for(S=H.faceMaterial.length;L<S;)(U=H.faceMaterial[L++])&&
-b(w,v,J,H,U,R)}else U&&b(w,v,J,H,U,R)}}}else if(H instanceof THREE.RenderableFace4){w=H.v1;v=H.v2;J=H.v3;P=H.v4;w.positionScreen.x*=C;w.positionScreen.y*=-B;v.positionScreen.x*=C;v.positionScreen.y*=-B;J.positionScreen.x*=C;J.positionScreen.y*=-B;P.positionScreen.x*=C;P.positionScreen.y*=-B;q.addPoint(w.positionScreen.x,w.positionScreen.y);q.addPoint(v.positionScreen.x,v.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);q.addPoint(P.positionScreen.x,P.positionScreen.y);if(N.instersects(q)){z=
-0;for(y=H.meshMaterial.length;z<y;){U=H.meshMaterial[z++];if(U instanceof THREE.MeshFaceMaterial){L=0;for(S=H.faceMaterial.length;L<S;)(U=H.faceMaterial[L++])&&g(w,v,J,P,H,U,R)}else U&&g(w,v,J,P,H,U,R)}}}}}};
-THREE.WebGLRenderer=function(a){function b(e,l){var f=c.createProgram(),p=[c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0?"#define VERTEX_TEXTURES":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nattribute vec3 position;\nattribute vec3 normal;\nattribute vec2 uv;\n"].join("\n");c.attachShader(f,o("fragment","#ifdef GL_ES\nprecision highp float;\n#endif\nuniform mat4 viewMatrix;\nuniform vec3 cameraPosition;\n"+
-e));c.attachShader(f,o("vertex",p+l));c.linkProgram(f);c.getProgramParameter(f,c.LINK_STATUS)||alert("Could not initialise shaders\nVALIDATE_STATUS: "+c.getProgramParameter(f,c.VALIDATE_STATUS)+", gl error ["+c.getError()+"]");f.uniforms={};f.attributes={};return f}function g(e,l){if(e.image.length==6){if(!e.image.__webGLTextureCube&&!e.image.__cubeMapInitialized&&e.image.loadCount==6){e.image.__webGLTextureCube=c.createTexture();c.bindTexture(c.TEXTURE_CUBE_MAP,e.image.__webGLTextureCube);c.texParameteri(c.TEXTURE_CUBE_MAP,
-c.TEXTURE_WRAP_S,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_WRAP_T,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MAG_FILTER,c.LINEAR);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MIN_FILTER,c.LINEAR_MIPMAP_LINEAR);for(var f=0;f<6;++f)c.texImage2D(c.TEXTURE_CUBE_MAP_POSITIVE_X+f,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,e.image[f]);c.generateMipmap(c.TEXTURE_CUBE_MAP);c.bindTexture(c.TEXTURE_CUBE_MAP,null);e.image.__cubeMapInitialized=true}c.activeTexture(c.TEXTURE0+l);c.bindTexture(c.TEXTURE_CUBE_MAP,
-e.image.__webGLTextureCube)}}function d(e,l){if(!e.__webGLTexture&&e.image.loaded){e.__webGLTexture=c.createTexture();c.bindTexture(c.TEXTURE_2D,e.__webGLTexture);c.texImage2D(c.TEXTURE_2D,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,e.image);c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_S,m(e.wrap_s));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_T,m(e.wrap_t));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MAG_FILTER,m(e.mag_filter));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MIN_FILTER,m(e.min_filter));c.generateMipmap(c.TEXTURE_2D);
-c.bindTexture(c.TEXTURE_2D,null)}c.activeTexture(c.TEXTURE0+l);c.bindTexture(c.TEXTURE_2D,e.__webGLTexture)}function i(e,l){var f,p,j;f=0;for(p=l.length;f<p;f++){j=l[f];e.uniforms[j]=c.getUniformLocation(e,j)}}function k(e,l){var f,p,j;f=0;for(p=l.length;f<p;f++){j=l[f];e.attributes[j]=c.getAttribLocation(e,j)}}function o(e,l){var f;if(e=="fragment")f=c.createShader(c.FRAGMENT_SHADER);else if(e=="vertex")f=c.createShader(c.VERTEX_SHADER);c.shaderSource(f,l);c.compileShader(f);if(!c.getShaderParameter(f,
-c.COMPILE_STATUS)){alert(c.getShaderInfoLog(f));return null}return f}function m(e){switch(e){case THREE.RepeatWrapping:return c.REPEAT;case THREE.ClampToEdgeWrapping:return c.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return c.MIRRORED_REPEAT;case THREE.NearestFilter:return c.NEAREST;case THREE.NearestMipMapNearestFilter:return c.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return c.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return c.LINEAR;case THREE.LinearMipMapNearestFilter:return c.LINEAR_MIPMAP_NEAREST;
-case THREE.LinearMipMapLinearFilter:return c.LINEAR_MIPMAP_LINEAR}return 0}var n=document.createElement("canvas"),c,C,B,w=new THREE.Matrix4,v,J=new Float32Array(16),P=new Float32Array(16),N=new Float32Array(16),q=new Float32Array(9),Q=new Float32Array(16);a=function(e,l){if(e){var f,p,j,h=pointLights=maxDirLights=maxPointLights=0;f=0;for(p=e.lights.length;f<p;f++){j=e.lights[f];j instanceof THREE.DirectionalLight&&h++;j instanceof THREE.PointLight&&pointLights++}if(pointLights+h<=l){maxDirLights=
-h;maxPointLights=pointLights}else{maxDirLights=Math.ceil(l*h/(pointLights+h));maxPointLights=l-maxDirLights}return{directional:maxDirLights,point:maxPointLights}}return{directional:1,point:l-1}}(a,4);this.domElement=n;this.autoClear=true;try{c=n.getContext("experimental-webgl",{antialias:true})}catch(D){}if(!c){alert("WebGL not supported");throw"cannot create webgl context";}c.clearColor(0,0,0,1);c.clearDepth(1);c.enable(c.DEPTH_TEST);c.depthFunc(c.LEQUAL);c.frontFace(c.CCW);c.cullFace(c.BACK);c.enable(c.CULL_FACE);
-c.enable(c.BLEND);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA);c.clearColor(0,0,0,0);C=B=function(e,l){var f=[e?"#define MAX_DIR_LIGHTS "+e:"",l?"#define MAX_POINT_LIGHTS "+l:"","uniform bool enableLighting;\nuniform bool useRefract;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;\nuniform vec3 ambientLightColor;",e?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",e?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",l?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":
-"",l?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",l?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nuniform float mRefractionRatio;\nvoid main(void) {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvViewPosition = cameraPosition - mPosition.xyz;\nvec3 nWorld = mat3( objectMatrix[0].xyz, objectMatrix[1].xyz, objectMatrix[2].xyz ) * normal;\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvec3 transformedNormal = normalize( normalMatrix * normal );\nif ( !enableLighting ) {\nvLightWeighting = vec3( 1.0, 1.0, 1.0 );\n} else {\nvLightWeighting = ambientLightColor;",
-e?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",e?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",e?"float directionalLightWeighting = max( dot( transformedNormal, normalize( lDirection.xyz ) ), 0.0 );":"",e?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",e?"}":"",l?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",l?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",l?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":
-"",l?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",l?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",l?"}":"","}\nvNormal = transformedNormal;\nvUv = uv;\nif ( useRefract ) {\nvReflect = refract( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz), mRefractionRatio );\n} else {\nvReflect = reflect( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz) );\n}\ngl_Position = projectionMatrix * mvPosition;\n}"].join("\n"),
-p=[e?"#define MAX_DIR_LIGHTS "+e:"",l?"#define MAX_POINT_LIGHTS "+l:"","uniform int material;\nuniform bool enableMap;\nuniform bool enableCubeMap;\nuniform bool mixEnvMap;\nuniform samplerCube tCube;\nuniform float mReflectivity;\nuniform sampler2D tMap;\nuniform vec4 mColor;\nuniform float mOpacity;\nuniform vec4 mAmbient;\nuniform vec4 mSpecular;\nuniform float mShininess;\nuniform float m2Near;\nuniform float mFarPlusNear;\nuniform float mFarMinusNear;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;",
-e?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",l?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nvoid main() {\nvec4 mapColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nvec4 cubeColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nif ( enableMap ) {\nmapColor = texture2D( tMap, vUv );\n}\nif ( enableCubeMap ) {\ncubeColor = textureCube( tCube, vec3( -vReflect.x, vReflect.yz ) );\n}\nif ( material == 4 ) { \ngl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, mOpacity );\n} else if ( material == 3 ) { \nfloat w = 0.5;\ngl_FragColor = vec4( w, w, w, mOpacity );\n} else if ( material == 2 ) { \nvec3 normal = normalize( vNormal );\nvec3 viewPosition = normalize( vViewPosition );",
-l?"vec4 pointDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",l?"vec4 pointSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",l?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",l?"vec3 pointVector = normalize( vPointLightVector[ i ] );":"",l?"vec3 pointHalfVector = normalize( vPointLightVector[ i ] + vViewPosition );":"",l?"float pointDotNormalHalf = dot( normal, pointHalfVector );":"",l?"float pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );":"",l?"float pointSpecularWeight = 0.0;":"",l?"if ( pointDotNormalHalf >= 0.0 )":
-"",l?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",l?"pointDiffuse  += mColor * pointDiffuseWeight;":"",l?"pointSpecular += mSpecular * pointSpecularWeight;":"",l?"}":"",e?"vec4 dirDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",e?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",e?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",e?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",e?"vec3 dirVector = normalize( lDirection.xyz );":"",e?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":
-"",e?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",e?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",e?"float dirSpecularWeight = 0.0;":"",e?"if ( dirDotNormalHalf >= 0.0 )":"",e?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",e?"dirDiffuse  += mColor * dirDiffuseWeight;":"",e?"dirSpecular += mSpecular * dirSpecularWeight;":"",e?"}":"","vec4 totalLight = mAmbient;",e?"totalLight += dirDiffuse + dirSpecular;":"",l?"totalLight += pointDiffuse + pointSpecular;":
-"","if ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mapColor.rgb * totalLight.xyz * vLightWeighting, cubeColor.rgb, mReflectivity ), mapColor.a );\n} else {\ngl_FragColor = vec4( mapColor.rgb * cubeColor.rgb * totalLight.xyz * vLightWeighting, mapColor.a );\n}\n} else if ( material == 1 ) {\nif ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mColor.rgb * mapColor.rgb * vLightWeighting, cubeColor.rgb, mReflectivity ), mColor.a * mapColor.a );\n} else {\ngl_FragColor = vec4( mColor.rgb * mapColor.rgb * cubeColor.rgb * vLightWeighting, mColor.a * mapColor.a );\n}\n} else {\nif ( mixEnvMap ) {\ngl_FragColor = mix( mColor * mapColor, cubeColor, mReflectivity );\n} else {\ngl_FragColor = mColor * mapColor * cubeColor;\n}\n}\n}"].join("\n");
-f=b(p,f);c.useProgram(f);i(f,["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition","enableLighting","ambientLightColor","material","mColor","mAmbient","mSpecular","mShininess","mOpacity","enableMap","tMap","enableCubeMap","tCube","mixEnvMap","mReflectivity","mRefractionRatio","useRefract","m2Near","mFarPlusNear","mFarMinusNear"]);e&&i(f,["directionalLightNumber","directionalLightColor","directionalLightDirection"]);l&&i(f,["pointLightNumber","pointLightColor",
-"pointLightPosition"]);c.uniform1i(f.uniforms.enableMap,0);c.uniform1i(f.uniforms.tMap,0);c.uniform1i(f.uniforms.enableCubeMap,0);c.uniform1i(f.uniforms.tCube,1);c.uniform1i(f.uniforms.mixEnvMap,0);c.uniform1i(f.uniforms.useRefract,0);k(f,["position","normal","uv"]);return f}(a.directional,a.point);this.setSize=function(e,l){n.width=e;n.height=l;c.viewport(0,0,n.width,n.height)};this.clear=function(){c.clear(c.COLOR_BUFFER_BIT|c.DEPTH_BUFFER_BIT)};this.setupLights=function(e,l){var f,p,j,h,s,E=[],
-r=[],u=[];h=[];s=[];c.uniform1i(e.uniforms.enableLighting,l.length);f=0;for(p=l.length;f<p;f++){j=l[f];if(j instanceof THREE.AmbientLight)E.push(j);else if(j instanceof THREE.DirectionalLight)u.push(j);else j instanceof THREE.PointLight&&r.push(j)}f=j=h=s=0;for(p=E.length;f<p;f++){j+=E[f].color.r;h+=E[f].color.g;s+=E[f].color.b}c.uniform3f(e.uniforms.ambientLightColor,j,h,s);h=[];s=[];f=0;for(p=u.length;f<p;f++){j=u[f];h.push(j.color.r*j.intensity);h.push(j.color.g*j.intensity);h.push(j.color.b*j.intensity);
-s.push(j.position.x);s.push(j.position.y);s.push(j.position.z)}if(u.length){c.uniform1i(e.uniforms.directionalLightNumber,u.length);c.uniform3fv(e.uniforms.directionalLightDirection,s);c.uniform3fv(e.uniforms.directionalLightColor,h)}h=[];s=[];f=0;for(p=r.length;f<p;f++){j=r[f];h.push(j.color.r*j.intensity);h.push(j.color.g*j.intensity);h.push(j.color.b*j.intensity);s.push(j.position.x);s.push(j.position.y);s.push(j.position.z)}if(r.length){c.uniform1i(e.uniforms.pointLightNumber,r.length);c.uniform3fv(e.uniforms.pointLightPosition,
-s);c.uniform3fv(e.uniforms.pointLightColor,h)}};this.createBuffers=function(e,l){var f,p,j,h,s,E,r,u,t,K=[],F=[],G=[],R=[],X=[],V=[],M=0,z=e.geometry.geometryChunks[l],y;j=false;f=0;for(p=e.material.length;f<p;f++){meshMaterial=e.material[f];if(meshMaterial instanceof THREE.MeshFaceMaterial){s=0;for(y=z.material.length;s<y;s++)if(z.material[s]&&z.material[s].shading!=undefined&&z.material[s].shading==THREE.SmoothShading){j=true;break}}else if(meshMaterial&&meshMaterial.shading!=undefined&&meshMaterial.shading==
-THREE.SmoothShading){j=true;break}if(j)break}y=j;f=0;for(p=z.faces.length;f<p;f++){j=z.faces[f];h=e.geometry.faces[j];s=h.vertexNormals;faceNormal=h.normal;j=e.geometry.uvs[j];if(h instanceof THREE.Face3){E=e.geometry.vertices[h.a].position;r=e.geometry.vertices[h.b].position;u=e.geometry.vertices[h.c].position;G.push(E.x,E.y,E.z);G.push(r.x,r.y,r.z);G.push(u.x,u.y,u.z);if(e.geometry.hasTangents){E=e.geometry.vertices[h.a].tangent;r=e.geometry.vertices[h.b].tangent;u=e.geometry.vertices[h.c].tangent;
-X.push(E.x,E.y,E.z,E.w);X.push(r.x,r.y,r.z,r.w);X.push(u.x,u.y,u.z,u.w)}if(s.length==3&&y)for(h=0;h<3;h++)R.push(s[h].x,s[h].y,s[h].z);else for(h=0;h<3;h++)R.push(faceNormal.x,faceNormal.y,faceNormal.z);if(j)for(h=0;h<3;h++)V.push(j[h].u,j[h].v);K.push(M,M+1,M+2);F.push(M,M+1);F.push(M,M+2);F.push(M+1,M+2);M+=3}else if(h instanceof THREE.Face4){E=e.geometry.vertices[h.a].position;r=e.geometry.vertices[h.b].position;u=e.geometry.vertices[h.c].position;t=e.geometry.vertices[h.d].position;G.push(E.x,
-E.y,E.z);G.push(r.x,r.y,r.z);G.push(u.x,u.y,u.z);G.push(t.x,t.y,t.z);if(e.geometry.hasTangents){E=e.geometry.vertices[h.a].tangent;r=e.geometry.vertices[h.b].tangent;u=e.geometry.vertices[h.c].tangent;h=e.geometry.vertices[h.d].tangent;X.push(E.x,E.y,E.z,E.w);X.push(r.x,r.y,r.z,r.w);X.push(u.x,u.y,u.z,u.w);X.push(h.x,h.y,h.z,h.w)}if(s.length==4&&y)for(h=0;h<4;h++)R.push(s[h].x,s[h].y,s[h].z);else for(h=0;h<4;h++)R.push(faceNormal.x,faceNormal.y,faceNormal.z);if(j)for(h=0;h<4;h++)V.push(j[h].u,j[h].v);
-K.push(M,M+1,M+2);K.push(M,M+2,M+3);F.push(M,M+1);F.push(M,M+2);F.push(M,M+3);F.push(M+1,M+2);F.push(M+2,M+3);M+=4}}if(G.length){z.__webGLVertexBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,z.__webGLVertexBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(G),c.STATIC_DRAW);z.__webGLNormalBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,z.__webGLNormalBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(R),c.STATIC_DRAW);if(e.geometry.hasTangents){z.__webGLTangentBuffer=c.createBuffer();
-c.bindBuffer(c.ARRAY_BUFFER,z.__webGLTangentBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(X),c.STATIC_DRAW)}if(V.length>0){z.__webGLUVBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,z.__webGLUVBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(V),c.STATIC_DRAW)}z.__webGLFaceBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,z.__webGLFaceBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(K),c.STATIC_DRAW);z.__webGLLineBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,
-z.__webGLLineBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(F),c.STATIC_DRAW);z.__webGLFaceCount=K.length;z.__webGLLineCount=F.length}};this.renderBuffer=function(e,l,f,p){var j,h,s,E,r,u,t,K,F;if(f instanceof THREE.MeshShaderMaterial){if(!f.program){f.program=b(f.fragment_shader,f.vertex_shader);t=["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition"];for(F in f.uniforms)t.push(F);i(f.program,t);k(f.program,["position","normal","uv","tangent"])}F=
-f.program}else F=B;if(F!=C){c.useProgram(F);C=F}F==B&&this.setupLights(F,l);this.loadCamera(F,e);this.loadMatrices(F);if(f instanceof THREE.MeshShaderMaterial){s=f.wireframe;E=f.wireframe_linewidth;e=F;l=f.uniforms;var G;for(j in l){K=l[j].type;t=l[j].value;G=e.uniforms[j];if(K=="i")c.uniform1i(G,t);else if(K=="f")c.uniform1f(G,t);else if(K=="v3")c.uniform3f(G,t.x,t.y,t.z);else if(K=="c")c.uniform3f(G,t.r,t.g,t.b);else if(K=="t"){c.uniform1i(G,t);if(K=l[j].texture)K.image instanceof Array&&K.image.length==
-6?g(K,t):d(K,t)}}}if(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshBasicMaterial){j=f.color;h=f.opacity;s=f.wireframe;E=f.wireframe_linewidth;r=f.map;u=f.env_map;l=f.combine==THREE.MixOperation;e=f.reflectivity;K=f.env_map&&f.env_map.mapping instanceof THREE.CubeRefractionMapping;t=f.refraction_ratio;c.uniform4f(F.uniforms.mColor,j.r*h,j.g*h,j.b*h,h);c.uniform1i(F.uniforms.mixEnvMap,l);c.uniform1f(F.uniforms.mReflectivity,e);c.uniform1i(F.uniforms.useRefract,
-K);c.uniform1f(F.uniforms.mRefractionRatio,t)}if(f instanceof THREE.MeshNormalMaterial){h=f.opacity;c.uniform1f(F.uniforms.mOpacity,h);c.uniform1i(F.uniforms.material,4)}else if(f instanceof THREE.MeshDepthMaterial){h=f.opacity;s=f.wireframe;E=f.wireframe_linewidth;c.uniform1f(F.uniforms.mOpacity,h);c.uniform1f(F.uniforms.m2Near,f.__2near);c.uniform1f(F.uniforms.mFarPlusNear,f.__farPlusNear);c.uniform1f(F.uniforms.mFarMinusNear,f.__farMinusNear);c.uniform1i(F.uniforms.material,3)}else if(f instanceof
-THREE.MeshPhongMaterial){j=f.ambient;e=f.specular;f=f.shininess;c.uniform4f(F.uniforms.mAmbient,j.r,j.g,j.b,h);c.uniform4f(F.uniforms.mSpecular,e.r,e.g,e.b,h);c.uniform1f(F.uniforms.mShininess,f);c.uniform1i(F.uniforms.material,2)}else if(f instanceof THREE.MeshLambertMaterial)c.uniform1i(F.uniforms.material,1);else f instanceof THREE.MeshBasicMaterial&&c.uniform1i(F.uniforms.material,0);if(r){d(r,0);c.uniform1i(F.uniforms.tMap,0);c.uniform1i(F.uniforms.enableMap,1)}else c.uniform1i(F.uniforms.enableMap,
-0);if(u){g(u,1);c.uniform1i(F.uniforms.tCube,1);c.uniform1i(F.uniforms.enableCubeMap,1)}else c.uniform1i(F.uniforms.enableCubeMap,0);h=F.attributes;c.bindBuffer(c.ARRAY_BUFFER,p.__webGLVertexBuffer);c.vertexAttribPointer(h.position,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.position);if(h.normal>=0){c.bindBuffer(c.ARRAY_BUFFER,p.__webGLNormalBuffer);c.vertexAttribPointer(h.normal,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.normal)}if(h.tangent>=0){c.bindBuffer(c.ARRAY_BUFFER,p.__webGLTangentBuffer);
-c.vertexAttribPointer(h.tangent,4,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.tangent)}if(h.uv>=0)if(p.__webGLUVBuffer){c.bindBuffer(c.ARRAY_BUFFER,p.__webGLUVBuffer);c.vertexAttribPointer(h.uv,2,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.uv)}else c.disableVertexAttribArray(h.uv);if(s){c.lineWidth(E);c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,p.__webGLLineBuffer);c.drawElements(c.LINES,p.__webGLLineCount,c.UNSIGNED_SHORT,0)}else{c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,p.__webGLFaceBuffer);c.drawElements(c.TRIANGLES,
-p.__webGLFaceCount,c.UNSIGNED_SHORT,0)}};this.renderPass=function(e,l,f,p,j,h){var s,E,r,u,t;r=0;for(u=f.material.length;r<u;r++){s=f.material[r];if(s instanceof THREE.MeshFaceMaterial){s=0;for(E=p.material.length;s<E;s++)if((t=p.material[s])&&t.blending==j&&t.opacity<1==h){this.setBlending(t.blending);this.renderBuffer(e,l,t,p)}}else if((t=s)&&t.blending==j&&t.opacity<1==h){this.setBlending(t.blending);this.renderBuffer(e,l,t,p)}}};this.render=function(e,l){var f,p,j,h,s=e.lights;this.initWebGLObjects(e);
-this.autoClear&&this.clear();l.autoUpdateMatrix&&l.updateMatrix();J.set(l.matrix.flatten());N.set(l.projectionMatrix.flatten());f=0;for(p=e.__webGLObjects.length;f<p;f++){j=e.__webGLObjects[f];h=j.object;j=j.buffer;if(h.visible){this.setupMatrices(h,l);this.renderPass(l,s,h,j,THREE.NormalBlending,false)}}f=0;for(p=e.__webGLObjects.length;f<p;f++){j=e.__webGLObjects[f];h=j.object;j=j.buffer;if(h.visible){this.setupMatrices(h,l);this.renderPass(l,s,h,j,THREE.AdditiveBlending,false);this.renderPass(l,
-s,h,j,THREE.SubtractiveBlending,false);this.renderPass(l,s,h,j,THREE.AdditiveBlending,true);this.renderPass(l,s,h,j,THREE.SubtractiveBlending,true);this.renderPass(l,s,h,j,THREE.NormalBlending,true)}}};this.initWebGLObjects=function(e){var l,f,p,j,h,s;if(!e.__webGLObjects){e.__webGLObjects=[];e.__webGLObjectsMap={}}l=0;for(f=e.objects.length;l<f;l++){p=e.objects[l];if(e.__webGLObjectsMap[p.id]==undefined)e.__webGLObjectsMap[p.id]={};s=e.__webGLObjectsMap[p.id];if(p instanceof THREE.Mesh)for(h in p.geometry.geometryChunks){j=
-p.geometry.geometryChunks[h];j.__webGLVertexBuffer||this.createBuffers(p,h);if(s[h]==undefined){j={buffer:j,object:p};e.__webGLObjects.push(j);s[h]=1}}}};this.removeObject=function(e,l){var f,p;for(f=e.__webGLObjects.length-1;f>=0;f--){p=e.__webGLObjects[f].object;l==p&&e.__webGLObjects.splice(f,1)}};this.setupMatrices=function(e,l){e.autoUpdateMatrix&&e.updateMatrix();w.multiply(l.matrix,e.matrix);P.set(w.flatten());v=THREE.Matrix4.makeInvert3x3(w).transpose();q.set(v.m);Q.set(e.matrix.flatten())};
-this.loadMatrices=function(e){c.uniformMatrix4fv(e.uniforms.viewMatrix,false,J);c.uniformMatrix4fv(e.uniforms.modelViewMatrix,false,P);c.uniformMatrix4fv(e.uniforms.projectionMatrix,false,N);c.uniformMatrix3fv(e.uniforms.normalMatrix,false,q);c.uniformMatrix4fv(e.uniforms.objectMatrix,false,Q)};this.loadCamera=function(e,l){c.uniform3f(e.uniforms.cameraPosition,l.position.x,l.position.y,l.position.z)};this.setBlending=function(e){switch(e){case THREE.AdditiveBlending:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,
-c.ONE);break;case THREE.SubtractiveBlending:c.blendFunc(c.DST_COLOR,c.ZERO);break;default:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA)}};this.setFaceCulling=function(e,l){if(e){!l||l=="ccw"?c.frontFace(c.CCW):c.frontFace(c.CW);if(e=="back")c.cullFace(c.BACK);else e=="front"?c.cullFace(c.FRONT):c.cullFace(c.FRONT_AND_BACK);c.enable(c.CULL_FACE)}else c.disable(c.CULL_FACE)};this.supportsVertexTextures=function(){return c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0}};
-THREE.RenderableObject=function(){this.z=this.object=null};THREE.RenderableFace3=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.v3=new THREE.Vertex;this.centroidWorld=new THREE.Vector3;this.centroidScreen=new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.vertexNormalsWorld=[];this.faceMaterial=this.meshMaterial=null;this.overdraw=false;this.uvs=[null,null,null]};
-THREE.RenderableParticle=function(){this.rotation=this.z=this.y=this.x=null;this.scale=new THREE.Vector2;this.material=null};THREE.RenderableLine=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.material=null};
+// Three.js r31 - http://github.com/mrdoob/three.js
+var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};
+THREE.Color.prototype={setRGB:function(a,b,g){this.r=a;this.g=b;this.b=g;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=~~a&16777215;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},updateHex:function(){this.hex=~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},updateRGBA:function(){this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgb("+~~(this.r*255)+
+","+~~(this.g*255)+","+~~(this.b*255)+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};
+THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*
+this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,b,g){this.x=a||0;this.y=b||0;this.z=g||0};
+THREE.Vector3.prototype={set:function(a,b,g){this.x=a;this.y=b;this.z=g;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},
+cross:function(a,b){this.x=a.y*b.z-a.z*b.y;this.y=a.z*b.x-a.x*b.z;this.z=a.x*b.y-a.y*b.x;return this},crossSelf:function(a){var b=this.x,g=this.y,d=this.z;this.x=g*a.z-d*a.y;this.y=d*a.x-b*a.z;this.z=b*a.y-g*a.x;return this},multiply:function(a,b){this.x=a.x*b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=
+a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return Math.sqrt(b*b+g*g+a*a)},distanceToSquared:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return b*b+g*g+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){var a=
+Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z);a>0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){return Math.abs(this.x)<1.0E-4&&Math.abs(this.y)<1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)},toString:function(){return"THREE.Vector3 ( "+this.x+", "+this.y+", "+this.z+" )"}};
+THREE.Vector4=function(a,b,g,d){this.x=a||0;this.y=b||0;this.z=g||0;this.w=d||1};
+THREE.Vector4.prototype={set:function(a,b,g,d){this.x=a;this.y=b;this.z=g;this.w=d;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=a.w||1;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;
+return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;this.w*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;this.w/=a;return this},lerpSelf:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)},toString:function(){return"THREE.Vector4 ("+this.x+", "+this.y+", "+this.z+", "+this.w+")"}};
+THREE.Ray=function(a,b){this.origin=a||new THREE.Vector3;this.direction=b||new THREE.Vector3};
+THREE.Ray.prototype={intersectScene:function(a){var b,g,d=a.objects,h=[];a=0;for(b=d.length;a<b;a++){g=d[a];if(g instanceof THREE.Mesh)h=h.concat(this.intersectObject(g))}h.sort(function(j,p){return j.distance-p.distance});return h},intersectObject:function(a){function b(M,q,P,F){F=F.clone().subSelf(q);P=P.clone().subSelf(q);var K=M.clone().subSelf(q);M=F.dot(F);q=F.dot(P);F=F.dot(K);var f=P.dot(P);P=P.dot(K);K=1/(M*f-q*q);f=(f*F-q*P)*K;M=(M*P-q*F)*K;return f>0&&M>0&&f+M<1}var g,d,h,j,p,k,n,c,E,D,
+x,v=a.geometry,J=v.vertices,O=[];g=0;for(d=v.faces.length;g<d;g++){h=v.faces[g];D=this.origin.clone();x=this.direction.clone();j=a.matrix.multiplyVector3(J[h.a].position.clone());p=a.matrix.multiplyVector3(J[h.b].position.clone());k=a.matrix.multiplyVector3(J[h.c].position.clone());n=h instanceof THREE.Face4?a.matrix.multiplyVector3(J[h.d].position.clone()):null;c=a.rotationMatrix.multiplyVector3(h.normal.clone());E=x.dot(c);if(E<0){c=c.dot((new THREE.Vector3).sub(j,D))/E;D=D.addSelf(x.multiplyScalar(c));
+if(h instanceof THREE.Face3){if(b(D,j,p,k)){h={distance:this.origin.distanceTo(D),point:D,face:h,object:a};O.push(h)}}else if(h instanceof THREE.Face4)if(b(D,j,p,n)||b(D,p,k,n)){h={distance:this.origin.distanceTo(D),point:D,face:h,object:a};O.push(h)}}}return O}};
+THREE.Rectangle=function(){function a(){j=d-b;p=h-g}var b,g,d,h,j,p,k=true;this.getX=function(){return b};this.getY=function(){return g};this.getWidth=function(){return j};this.getHeight=function(){return p};this.getLeft=function(){return b};this.getTop=function(){return g};this.getRight=function(){return d};this.getBottom=function(){return h};this.set=function(n,c,E,D){k=false;b=n;g=c;d=E;h=D;a()};this.addPoint=function(n,c){if(k){k=false;b=n;g=c;d=n;h=c}else{b=b<n?b:n;g=g<c?g:c;d=d>n?d:n;h=h>c?
+h:c}a()};this.add3Points=function(n,c,E,D,x,v){if(k){k=false;b=n<E?n<x?n:x:E<x?E:x;g=c<D?c<v?c:v:D<v?D:v;d=n>E?n>x?n:x:E>x?E:x;h=c>D?c>v?c:v:D>v?D:v}else{b=n<E?n<x?n<b?n:b:x<b?x:b:E<x?E<b?E:b:x<b?x:b;g=c<D?c<v?c<g?c:g:v<g?v:g:D<v?D<g?D:g:v<g?v:g;d=n>E?n>x?n>d?n:d:x>d?x:d:E>x?E>d?E:d:x>d?x:d;h=c>D?c>v?c>h?c:h:v>h?v:h:D>v?D>h?D:h:v>h?v:h}a()};this.addRectangle=function(n){if(k){k=false;b=n.getLeft();g=n.getTop();d=n.getRight();h=n.getBottom()}else{b=b<n.getLeft()?b:n.getLeft();g=g<n.getTop()?g:n.getTop();
+d=d>n.getRight()?d:n.getRight();h=h>n.getBottom()?h:n.getBottom()}a()};this.inflate=function(n){b-=n;g-=n;d+=n;h+=n;a()};this.minSelf=function(n){b=b>n.getLeft()?b:n.getLeft();g=g>n.getTop()?g:n.getTop();d=d<n.getRight()?d:n.getRight();h=h<n.getBottom()?h:n.getBottom();a()};this.instersects=function(n){return Math.min(d,n.getRight())-Math.max(b,n.getLeft())>=0&&Math.min(h,n.getBottom())-Math.max(g,n.getTop())>=0};this.empty=function(){k=true;h=d=g=b=0;a()};this.isEmpty=function(){return k};this.toString=
+function(){return"THREE.Rectangle ( left: "+b+", right: "+d+", top: "+g+", bottom: "+h+", width: "+j+", height: "+p+" )"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};
+THREE.Matrix4=function(a,b,g,d,h,j,p,k,n,c,E,D,x,v,J,O){this.n11=a||1;this.n12=b||0;this.n13=g||0;this.n14=d||0;this.n21=h||0;this.n22=j||1;this.n23=p||0;this.n24=k||0;this.n31=n||0;this.n32=c||0;this.n33=E||1;this.n34=D||0;this.n41=x||0;this.n42=v||0;this.n43=J||0;this.n44=O||1};
+THREE.Matrix4.prototype={identity:function(){this.n11=1;this.n21=this.n14=this.n13=this.n12=0;this.n22=1;this.n32=this.n31=this.n24=this.n23=0;this.n33=1;this.n43=this.n42=this.n41=this.n34=0;this.n44=1;return this},set:function(a,b,g,d,h,j,p,k,n,c,E,D,x,v,J,O){this.n11=a;this.n12=b;this.n13=g;this.n14=d;this.n21=h;this.n22=j;this.n23=p;this.n24=k;this.n31=n;this.n32=c;this.n33=E;this.n34=D;this.n41=x;this.n42=v;this.n43=J;this.n44=O;return this},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=
+a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44;return this},lookAt:function(a,b,g){var d=new THREE.Vector3,h=new THREE.Vector3,j=new THREE.Vector3;j.sub(a,b).normalize();d.cross(g,j).normalize();h.cross(j,d).normalize();this.n11=d.x;this.n12=d.y;this.n13=d.z;this.n14=-d.dot(a);this.n21=h.x;this.n22=h.y;this.n23=h.z;this.n24=-h.dot(a);this.n31=j.x;
+this.n32=j.y;this.n33=j.z;this.n34=-j.dot(a);this.n43=this.n42=this.n41=0;this.n44=1;return this},multiplyVector3:function(a){var b=a.x,g=a.y,d=a.z,h=1/(this.n41*b+this.n42*g+this.n43*d+this.n44);a.x=(this.n11*b+this.n12*g+this.n13*d+this.n14)*h;a.y=(this.n21*b+this.n22*g+this.n23*d+this.n24)*h;a.z=(this.n31*b+this.n32*g+this.n33*d+this.n34)*h;return a},multiplyVector4:function(a){var b=a.x,g=a.y,d=a.z,h=a.w;a.x=this.n11*b+this.n12*g+this.n13*d+this.n14*h;a.y=this.n21*b+this.n22*g+this.n23*d+this.n24*
+h;a.z=this.n31*b+this.n32*g+this.n33*d+this.n34*h;a.w=this.n41*b+this.n42*g+this.n43*d+this.n44*h;return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var g=a.n11,d=a.n12,h=a.n13,j=a.n14,p=a.n21,k=a.n22,n=a.n23,c=a.n24,E=a.n31,D=a.n32,
+x=a.n33,v=a.n34,J=a.n41,O=a.n42,M=a.n43,q=a.n44,P=b.n11,F=b.n12,K=b.n13,f=b.n14,l=b.n21,e=b.n22,o=b.n23,m=b.n24,i=b.n31,w=b.n32,r=b.n33,t=b.n34,u=b.n41,B=b.n42,Q=b.n43,z=b.n44;this.n11=g*P+d*l+h*i+j*u;this.n12=g*F+d*e+h*w+j*B;this.n13=g*K+d*o+h*r+j*Q;this.n14=g*f+d*m+h*t+j*z;this.n21=p*P+k*l+n*i+c*u;this.n22=p*F+k*e+n*w+c*B;this.n23=p*K+k*o+n*r+c*Q;this.n24=p*f+k*m+n*t+c*z;this.n31=E*P+D*l+x*i+v*u;this.n32=E*F+D*e+x*w+v*B;this.n33=E*K+D*o+x*r+v*Q;this.n34=E*f+D*m+x*t+v*z;this.n41=J*P+O*l+M*i+q*u;
+this.n42=J*F+O*e+M*w+q*B;this.n43=J*K+O*o+M*r+q*Q;this.n44=J*f+O*m+M*t+q*z;return this},multiplySelf:function(a){var b=this.n11,g=this.n12,d=this.n13,h=this.n14,j=this.n21,p=this.n22,k=this.n23,n=this.n24,c=this.n31,E=this.n32,D=this.n33,x=this.n34,v=this.n41,J=this.n42,O=this.n43,M=this.n44,q=a.n11,P=a.n21,F=a.n31,K=a.n41,f=a.n12,l=a.n22,e=a.n32,o=a.n42,m=a.n13,i=a.n23,w=a.n33,r=a.n43,t=a.n14,u=a.n24,B=a.n34;a=a.n44;this.n11=b*q+g*P+d*F+h*K;this.n12=b*f+g*l+d*e+h*o;this.n13=b*m+g*i+d*w+h*r;this.n14=
+b*t+g*u+d*B+h*a;this.n21=j*q+p*P+k*F+n*K;this.n22=j*f+p*l+k*e+n*o;this.n23=j*m+p*i+k*w+n*r;this.n24=j*t+p*u+k*B+n*a;this.n31=c*q+E*P+D*F+x*K;this.n32=c*f+E*l+D*e+x*o;this.n33=c*m+E*i+D*w+x*r;this.n34=c*t+E*u+D*B+x*a;this.n41=v*q+J*P+O*F+M*K;this.n42=v*f+J*l+O*e+M*o;this.n43=v*m+J*i+O*w+M*r;this.n44=v*t+J*u+O*B+M*a;return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=
+a;this.n42*=a;this.n43*=a;this.n44*=a;return this},determinant:function(){return this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*
+this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44},transpose:function(){function a(b,g,d){var h=b[g];b[g]=b[d];
+b[d]=h}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,
+this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n14=a;d.n24=b;d.n34=g;return d};
+THREE.Matrix4.scaleMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n11=a;d.n22=b;d.n33=g;return d};THREE.Matrix4.rotationXMatrix=function(a){var b=new THREE.Matrix4;b.n22=b.n33=Math.cos(a);b.n32=Math.sin(a);b.n23=-b.n32;return b};THREE.Matrix4.rotationYMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n33=Math.cos(a);b.n13=Math.sin(a);b.n31=-b.n13;return b};THREE.Matrix4.rotationZMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n22=Math.cos(a);b.n21=Math.sin(a);b.n12=-b.n21;return b};
+THREE.Matrix4.rotationAxisAngleMatrix=function(a,b){var g=new THREE.Matrix4,d=Math.cos(b),h=Math.sin(b),j=1-d,p=a.x,k=a.y,n=a.z;g.n11=j*p*p+d;g.n12=j*p*k-h*n;g.n13=j*p*n+h*k;g.n21=j*p*k+h*n;g.n22=j*k*k+d;g.n23=j*k*n-h*p;g.n31=j*p*n-h*k;g.n32=j*k*n+h*p;g.n33=j*n*n+d;return g};
+THREE.Matrix4.makeInvert=function(a){var b=new THREE.Matrix4;b.n11=a.n23*a.n34*a.n42-a.n24*a.n33*a.n42+a.n24*a.n32*a.n43-a.n22*a.n34*a.n43-a.n23*a.n32*a.n44+a.n22*a.n33*a.n44;b.n12=a.n14*a.n33*a.n42-a.n13*a.n34*a.n42-a.n14*a.n32*a.n43+a.n12*a.n34*a.n43+a.n13*a.n32*a.n44-a.n12*a.n33*a.n44;b.n13=a.n13*a.n24*a.n42-a.n14*a.n23*a.n42+a.n14*a.n22*a.n43-a.n12*a.n24*a.n43-a.n13*a.n22*a.n44+a.n12*a.n23*a.n44;b.n14=a.n14*a.n23*a.n32-a.n13*a.n24*a.n32-a.n14*a.n22*a.n33+a.n12*a.n24*a.n33+a.n13*a.n22*a.n34-a.n12*
+a.n23*a.n34;b.n21=a.n24*a.n33*a.n41-a.n23*a.n34*a.n41-a.n24*a.n31*a.n43+a.n21*a.n34*a.n43+a.n23*a.n31*a.n44-a.n21*a.n33*a.n44;b.n22=a.n13*a.n34*a.n41-a.n14*a.n33*a.n41+a.n14*a.n31*a.n43-a.n11*a.n34*a.n43-a.n13*a.n31*a.n44+a.n11*a.n33*a.n44;b.n23=a.n14*a.n23*a.n41-a.n13*a.n24*a.n41-a.n14*a.n21*a.n43+a.n11*a.n24*a.n43+a.n13*a.n21*a.n44-a.n11*a.n23*a.n44;b.n24=a.n13*a.n24*a.n31-a.n14*a.n23*a.n31+a.n14*a.n21*a.n33-a.n11*a.n24*a.n33-a.n13*a.n21*a.n34+a.n11*a.n23*a.n34;b.n31=a.n22*a.n34*a.n41-a.n24*a.n32*
+a.n41+a.n24*a.n31*a.n42-a.n21*a.n34*a.n42-a.n22*a.n31*a.n44+a.n21*a.n32*a.n44;b.n32=a.n14*a.n32*a.n41-a.n12*a.n34*a.n41-a.n14*a.n31*a.n42+a.n11*a.n34*a.n42+a.n12*a.n31*a.n44-a.n11*a.n32*a.n44;b.n33=a.n13*a.n24*a.n41-a.n14*a.n22*a.n41+a.n14*a.n21*a.n42-a.n11*a.n24*a.n42-a.n12*a.n21*a.n44+a.n11*a.n22*a.n44;b.n34=a.n14*a.n22*a.n31-a.n12*a.n24*a.n31-a.n14*a.n21*a.n32+a.n11*a.n24*a.n32+a.n12*a.n21*a.n34-a.n11*a.n22*a.n34;b.n41=a.n23*a.n32*a.n41-a.n22*a.n33*a.n41-a.n23*a.n31*a.n42+a.n21*a.n33*a.n42+a.n22*
+a.n31*a.n43-a.n21*a.n32*a.n43;b.n42=a.n12*a.n33*a.n41-a.n13*a.n32*a.n41+a.n13*a.n31*a.n42-a.n11*a.n33*a.n42-a.n12*a.n31*a.n43+a.n11*a.n32*a.n43;b.n43=a.n13*a.n22*a.n41-a.n12*a.n23*a.n41-a.n13*a.n21*a.n42+a.n11*a.n23*a.n42+a.n12*a.n21*a.n43-a.n11*a.n22*a.n43;b.n44=a.n12*a.n23*a.n31-a.n13*a.n22*a.n31+a.n13*a.n21*a.n32-a.n11*a.n23*a.n32-a.n12*a.n21*a.n33+a.n11*a.n22*a.n33;b.multiplyScalar(1/a.determinant());return b};
+THREE.Matrix4.makeInvert3x3=function(a){var b=a.flatten();a=new THREE.Matrix3;var g=b[10]*b[5]-b[6]*b[9],d=-b[10]*b[1]+b[2]*b[9],h=b[6]*b[1]-b[2]*b[5],j=-b[10]*b[4]+b[6]*b[8],p=b[10]*b[0]-b[2]*b[8],k=-b[6]*b[0]+b[2]*b[4],n=b[9]*b[4]-b[5]*b[8],c=-b[9]*b[0]+b[1]*b[8],E=b[5]*b[0]-b[1]*b[4];b=b[0]*g+b[1]*j+b[2]*n;if(b==0)throw"matrix not invertible";b=1/b;a.m[0]=b*g;a.m[1]=b*d;a.m[2]=b*h;a.m[3]=b*j;a.m[4]=b*p;a.m[5]=b*k;a.m[6]=b*n;a.m[7]=b*c;a.m[8]=b*E;return a};
+THREE.Matrix4.makeFrustum=function(a,b,g,d,h,j){var p,k,n;p=new THREE.Matrix4;k=2*h/(b-a);n=2*h/(d-g);a=(b+a)/(b-a);g=(d+g)/(d-g);d=-(j+h)/(j-h);h=-2*j*h/(j-h);p.n11=k;p.n12=0;p.n13=a;p.n14=0;p.n21=0;p.n22=n;p.n23=g;p.n24=0;p.n31=0;p.n32=0;p.n33=d;p.n34=h;p.n41=0;p.n42=0;p.n43=-1;p.n44=0;return p};THREE.Matrix4.makePerspective=function(a,b,g,d){var h;a=g*Math.tan(a*Math.PI/360);h=-a;return THREE.Matrix4.makeFrustum(h*b,a*b,h,a,g,d)};
+THREE.Matrix4.makeOrtho=function(a,b,g,d,h,j){var p,k,n,c;p=new THREE.Matrix4;k=b-a;n=g-d;c=j-h;a=(b+a)/k;g=(g+d)/n;h=(j+h)/c;p.n11=2/k;p.n12=0;p.n13=0;p.n14=-a;p.n21=0;p.n22=2/n;p.n23=0;p.n24=-g;p.n31=0;p.n32=0;p.n33=-2/c;p.n34=-h;p.n41=0;p.n42=0;p.n43=0;p.n44=1;return p};
+THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3;this.positionWorld=new THREE.Vector3;this.positionScreen=new THREE.Vector4;this.normal=b||new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.normalScreen=new THREE.Vector3;this.tangent=new THREE.Vector4;this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};
+THREE.Face3=function(a,b,g,d,h){this.a=a;this.b=b;this.c=g;this.centroid=new THREE.Vector3;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.material=h instanceof Array?h:[h]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};
+THREE.Face4=function(a,b,g,d,h,j){this.a=a;this.b=b;this.c=g;this.d=d;this.centroid=new THREE.Vector3;this.normal=h instanceof THREE.Vector3?h:new THREE.Vector3;this.vertexNormals=h instanceof Array?h:[];this.material=j instanceof Array?j:[j]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(a,b){this.u=a||0;this.v=b||0};
+THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[];this.boundingSphere=this.boundingBox=null;this.geometryChunks={};this.hasTangents=false};
+THREE.Geometry.prototype={computeCentroids:function(){var a,b,g;a=0;for(b=this.faces.length;a<b;a++){g=this.faces[a];g.centroid.set(0,0,0);if(g instanceof THREE.Face3){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);g.centroid.divideScalar(3)}else if(g instanceof THREE.Face4){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);
+g.centroid.addSelf(this.vertices[g.d].position);g.centroid.divideScalar(4)}}},computeFaceNormals:function(a){var b,g,d,h,j,p,k=new THREE.Vector3,n=new THREE.Vector3;d=0;for(h=this.vertices.length;d<h;d++){j=this.vertices[d];j.normal.set(0,0,0)}d=0;for(h=this.faces.length;d<h;d++){j=this.faces[d];if(a&&j.vertexNormals.length){k.set(0,0,0);b=0;for(g=j.normal.length;b<g;b++)k.addSelf(j.vertexNormals[b]);k.divideScalar(3)}else{b=this.vertices[j.a];g=this.vertices[j.b];p=this.vertices[j.c];k.sub(p.position,
+g.position);n.sub(b.position,g.position);k.crossSelf(n)}k.isZero()||k.normalize();j.normal.copy(k)}},computeVertexNormals:function(){var a,b=[],g,d;a=0;for(vl=this.vertices.length;a<vl;a++)b[a]=new THREE.Vector3;a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal)}else if(d instanceof THREE.Face4){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal);b[d.d].addSelf(d.normal)}}a=
+0;for(vl=this.vertices.length;a<vl;a++)b[a].normalize();a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone()}else if(d instanceof THREE.Face4){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone();d.vertexNormals[3]=b[d.d].clone()}}},computeTangents:function(){function a(t,u,B,Q){j=t.vertices[u].position;p=t.vertices[B].position;
+k=t.vertices[Q].position;n=h[0];c=h[1];E=h[2];D=p.x-j.x;x=k.x-j.x;v=p.y-j.y;J=k.y-j.y;O=p.z-j.z;M=k.z-j.z;q=c.u-n.u;P=E.u-n.u;F=c.v-n.v;K=E.v-n.v;f=1/(q*K-P*F);m.set((K*D-F*x)*f,(K*v-F*J)*f,(K*O-F*M)*f);i.set((q*x-P*D)*f,(q*J-P*v)*f,(q*M-P*O)*f);e[u].addSelf(m);e[B].addSelf(m);e[Q].addSelf(m);o[u].addSelf(i);o[B].addSelf(i);o[Q].addSelf(i)}var b,g,d,h,j,p,k,n,c,E,D,x,v,J,O,M,q,P,F,K,f,l,e=[],o=[],m=new THREE.Vector3,i=new THREE.Vector3,w=new THREE.Vector3,r=new THREE.Vector3;l=new THREE.Vector3;b=
+0;for(g=this.vertices.length;b<g;b++){e[b]=new THREE.Vector3;o[b]=new THREE.Vector3}b=0;for(g=this.faces.length;b<g;b++){d=this.faces[b];h=this.uvs[b];if(d instanceof THREE.Face3){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);this.vertices[d.c].normal.copy(d.vertexNormals[2])}else if(d instanceof THREE.Face4){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);
+this.vertices[d.c].normal.copy(d.vertexNormals[2]);this.vertices[d.d].normal.copy(d.vertexNormals[3])}}b=0;for(g=this.vertices.length;b<g;b++){l.copy(this.vertices[b].normal);d=e[b];w.copy(d);w.subSelf(l.multiplyScalar(l.dot(d))).normalize();r.cross(this.vertices[b].normal,d);test=r.dot(o[b]);d=test<0?-1:1;this.vertices[b].tangent.set(w.x,w.y,w.z,d)}this.hasTangents=true},computeBoundingBox:function(){var a;if(this.vertices.length>0){this.bbox={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 b=1,g=this.vertices.length;b<g;b++){a=this.vertices[b];if(a.position.x<this.bbox.x[0])this.bbox.x[0]=a.position.x;else if(a.position.x>this.bbox.x[1])this.bbox.x[1]=a.position.x;if(a.position.y<this.bbox.y[0])this.bbox.y[0]=a.position.y;else if(a.position.y>this.bbox.y[1])this.bbox.y[1]=a.position.y;if(a.position.z<this.bbox.z[0])this.bbox.z[0]=a.position.z;else if(a.position.z>
+this.bbox.z[1])this.bbox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,g=this.vertices.length;b<g;b++)a=Math.max(a,this.vertices[b].position.length());this.boundingSphere={radius:a}},sortFacesByMaterial:function(){function a(E){var D=[];b=0;for(g=E.length;b<g;b++)E[b]==undefined?D.push("undefined"):D.push(E[b].toString());return D.join("_")}var b,g,d,h,j,p,k,n,c={};d=0;for(h=this.faces.length;d<h;d++){j=this.faces[d];p=
+j.material;k=a(p);if(c[k]==undefined)c[k]={hash:k,counter:0};n=c[k].hash+"_"+c[k].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:p,vertices:0};j=j instanceof THREE.Face3?3:4;if(this.geometryChunks[n].vertices+j>65535){c[k].counter+=1;n=c[k].hash+"_"+c[k].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:p,vertices:0}}this.geometryChunks[n].faces.push(d);this.geometryChunks[n].vertices+=j}},toString:function(){return"THREE.Geometry ( vertices: "+
+this.vertices+", faces: "+this.faces+", uvs: "+this.uvs+" )"}};
+THREE.Camera=function(a,b,g,d){this.position=new THREE.Vector3;this.target={position:new THREE.Vector3};this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4;this.projectionMatrix=THREE.Matrix4.makePerspective(a,b,g,d);this.autoUpdateMatrix=true;this.translateX=function(h){h=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(h);h.cross(h.clone(),this.up);this.position.addSelf(h);this.target.position.addSelf(h)};this.translateZ=function(h){h=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(h);
+this.position.subSelf(h);this.target.position.subSelf(h)};this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Light=function(a){this.color=new THREE.Color(a)};THREE.AmbientLight=function(a){THREE.Light.call(this,a)};THREE.AmbientLight.prototype=new THREE.Light;THREE.AmbientLight.prototype.constructor=THREE.AmbientLight;
+THREE.DirectionalLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3(0,1,0);this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.DirectionalLight;THREE.PointLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3;this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.PointLight;
+THREE.Object3D=function(){this.id=THREE.Object3DCounter.value++;this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.matrix=new THREE.Matrix4;this.translationMatrix=new THREE.Matrix4;this.rotationMatrix=new THREE.Matrix4;this.scaleMatrix=new THREE.Matrix4;this.screen=new THREE.Vector3;this.autoUpdateMatrix=this.visible=true;this.updateMatrix=function(){this.matrixPosition=THREE.Matrix4.translationMatrix(this.position.x,this.position.y,this.position.z);
+this.rotationMatrix=THREE.Matrix4.rotationXMatrix(this.rotation.x);this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationYMatrix(this.rotation.y));this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationZMatrix(this.rotation.z));this.scaleMatrix=THREE.Matrix4.scaleMatrix(this.scale.x,this.scale.y,this.scale.z);this.matrix.copy(this.matrixPosition);this.matrix.multiplySelf(this.rotationMatrix);this.matrix.multiplySelf(this.scaleMatrix)}};THREE.Object3DCounter={value:0};
+THREE.Particle=function(a){THREE.Object3D.call(this);this.material=a instanceof Array?a:[a];this.autoUpdateMatrix=false};THREE.Particle.prototype=new THREE.Object3D;THREE.Particle.prototype.constructor=THREE.Particle;THREE.Line=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b]};THREE.Line.prototype=new THREE.Object3D;THREE.Line.prototype.constructor=THREE.Line;
+THREE.Mesh=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b];this.overdraw=this.doubleSided=this.flipSided=false;this.geometry.boundingSphere||this.geometry.computeBoundingSphere()};THREE.Mesh.prototype=new THREE.Object3D;THREE.Mesh.prototype.constructor=THREE.Mesh;THREE.FlatShading=0;THREE.SmoothShading=1;THREE.NormalBlending=0;THREE.AdditiveBlending=1;THREE.SubtractiveBlending=2;
+THREE.LineBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;this.linewidth=1;this.linejoin=this.linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending;if(a.linewidth!==undefined)this.linewidth=a.linewidth;if(a.linecap!==undefined)this.linecap=a.linecap;if(a.linejoin!==undefined)this.linejoin=a.linejoin}this.toString=function(){return"THREE.LineBasicMaterial (<br/>color: "+
+this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>linewidth: "+this.linewidth+"<br/>linecap: "+this.linecap+"<br/>linejoin: "+this.linejoin+"<br/>)"}};
+THREE.MeshBasicMaterial=function(a){this.id=THREE.MeshBasicMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
+a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
+a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshBasicMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>blending: "+
+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshBasicMaterialCounter={value:0};
+THREE.MeshLambertMaterial=function(a){this.id=THREE.MeshLambertMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
+a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
+a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshLambertMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+
+this.shading+"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/> )"}};THREE.MeshLambertMaterialCounter={value:0};
+THREE.MeshPhongMaterial=function(a){this.id=THREE.MeshPhongMaterialCounter.value++;this.color=new THREE.Color(16777215);this.ambient=new THREE.Color(328965);this.specular=new THREE.Color(1118481);this.shininess=30;this.env_map=this.specular_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap=
+"round";if(a){if(a.color!==undefined)this.color=new THREE.Color(a.color);if(a.ambient!==undefined)this.ambient=new THREE.Color(a.ambient);if(a.specular!==undefined)this.specular=new THREE.Color(a.specular);if(a.shininess!==undefined)this.shininess=a.shininess;if(a.map!==undefined)this.map=a.map;if(a.specular_map!==undefined)this.specular_map=a.specular_map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=
+a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=
+a.wireframe_linejoin}this.toString=function(){return"THREE.MeshPhongMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>ambient: "+this.ambient+"<br/>specular: "+this.specular+"<br/>shininess: "+this.shininess+"<br/>map: "+this.map+"<br/>specular_map: "+this.specular_map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+this.shading+"<br/>wireframe: "+
+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>"+ +")"}};THREE.MeshPhongMaterialCounter={value:0};
+THREE.MeshDepthMaterial=function(a){this.near=1;this.far=1E3;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){if(a.near!==undefined)this.near=a.near;if(a.far!==undefined)this.far=a.far;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.__2near=2*this.near;this.__farPlusNear=this.far+this.near;this.__farMinusNear=
+this.far-this.near;this.toString=function(){return"THREE.MeshDepthMaterial"}};THREE.MeshNormalMaterial=function(a){this.opacity=1;this.shading=THREE.FlatShading;this.blending=THREE.NormalBlending;if(a){if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.MeshNormalMaterial"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};
+THREE.MeshShaderMaterial=function(a){this.id=THREE.MeshShaderMaterialCounter.value++;this.vertex_shader=this.fragment_shader="void main() {}";this.uniforms={};this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){if(a.fragment_shader!==undefined)this.fragment_shader=a.fragment_shader;if(a.vertex_shader!==undefined)this.vertex_shader=a.vertex_shader;if(a.uniforms!==
+undefined)this.uniforms=a.uniforms;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshShaderMaterial (<br/>id: "+this.id+
+"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshShaderMaterialCounter={value:0};
+THREE.ParticleBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.map=null;this.opacity=1;this.blending=THREE.NormalBlending;this.offset=new THREE.Vector2;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=a.map;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleBasicMaterial (<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>opacity: "+this.opacity+"<br/>blending: "+
+this.blending+"<br/>)"}};THREE.ParticleCircleMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleCircleMaterial (<br/>color: "+this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>)"}};
+THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};
+THREE.Texture=function(a,b,g,d,h,j){this.image=a;this.mapping=b!==undefined?b:new THREE.UVMapping;this.wrap_s=g!==undefined?g:THREE.ClampToEdgeWrapping;this.wrap_t=d!==undefined?d:THREE.ClampToEdgeWrapping;this.mag_filter=h!==undefined?h:THREE.LinearFilter;this.min_filter=j!==undefined?j:THREE.LinearMipMapLinearFilter;this.toString=function(){return"THREE.Texture (<br/>image: "+this.image+"<br/>wrap_s: "+this.wrap_s+"<br/>wrap_t: "+this.wrap_t+"<br/>mag_filter: "+this.mag_filter+"<br/>min_filter: "+
+this.min_filter+"<br/>)"}};THREE.MultiplyOperation=0;THREE.MixOperation=1;THREE.RepeatWrapping=0;THREE.ClampToEdgeWrapping=1;THREE.MirroredRepeatWrapping=2;THREE.NearestFilter=3;THREE.NearestMipMapNearestFilter=4;THREE.NearestMipMapLinearFilter=5;THREE.LinearFilter=6;THREE.LinearMipMapNearestFilter=7;THREE.LinearMipMapLinearFilter=8;THREE.CubeReflectionMapping=function(){};THREE.CubeRefractionMapping=function(){};THREE.LatitudeReflectionMapping=function(){};THREE.LatitudeRefractionMapping=function(){};
+THREE.SphericalReflectionMapping=function(){};THREE.SphericalRefractionMapping=function(){};THREE.UVMapping=function(){};
+THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.indexOf(a)===-1&&this.objects.push(a)};this.removeObject=function(a){a=this.objects.indexOf(a);a!==-1&&this.objects.splice(a,1)};this.addLight=function(a){this.lights.indexOf(a)===-1&&this.lights.push(a)};this.removeLight=function(a){a=this.lights.indexOf(a);a!==-1&&this.lights.splice(a,1)};this.toString=function(){return"THREE.Scene ( "+this.objects+" )"}};
+THREE.Projector=function(){function a(e,o){return o.z-e.z}function b(e,o){var m=0,i=1,w=e.z+e.w,r=o.z+o.w,t=-e.z+e.w,u=-o.z+o.w;if(w>=0&&r>=0&&t>=0&&u>=0)return true;else if(w<0&&r<0||t<0&&u<0)return false;else{if(w<0)m=Math.max(m,w/(w-r));else if(r<0)i=Math.min(i,w/(w-r));if(t<0)m=Math.max(m,t/(t-u));else if(u<0)i=Math.min(i,t/(t-u));if(i<m)return false;else{e.lerpSelf(o,m);o.lerpSelf(e,1-i);return true}}}var g,d,h=[],j,p,k,n=[],c,E,D=[],x,v,J=[],O=new THREE.Vector4,M=new THREE.Vector4,q=new THREE.Matrix4,
+P=new THREE.Matrix4,F=[],K=new THREE.Vector4,f=new THREE.Vector4,l;this.projectObjects=function(e,o,m){var i=[],w,r;d=0;q.multiply(o.projectionMatrix,o.matrix);F[0]=new THREE.Vector4(q.n41-q.n11,q.n42-q.n12,q.n43-q.n13,q.n44-q.n14);F[1]=new THREE.Vector4(q.n41+q.n11,q.n42+q.n12,q.n43+q.n13,q.n44+q.n14);F[2]=new THREE.Vector4(q.n41+q.n21,q.n42+q.n22,q.n43+q.n23,q.n44+q.n24);F[3]=new THREE.Vector4(q.n41-q.n21,q.n42-q.n22,q.n43-q.n23,q.n44-q.n24);F[4]=new THREE.Vector4(q.n41-q.n31,q.n42-q.n32,q.n43-
+q.n33,q.n44-q.n34);F[5]=new THREE.Vector4(q.n41+q.n31,q.n42+q.n32,q.n43+q.n33,q.n44+q.n34);o=0;for(w=F.length;o<w;o++){r=F[o];r.divideScalar(Math.sqrt(r.x*r.x+r.y*r.y+r.z*r.z))}w=e.objects;e=0;for(o=w.length;e<o;e++){r=w[e];var t;if(!(t=!r.visible)){a:{t=void 0;for(var u=r.position,B=-r.geometry.boundingSphere.radius*Math.max(r.scale.x,Math.max(r.scale.y,r.scale.z)),Q=0;Q<6;Q++){t=F[Q].x*u.x+F[Q].y*u.y+F[Q].z*u.z+F[Q].w;if(t<=B){t=false;break a}}t=true}t=!t}if(!t){g=h[d]=h[d]||new THREE.RenderableObject;
+O.copy(r.position);q.multiplyVector3(O);g.object=r;g.z=O.z;i.push(g);d++}}m&&i.sort(a);return i};this.projectScene=function(e,o,m){var i=[],w,r,t,u,B,Q,z,L,X,T,V,A,s,G,R,H;k=E=v=0;o.autoUpdateMatrix&&o.updateMatrix();q.multiply(o.projectionMatrix,o.matrix);Q=e.objects;e=0;for(w=Q.length;e<w;e++){z=Q[e];if(z.visible){z.autoUpdateMatrix&&z.updateMatrix();L=z.matrix;X=z.rotationMatrix;T=z.material;V=z.overdraw;if(z instanceof THREE.Mesh){A=z.geometry;s=A.vertices;r=0;for(t=s.length;r<t;r++){G=s[r];G.positionWorld.copy(G.position);
+L.multiplyVector3(G.positionWorld);u=G.positionScreen;u.copy(G.positionWorld);q.multiplyVector4(u);u.multiplyScalar(1/u.w);G.__visible=u.z>0&&u.z<1}A=A.faces;r=0;for(t=A.length;r<t;r++){G=A[r];if(G instanceof THREE.Face3){u=s[G.a];B=s[G.b];R=s[G.c];if(u.__visible&&B.__visible&&R.__visible)if(z.doubleSided||z.flipSided!=(R.positionScreen.x-u.positionScreen.x)*(B.positionScreen.y-u.positionScreen.y)-(R.positionScreen.y-u.positionScreen.y)*(B.positionScreen.x-u.positionScreen.x)<0){j=n[k]=n[k]||new THREE.RenderableFace3;
+j.v1.positionWorld.copy(u.positionWorld);j.v2.positionWorld.copy(B.positionWorld);j.v3.positionWorld.copy(R.positionWorld);j.v1.positionScreen.copy(u.positionScreen);j.v2.positionScreen.copy(B.positionScreen);j.v3.positionScreen.copy(R.positionScreen);j.normalWorld.copy(G.normal);X.multiplyVector3(j.normalWorld);j.centroidWorld.copy(G.centroid);L.multiplyVector3(j.centroidWorld);j.centroidScreen.copy(j.centroidWorld);q.multiplyVector3(j.centroidScreen);R=G.vertexNormals;l=j.vertexNormalsWorld;u=0;
+for(B=R.length;u<B;u++){H=l[u]=l[u]||new THREE.Vector3;H.copy(R[u]);X.multiplyVector3(H)}j.z=j.centroidScreen.z;j.meshMaterial=T;j.faceMaterial=G.material;j.overdraw=V;if(z.geometry.uvs[r]){j.uvs[0]=z.geometry.uvs[r][0];j.uvs[1]=z.geometry.uvs[r][1];j.uvs[2]=z.geometry.uvs[r][2]}i.push(j);k++}}else if(G instanceof THREE.Face4){u=s[G.a];B=s[G.b];R=s[G.c];H=s[G.d];if(u.__visible&&B.__visible&&R.__visible&&H.__visible)if(z.doubleSided||z.flipSided!=((H.positionScreen.x-u.positionScreen.x)*(B.positionScreen.y-
+u.positionScreen.y)-(H.positionScreen.y-u.positionScreen.y)*(B.positionScreen.x-u.positionScreen.x)<0||(B.positionScreen.x-R.positionScreen.x)*(H.positionScreen.y-R.positionScreen.y)-(B.positionScreen.y-R.positionScreen.y)*(H.positionScreen.x-R.positionScreen.x)<0)){j=n[k]=n[k]||new THREE.RenderableFace3;j.v1.positionWorld.copy(u.positionWorld);j.v2.positionWorld.copy(B.positionWorld);j.v3.positionWorld.copy(H.positionWorld);j.v1.positionScreen.copy(u.positionScreen);j.v2.positionScreen.copy(B.positionScreen);
+j.v3.positionScreen.copy(H.positionScreen);j.normalWorld.copy(G.normal);X.multiplyVector3(j.normalWorld);j.centroidWorld.copy(G.centroid);L.multiplyVector3(j.centroidWorld);j.centroidScreen.copy(j.centroidWorld);q.multiplyVector3(j.centroidScreen);j.z=j.centroidScreen.z;j.meshMaterial=T;j.faceMaterial=G.material;j.overdraw=V;if(z.geometry.uvs[r]){j.uvs[0]=z.geometry.uvs[r][0];j.uvs[1]=z.geometry.uvs[r][1];j.uvs[2]=z.geometry.uvs[r][3]}i.push(j);k++;p=n[k]=n[k]||new THREE.RenderableFace3;p.v1.positionWorld.copy(B.positionWorld);
+p.v2.positionWorld.copy(R.positionWorld);p.v3.positionWorld.copy(H.positionWorld);p.v1.positionScreen.copy(B.positionScreen);p.v2.positionScreen.copy(R.positionScreen);p.v3.positionScreen.copy(H.positionScreen);p.normalWorld.copy(j.normalWorld);p.centroidWorld.copy(j.centroidWorld);p.centroidScreen.copy(j.centroidScreen);p.z=p.centroidScreen.z;p.meshMaterial=T;p.faceMaterial=G.material;p.overdraw=V;if(z.geometry.uvs[r]){p.uvs[0]=z.geometry.uvs[r][1];p.uvs[1]=z.geometry.uvs[r][2];p.uvs[2]=z.geometry.uvs[r][3]}i.push(p);
+k++}}}}else if(z instanceof THREE.Line){P.multiply(q,L);s=z.geometry.vertices;G=s[0];G.positionScreen.copy(G.position);P.multiplyVector4(G.positionScreen);r=1;for(t=s.length;r<t;r++){u=s[r];u.positionScreen.copy(u.position);P.multiplyVector4(u.positionScreen);B=s[r-1];K.copy(u.positionScreen);f.copy(B.positionScreen);if(b(K,f)){K.multiplyScalar(1/K.w);f.multiplyScalar(1/f.w);c=D[E]=D[E]||new THREE.RenderableLine;c.v1.positionScreen.copy(K);c.v2.positionScreen.copy(f);c.z=Math.max(K.z,f.z);c.material=
+z.material;i.push(c);E++}}}else if(z instanceof THREE.Particle){M.set(z.position.x,z.position.y,z.position.z,1);q.multiplyVector4(M);M.z/=M.w;if(M.z>0&&M.z<1){x=J[v]=J[v]||new THREE.RenderableParticle;x.x=M.x/M.w;x.y=M.y/M.w;x.z=M.z;x.rotation=z.rotation.z;x.scale.x=z.scale.x*Math.abs(x.x-(M.x+o.projectionMatrix.n11)/(M.w+o.projectionMatrix.n14));x.scale.y=z.scale.y*Math.abs(x.y-(M.y+o.projectionMatrix.n22)/(M.w+o.projectionMatrix.n24));x.material=z.material;i.push(x);v++}}}}m&&i.sort(a);return i};
+this.unprojectVector=function(e,o){var m=new THREE.Matrix4;m.multiply(THREE.Matrix4.makeInvert(o.matrix),THREE.Matrix4.makeInvert(o.projectionMatrix));m.multiplyVector3(e);return e}};
+THREE.DOMRenderer=function(){THREE.Renderer.call(this);var a=null,b=new THREE.Projector,g,d,h,j;this.domElement=document.createElement("div");this.setSize=function(p,k){g=p;d=k;h=g/2;j=d/2};this.render=function(p,k){var n,c,E,D,x,v,J,O;a=b.projectScene(p,k);n=0;for(c=a.length;n<c;n++){x=a[n];if(x instanceof THREE.RenderableParticle){J=x.x*h+h;O=x.y*j+j;E=0;for(D=x.material.length;E<D;E++){v=x.material[E];if(v instanceof THREE.ParticleDOMMaterial){v=v.domElement;v.style.left=J+"px";v.style.top=O+"px"}}}}}};
+THREE.CanvasRenderer=function(){var a=null,b=new THREE.Projector,g=document.createElement("canvas"),d,h,j,p,k=g.getContext("2d"),n=1,c=0,E=null,D=null,x=1,v,J,O,M,q,P,F,K,f,l=new THREE.Color,e=new THREE.Color,o=new THREE.Color,m=new THREE.Color,i=new THREE.Color,w,r,t,u,B,Q,z,L,X,T,V=new THREE.Rectangle,A=new THREE.Rectangle,s=new THREE.Rectangle,G=false,R=new THREE.Color,H=new THREE.Color,U=new THREE.Color,aa=new THREE.Color,Ja=Math.PI*2,Y=new THREE.Vector3,na,oa,Aa,da,pa,ta,la=16;na=document.createElement("canvas");
+na.width=na.height=2;oa=na.getContext("2d");oa.fillStyle="rgba(0,0,0,1)";oa.fillRect(0,0,2,2);Aa=oa.getImageData(0,0,2,2);da=Aa.data;pa=document.createElement("canvas");pa.width=pa.height=la;ta=pa.getContext("2d");ta.translate(-la/2,-la/2);ta.scale(la,la);la--;this.domElement=g;this.sortElements=this.sortObjects=this.autoClear=true;this.setSize=function(ga,ua){d=ga;h=ua;j=d/2;p=h/2;g.width=d;g.height=h;V.set(-j,-p,j,p)};this.clear=function(){if(!A.isEmpty()){A.inflate(1);A.minSelf(V);k.clearRect(A.getX(),
+A.getY(),A.getWidth(),A.getHeight());A.empty()}};this.render=function(ga,ua){function Ka(y){var S,N,C,I=y.lights;H.setRGB(0,0,0);U.setRGB(0,0,0);aa.setRGB(0,0,0);y=0;for(S=I.length;y<S;y++){N=I[y];C=N.color;if(N instanceof THREE.AmbientLight){H.r+=C.r;H.g+=C.g;H.b+=C.b}else if(N instanceof THREE.DirectionalLight){U.r+=C.r;U.g+=C.g;U.b+=C.b}else if(N instanceof THREE.PointLight){aa.r+=C.r;aa.g+=C.g;aa.b+=C.b}}}function va(y,S,N,C){var I,W,$,ba,ca=y.lights;y=0;for(I=ca.length;y<I;y++){W=ca[y];$=W.color;
+ba=W.intensity;if(W instanceof THREE.DirectionalLight){W=N.dot(W.position)*ba;if(W>0){C.r+=$.r*W;C.g+=$.g*W;C.b+=$.b*W}}else if(W instanceof THREE.PointLight){Y.sub(W.position,S);Y.normalize();W=N.dot(Y)*ba;if(W>0){C.r+=$.r*W;C.g+=$.g*W;C.b+=$.b*W}}}}function La(y,S,N){if(N.opacity!=0){Ba(N.opacity);wa(N.blending);var C,I,W,$,ba,ca;if(N instanceof THREE.ParticleBasicMaterial){if(N.map){$=N.map;ba=$.width>>1;ca=$.height>>1;I=S.scale.x*j;W=S.scale.y*p;N=I*ba;C=W*ca;s.set(y.x-N,y.y-C,y.x+N,y.y+C);if(V.instersects(s)){k.save();
+k.translate(y.x,y.y);k.rotate(-S.rotation);k.scale(I,-W);k.translate(-ba,-ca);k.drawImage($,0,0);k.restore()}}}else if(N instanceof THREE.ParticleCircleMaterial){if(G){R.r=H.r+U.r+aa.r;R.g=H.g+U.g+aa.g;R.b=H.b+U.b+aa.b;l.r=N.color.r*R.r;l.g=N.color.g*R.g;l.b=N.color.b*R.b;l.updateStyleString()}else l.__styleString=N.color.__styleString;N=S.scale.x*j;C=S.scale.y*p;s.set(y.x-N,y.y-C,y.x+N,y.y+C);if(V.instersects(s)){I=l.__styleString;if(D!=I)k.fillStyle=D=I;k.save();k.translate(y.x,y.y);k.rotate(-S.rotation);
+k.scale(N,C);k.beginPath();k.arc(0,0,1,0,Ja,true);k.closePath();k.fill();k.restore()}}}}function Ma(y,S,N,C){if(C.opacity!=0){Ba(C.opacity);wa(C.blending);k.beginPath();k.moveTo(y.positionScreen.x,y.positionScreen.y);k.lineTo(S.positionScreen.x,S.positionScreen.y);k.closePath();if(C instanceof THREE.LineBasicMaterial){l.__styleString=C.color.__styleString;y=C.linewidth;if(x!=y)k.lineWidth=x=y;y=l.__styleString;if(E!=y)k.strokeStyle=E=y;k.stroke();s.inflate(C.linewidth*2)}}}function Fa(y,S,N,C,I,W){if(I.opacity!=
+0){Ba(I.opacity);wa(I.blending);M=y.positionScreen.x;q=y.positionScreen.y;P=S.positionScreen.x;F=S.positionScreen.y;K=N.positionScreen.x;f=N.positionScreen.y;k.beginPath();k.moveTo(M,q);k.lineTo(P,F);k.lineTo(K,f);k.lineTo(M,q);k.closePath();if(I instanceof THREE.MeshBasicMaterial)if(I.map)I.map.image.loaded&&I.map.mapping instanceof THREE.UVMapping&&qa(M,q,P,F,K,f,I.map.image,C.uvs[0].u,C.uvs[0].v,C.uvs[1].u,C.uvs[1].v,C.uvs[2].u,C.uvs[2].v);else if(I.env_map){if(I.env_map.image.loaded)if(I.env_map.mapping instanceof
+THREE.SphericalReflectionMapping){y=ua.matrix;Y.copy(C.vertexNormalsWorld[0]);B=(Y.x*y.n11+Y.y*y.n12+Y.z*y.n13)*0.5+0.5;Q=-(Y.x*y.n21+Y.y*y.n22+Y.z*y.n23)*0.5+0.5;Y.copy(C.vertexNormalsWorld[1]);z=(Y.x*y.n11+Y.y*y.n12+Y.z*y.n13)*0.5+0.5;L=-(Y.x*y.n21+Y.y*y.n22+Y.z*y.n23)*0.5+0.5;Y.copy(C.vertexNormalsWorld[2]);X=(Y.x*y.n11+Y.y*y.n12+Y.z*y.n13)*0.5+0.5;T=-(Y.x*y.n21+Y.y*y.n22+Y.z*y.n23)*0.5+0.5;qa(M,q,P,F,K,f,I.env_map.image,B,Q,z,L,X,T)}}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):
+ya(I.color.__styleString);else if(I instanceof THREE.MeshLambertMaterial){if(I.map&&!I.wireframe){I.map.mapping instanceof THREE.UVMapping&&qa(M,q,P,F,K,f,I.map.image,C.uvs[0].u,C.uvs[0].v,C.uvs[1].u,C.uvs[1].v,C.uvs[2].u,C.uvs[2].v);wa(THREE.SubtractiveBlending)}if(G)if(!I.wireframe&&I.shading==THREE.SmoothShading&&C.vertexNormalsWorld.length==3){e.r=o.r=m.r=H.r;e.g=o.g=m.g=H.g;e.b=o.b=m.b=H.b;va(W,C.v1.positionWorld,C.vertexNormalsWorld[0],e);va(W,C.v2.positionWorld,C.vertexNormalsWorld[1],o);va(W,
+C.v3.positionWorld,C.vertexNormalsWorld[2],m);i.r=(o.r+m.r)*0.5;i.g=(o.g+m.g)*0.5;i.b=(o.b+m.b)*0.5;u=Ga(e,o,m,i);qa(M,q,P,F,K,f,u,0,0,1,0,0,1)}else{R.r=H.r;R.g=H.g;R.b=H.b;va(W,C.centroidWorld,C.normalWorld,R);l.r=I.color.r*R.r;l.g=I.color.g*R.g;l.b=I.color.b*R.b;l.updateStyleString();I.wireframe?xa(l.__styleString,I.wireframe_linewidth):ya(l.__styleString)}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):ya(I.color.__styleString)}else if(I instanceof THREE.MeshDepthMaterial){w=I.__2near;
+r=I.__farPlusNear;t=I.__farMinusNear;e.r=e.g=e.b=1-w/(r-y.positionScreen.z*t);o.r=o.g=o.b=1-w/(r-S.positionScreen.z*t);m.r=m.g=m.b=1-w/(r-N.positionScreen.z*t);i.r=(o.r+m.r)*0.5;i.g=(o.g+m.g)*0.5;i.b=(o.b+m.b)*0.5;u=Ga(e,o,m,i);qa(M,q,P,F,K,f,u,0,0,1,0,0,1)}else if(I instanceof THREE.MeshNormalMaterial){l.r=Ca(C.normalWorld.x);l.g=Ca(C.normalWorld.y);l.b=Ca(C.normalWorld.z);l.updateStyleString();I.wireframe?xa(l.__styleString,I.wireframe_linewidth):ya(l.__styleString)}}}function xa(y,S){if(E!=y)k.strokeStyle=
+E=y;if(x!=S)k.lineWidth=x=S;k.stroke();s.inflate(S*2)}function ya(y){if(D!=y)k.fillStyle=D=y;k.fill()}function qa(y,S,N,C,I,W,$,ba,ca,ha,ea,ia,ra){var ka,ja;ka=$.width-1;ja=$.height-1;ba*=ka;ca*=ja;ha*=ka;ea*=ja;ia*=ka;ra*=ja;N-=y;C-=S;I-=y;W-=S;ha-=ba;ea-=ca;ia-=ba;ra-=ca;ja=1/(ha*ra-ia*ea);ka=(ra*N-ea*I)*ja;ea=(ra*C-ea*W)*ja;N=(ha*I-ia*N)*ja;C=(ha*W-ia*C)*ja;y=y-ka*ba-N*ca;S=S-ea*ba-C*ca;k.save();k.transform(ka,ea,N,C,y,S);k.clip();k.drawImage($,0,0);k.restore()}function Ba(y){if(n!=y)k.globalAlpha=
+n=y}function wa(y){if(c!=y){switch(y){case THREE.NormalBlending:k.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:k.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:k.globalCompositeOperation="darker"}c=y}}function Ga(y,S,N,C){var I=~~(y.r*255),W=~~(y.g*255);y=~~(y.b*255);var $=~~(S.r*255),ba=~~(S.g*255);S=~~(S.b*255);var ca=~~(N.r*255),ha=~~(N.g*255);N=~~(N.b*255);var ea=~~(C.r*255),ia=~~(C.g*255);C=~~(C.b*255);da[0]=I<0?0:I>255?255:I;da[1]=W<0?0:W>
+255?255:W;da[2]=y<0?0:y>255?255:y;da[4]=$<0?0:$>255?255:$;da[5]=ba<0?0:ba>255?255:ba;da[6]=S<0?0:S>255?255:S;da[8]=ca<0?0:ca>255?255:ca;da[9]=ha<0?0:ha>255?255:ha;da[10]=N<0?0:N>255?255:N;da[12]=ea<0?0:ea>255?255:ea;da[13]=ia<0?0:ia>255?255:ia;da[14]=C<0?0:C>255?255:C;oa.putImageData(Aa,0,0);ta.drawImage(na,0,0);return pa}function Ca(y){y=(y+1)*0.5;return y<0?0:y>1?1:y}function Da(y,S){var N=S.x-y.x,C=S.y-y.y,I=1/Math.sqrt(N*N+C*C);N*=I;C*=I;S.x+=N;S.y+=C;y.x-=N;y.y-=C}var za,Ha,Z,fa,ma,Ea,Ia,sa;
+k.setTransform(1,0,0,-1,j,p);this.autoClear&&this.clear();a=b.projectScene(ga,ua,this.sortElements);(G=ga.lights.length>0)&&Ka(ga);za=0;for(Ha=a.length;za<Ha;za++){Z=a[za];s.empty();if(Z instanceof THREE.RenderableParticle){v=Z;v.x*=j;v.y*=p;fa=0;for(ma=Z.material.length;fa<ma;fa++)La(v,Z,Z.material[fa],ga)}else if(Z instanceof THREE.RenderableLine){v=Z.v1;J=Z.v2;v.positionScreen.x*=j;v.positionScreen.y*=p;J.positionScreen.x*=j;J.positionScreen.y*=p;s.addPoint(v.positionScreen.x,v.positionScreen.y);
+s.addPoint(J.positionScreen.x,J.positionScreen.y);if(V.instersects(s)){fa=0;for(ma=Z.material.length;fa<ma;)Ma(v,J,Z,Z.material[fa++],ga)}}else if(Z instanceof THREE.RenderableFace3){v=Z.v1;J=Z.v2;O=Z.v3;v.positionScreen.x*=j;v.positionScreen.y*=p;J.positionScreen.x*=j;J.positionScreen.y*=p;O.positionScreen.x*=j;O.positionScreen.y*=p;if(Z.overdraw){Da(v.positionScreen,J.positionScreen);Da(J.positionScreen,O.positionScreen);Da(O.positionScreen,v.positionScreen)}s.add3Points(v.positionScreen.x,v.positionScreen.y,
+J.positionScreen.x,J.positionScreen.y,O.positionScreen.x,O.positionScreen.y);if(V.instersects(s)){fa=0;for(ma=Z.meshMaterial.length;fa<ma;){sa=Z.meshMaterial[fa++];if(sa instanceof THREE.MeshFaceMaterial){Ea=0;for(Ia=Z.faceMaterial.length;Ea<Ia;)(sa=Z.faceMaterial[Ea++])&&Fa(v,J,O,Z,sa,ga)}else Fa(v,J,O,Z,sa,ga)}}}A.addRectangle(s)}k.setTransform(1,0,0,1,0,0)}};
+THREE.SVGRenderer=function(){function a(L,X,T){var V,A,s,G;V=0;for(A=L.lights.length;V<A;V++){s=L.lights[V];if(s instanceof THREE.DirectionalLight){G=X.normalWorld.dot(s.position)*s.intensity;if(G>0){T.r+=s.color.r*G;T.g+=s.color.g*G;T.b+=s.color.b*G}}else if(s instanceof THREE.PointLight){m.sub(s.position,X.centroidWorld);m.normalize();G=X.normalWorld.dot(m)*s.intensity;if(G>0){T.r+=s.color.r*G;T.g+=s.color.g*G;T.b+=s.color.b*G}}}}function b(L,X,T,V,A,s){t=d(u++);t.setAttribute("d","M "+L.positionScreen.x+
+" "+L.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+T.positionScreen.x+","+T.positionScreen.y+"z");if(A instanceof THREE.MeshBasicMaterial)F.__styleString=A.color.__styleString;else if(A instanceof THREE.MeshLambertMaterial)if(P){K.r=f.r;K.g=f.g;K.b=f.b;a(s,V,K);F.r=A.color.r*K.r;F.g=A.color.g*K.g;F.b=A.color.b*K.b;F.updateStyleString()}else F.__styleString=A.color.__styleString;else if(A instanceof THREE.MeshDepthMaterial){o=1-A.__2near/(A.__farPlusNear-V.z*A.__farMinusNear);
+F.setRGB(o,o,o)}else A instanceof THREE.MeshNormalMaterial&&F.setRGB(h(V.normalWorld.x),h(V.normalWorld.y),h(V.normalWorld.z));A.wireframe?t.setAttribute("style","fill: none; stroke: "+F.__styleString+"; stroke-width: "+A.wireframe_linewidth+"; stroke-opacity: "+A.opacity+"; stroke-linecap: "+A.wireframe_linecap+"; stroke-linejoin: "+A.wireframe_linejoin):t.setAttribute("style","fill: "+F.__styleString+"; fill-opacity: "+A.opacity);k.appendChild(t)}function g(L,X,T,V,A,s,G){t=d(u++);t.setAttribute("d",
+"M "+L.positionScreen.x+" "+L.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+T.positionScreen.x+","+T.positionScreen.y+" L "+V.positionScreen.x+","+V.positionScreen.y+"z");if(s instanceof THREE.MeshBasicMaterial)F.__styleString=s.color.__styleString;else if(s instanceof THREE.MeshLambertMaterial)if(P){K.r=f.r;K.g=f.g;K.b=f.b;a(G,A,K);F.r=s.color.r*K.r;F.g=s.color.g*K.g;F.b=s.color.b*K.b;F.updateStyleString()}else F.__styleString=s.color.__styleString;else if(s instanceof THREE.MeshDepthMaterial){o=
+1-s.__2near/(s.__farPlusNear-A.z*s.__farMinusNear);F.setRGB(o,o,o)}else s instanceof THREE.MeshNormalMaterial&&F.setRGB(h(A.normalWorld.x),h(A.normalWorld.y),h(A.normalWorld.z));s.wireframe?t.setAttribute("style","fill: none; stroke: "+F.__styleString+"; stroke-width: "+s.wireframe_linewidth+"; stroke-opacity: "+s.opacity+"; stroke-linecap: "+s.wireframe_linecap+"; stroke-linejoin: "+s.wireframe_linejoin):t.setAttribute("style","fill: "+F.__styleString+"; fill-opacity: "+s.opacity);k.appendChild(t)}
+function d(L){if(i[L]==null){i[L]=document.createElementNS("http://www.w3.org/2000/svg","path");z==0&&i[L].setAttribute("shape-rendering","crispEdges");return i[L]}return i[L]}function h(L){return L<0?Math.min((1+L)*0.5,0.5):0.5+Math.min(L*0.5,0.5)}var j=null,p=new THREE.Projector,k=document.createElementNS("http://www.w3.org/2000/svg","svg"),n,c,E,D,x,v,J,O,M=new THREE.Rectangle,q=new THREE.Rectangle,P=false,F=new THREE.Color(16777215),K=new THREE.Color(16777215),f=new THREE.Color(0),l=new THREE.Color(0),
+e=new THREE.Color(0),o,m=new THREE.Vector3,i=[],w=[],r=[],t,u,B,Q,z=1;this.domElement=k;this.sortElements=this.sortObjects=this.autoClear=true;this.setQuality=function(L){switch(L){case "high":z=1;break;case "low":z=0}};this.setSize=function(L,X){n=L;c=X;E=n/2;D=c/2;k.setAttribute("viewBox",-E+" "+-D+" "+n+" "+c);k.setAttribute("width",n);k.setAttribute("height",c);M.set(-E,-D,E,D)};this.clear=function(){for(;k.childNodes.length>0;)k.removeChild(k.childNodes[0])};this.render=function(L,X){var T,V,
+A,s,G,R,H,U;this.autoClear&&this.clear();j=p.projectScene(L,X,this.sortElements);Q=B=u=0;if(P=L.lights.length>0){H=L.lights;f.setRGB(0,0,0);l.setRGB(0,0,0);e.setRGB(0,0,0);T=0;for(V=H.length;T<V;T++){A=H[T];s=A.color;if(A instanceof THREE.AmbientLight){f.r+=s.r;f.g+=s.g;f.b+=s.b}else if(A instanceof THREE.DirectionalLight){l.r+=s.r;l.g+=s.g;l.b+=s.b}else if(A instanceof THREE.PointLight){e.r+=s.r;e.g+=s.g;e.b+=s.b}}}T=0;for(V=j.length;T<V;T++){H=j[T];q.empty();if(H instanceof THREE.RenderableParticle){x=
+H;x.x*=E;x.y*=-D;A=0;for(s=H.material.length;A<s;A++)if(U=H.material[A]){G=x;R=H;U=U;var aa=B++;if(w[aa]==null){w[aa]=document.createElementNS("http://www.w3.org/2000/svg","circle");z==0&&w[aa].setAttribute("shape-rendering","crispEdges")}t=w[aa];t.setAttribute("cx",G.x);t.setAttribute("cy",G.y);t.setAttribute("r",R.scale.x*E);if(U instanceof THREE.ParticleCircleMaterial){if(P){K.r=f.r+l.r+e.r;K.g=f.g+l.g+e.g;K.b=f.b+l.b+e.b;F.r=U.color.r*K.r;F.g=U.color.g*K.g;F.b=U.color.b*K.b;F.updateStyleString()}else F=
+U.color;t.setAttribute("style","fill: "+F.__styleString)}k.appendChild(t)}}else if(H instanceof THREE.RenderableLine){x=H.v1;v=H.v2;x.positionScreen.x*=E;x.positionScreen.y*=-D;v.positionScreen.x*=E;v.positionScreen.y*=-D;q.addPoint(x.positionScreen.x,x.positionScreen.y);q.addPoint(v.positionScreen.x,v.positionScreen.y);if(M.instersects(q)){A=0;for(s=H.material.length;A<s;)if(U=H.material[A++]){G=x;R=v;U=U;aa=Q++;if(r[aa]==null){r[aa]=document.createElementNS("http://www.w3.org/2000/svg","line");
+z==0&&r[aa].setAttribute("shape-rendering","crispEdges")}t=r[aa];t.setAttribute("x1",G.positionScreen.x);t.setAttribute("y1",G.positionScreen.y);t.setAttribute("x2",R.positionScreen.x);t.setAttribute("y2",R.positionScreen.y);if(U instanceof THREE.LineBasicMaterial){F.__styleString=U.color.__styleString;t.setAttribute("style","fill: none; stroke: "+F.__styleString+"; stroke-width: "+U.linewidth+"; stroke-opacity: "+U.opacity+"; stroke-linecap: "+U.linecap+"; stroke-linejoin: "+U.linejoin);k.appendChild(t)}}}}else if(H instanceof
+THREE.RenderableFace3){x=H.v1;v=H.v2;J=H.v3;x.positionScreen.x*=E;x.positionScreen.y*=-D;v.positionScreen.x*=E;v.positionScreen.y*=-D;J.positionScreen.x*=E;J.positionScreen.y*=-D;q.addPoint(x.positionScreen.x,x.positionScreen.y);q.addPoint(v.positionScreen.x,v.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);if(M.instersects(q)){A=0;for(s=H.meshMaterial.length;A<s;){U=H.meshMaterial[A++];if(U instanceof THREE.MeshFaceMaterial){G=0;for(R=H.faceMaterial.length;G<R;)(U=H.faceMaterial[G++])&&
+b(x,v,J,H,U,L)}else U&&b(x,v,J,H,U,L)}}}else if(H instanceof THREE.RenderableFace4){x=H.v1;v=H.v2;J=H.v3;O=H.v4;x.positionScreen.x*=E;x.positionScreen.y*=-D;v.positionScreen.x*=E;v.positionScreen.y*=-D;J.positionScreen.x*=E;J.positionScreen.y*=-D;O.positionScreen.x*=E;O.positionScreen.y*=-D;q.addPoint(x.positionScreen.x,x.positionScreen.y);q.addPoint(v.positionScreen.x,v.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);q.addPoint(O.positionScreen.x,O.positionScreen.y);if(M.instersects(q)){A=
+0;for(s=H.meshMaterial.length;A<s;){U=H.meshMaterial[A++];if(U instanceof THREE.MeshFaceMaterial){G=0;for(R=H.faceMaterial.length;G<R;)(U=H.faceMaterial[G++])&&g(x,v,J,O,H,U,L)}else U&&g(x,v,J,O,H,U,L)}}}}}};
+THREE.WebGLRenderer=function(a){function b(f,l){var e=c.createProgram(),o=[c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0?"#define VERTEX_TEXTURES":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nattribute vec3 position;\nattribute vec3 normal;\nattribute vec2 uv;\n"].join("\n");c.attachShader(e,p("fragment","#ifdef GL_ES\nprecision highp float;\n#endif\nuniform mat4 viewMatrix;\nuniform vec3 cameraPosition;\n"+
+f));c.attachShader(e,p("vertex",o+l));c.linkProgram(e);c.getProgramParameter(e,c.LINK_STATUS)||alert("Could not initialise shaders\nVALIDATE_STATUS: "+c.getProgramParameter(e,c.VALIDATE_STATUS)+", gl error ["+c.getError()+"]");e.uniforms={};e.attributes={};return e}function g(f,l){if(f.image.length==6){if(!f.image.__webGLTextureCube&&!f.image.__cubeMapInitialized&&f.image.loadCount==6){f.image.__webGLTextureCube=c.createTexture();c.bindTexture(c.TEXTURE_CUBE_MAP,f.image.__webGLTextureCube);c.texParameteri(c.TEXTURE_CUBE_MAP,
+c.TEXTURE_WRAP_S,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_WRAP_T,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MAG_FILTER,c.LINEAR);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MIN_FILTER,c.LINEAR_MIPMAP_LINEAR);for(var e=0;e<6;++e)c.texImage2D(c.TEXTURE_CUBE_MAP_POSITIVE_X+e,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,f.image[e]);c.generateMipmap(c.TEXTURE_CUBE_MAP);c.bindTexture(c.TEXTURE_CUBE_MAP,null);f.image.__cubeMapInitialized=true}c.activeTexture(c.TEXTURE0+l);c.bindTexture(c.TEXTURE_CUBE_MAP,
+f.image.__webGLTextureCube)}}function d(f,l){if(!f.__webGLTexture&&f.image.loaded){f.__webGLTexture=c.createTexture();c.bindTexture(c.TEXTURE_2D,f.__webGLTexture);c.texImage2D(c.TEXTURE_2D,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,f.image);c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_S,k(f.wrap_s));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_T,k(f.wrap_t));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MAG_FILTER,k(f.mag_filter));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MIN_FILTER,k(f.min_filter));c.generateMipmap(c.TEXTURE_2D);
+c.bindTexture(c.TEXTURE_2D,null)}c.activeTexture(c.TEXTURE0+l);c.bindTexture(c.TEXTURE_2D,f.__webGLTexture)}function h(f,l){var e,o,m;e=0;for(o=l.length;e<o;e++){m=l[e];f.uniforms[m]=c.getUniformLocation(f,m)}}function j(f,l){var e,o,m;e=0;for(o=l.length;e<o;e++){m=l[e];f.attributes[m]=c.getAttribLocation(f,m)}}function p(f,l){var e;if(f=="fragment")e=c.createShader(c.FRAGMENT_SHADER);else if(f=="vertex")e=c.createShader(c.VERTEX_SHADER);c.shaderSource(e,l);c.compileShader(e);if(!c.getShaderParameter(e,
+c.COMPILE_STATUS)){alert(c.getShaderInfoLog(e));return null}return e}function k(f){switch(f){case THREE.RepeatWrapping:return c.REPEAT;case THREE.ClampToEdgeWrapping:return c.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return c.MIRRORED_REPEAT;case THREE.NearestFilter:return c.NEAREST;case THREE.NearestMipMapNearestFilter:return c.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return c.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return c.LINEAR;case THREE.LinearMipMapNearestFilter:return c.LINEAR_MIPMAP_NEAREST;
+case THREE.LinearMipMapLinearFilter:return c.LINEAR_MIPMAP_LINEAR}return 0}var n=document.createElement("canvas"),c,E,D,x=new THREE.Matrix4,v,J=new Float32Array(16),O=new Float32Array(16),M=new Float32Array(16),q=new Float32Array(9),P=new Float32Array(16);a=function(f,l){if(f){var e,o,m,i=pointLights=maxDirLights=maxPointLights=0;e=0;for(o=f.lights.length;e<o;e++){m=f.lights[e];m instanceof THREE.DirectionalLight&&i++;m instanceof THREE.PointLight&&pointLights++}if(pointLights+i<=l){maxDirLights=
+i;maxPointLights=pointLights}else{maxDirLights=Math.ceil(l*i/(pointLights+i));maxPointLights=l-maxDirLights}return{directional:maxDirLights,point:maxPointLights}}return{directional:1,point:l-1}}(a,4);this.domElement=n;this.autoClear=true;try{c=n.getContext("experimental-webgl",{antialias:true})}catch(F){}if(!c){alert("WebGL not supported");throw"cannot create webgl context";}c.clearColor(0,0,0,1);c.clearDepth(1);c.enable(c.DEPTH_TEST);c.depthFunc(c.LEQUAL);c.frontFace(c.CCW);c.cullFace(c.BACK);c.enable(c.CULL_FACE);
+c.enable(c.BLEND);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA);c.clearColor(0,0,0,0);E=D=function(f,l){var e=[f?"#define MAX_DIR_LIGHTS "+f:"",l?"#define MAX_POINT_LIGHTS "+l:"","uniform bool enableLighting;\nuniform bool useRefract;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;\nuniform vec3 ambientLightColor;",f?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",f?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",l?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":
+"",l?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",l?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nuniform float mRefractionRatio;\nvoid main(void) {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvViewPosition = cameraPosition - mPosition.xyz;\nvec3 nWorld = mat3( objectMatrix[0].xyz, objectMatrix[1].xyz, objectMatrix[2].xyz ) * normal;\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvec3 transformedNormal = normalize( normalMatrix * normal );\nif ( !enableLighting ) {\nvLightWeighting = vec3( 1.0, 1.0, 1.0 );\n} else {\nvLightWeighting = ambientLightColor;",
+f?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",f?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",f?"float directionalLightWeighting = max( dot( transformedNormal, normalize( lDirection.xyz ) ), 0.0 );":"",f?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",f?"}":"",l?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",l?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",l?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":
+"",l?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",l?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",l?"}":"","}\nvNormal = transformedNormal;\nvUv = uv;\nif ( useRefract ) {\nvReflect = refract( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz), mRefractionRatio );\n} else {\nvReflect = reflect( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz) );\n}\ngl_Position = projectionMatrix * mvPosition;\n}"].join("\n"),
+o=[f?"#define MAX_DIR_LIGHTS "+f:"",l?"#define MAX_POINT_LIGHTS "+l:"","uniform int material;\nuniform bool enableMap;\nuniform bool enableCubeMap;\nuniform bool mixEnvMap;\nuniform samplerCube tCube;\nuniform float mReflectivity;\nuniform sampler2D tMap;\nuniform vec4 mColor;\nuniform float mOpacity;\nuniform vec4 mAmbient;\nuniform vec4 mSpecular;\nuniform float mShininess;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;",f?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":
+"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",l?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nvoid main() {\nvec4 mapColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nvec4 cubeColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nif ( enableMap ) {\nmapColor = texture2D( tMap, vUv );\n}\nif ( enableCubeMap ) {\ncubeColor = textureCube( tCube, vec3( -vReflect.x, vReflect.yz ) );\n}\nif ( material == 2 ) { \nvec3 normal = normalize( vNormal );\nvec3 viewPosition = normalize( vViewPosition );",
+l?"vec4 pointDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",l?"vec4 pointSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",l?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",l?"vec3 pointVector = normalize( vPointLightVector[ i ] );":"",l?"vec3 pointHalfVector = normalize( vPointLightVector[ i ] + vViewPosition );":"",l?"float pointDotNormalHalf = dot( normal, pointHalfVector );":"",l?"float pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );":"",l?"float pointSpecularWeight = 0.0;":"",l?"if ( pointDotNormalHalf >= 0.0 )":
+"",l?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",l?"pointDiffuse  += mColor * pointDiffuseWeight;":"",l?"pointSpecular += mSpecular * pointSpecularWeight;":"",l?"}":"",f?"vec4 dirDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",f?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",f?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",f?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",f?"vec3 dirVector = normalize( lDirection.xyz );":"",f?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":
+"",f?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",f?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",f?"float dirSpecularWeight = 0.0;":"",f?"if ( dirDotNormalHalf >= 0.0 )":"",f?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",f?"dirDiffuse  += mColor * dirDiffuseWeight;":"",f?"dirSpecular += mSpecular * dirSpecularWeight;":"",f?"}":"","vec4 totalLight = mAmbient;",f?"totalLight += dirDiffuse + dirSpecular;":"",l?"totalLight += pointDiffuse + pointSpecular;":
+"","if ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mapColor.rgb * totalLight.xyz * vLightWeighting, cubeColor.rgb, mReflectivity ), mapColor.a );\n} else {\ngl_FragColor = vec4( mapColor.rgb * cubeColor.rgb * totalLight.xyz * vLightWeighting, mapColor.a );\n}\n} else if ( material == 1 ) {\nif ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mColor.rgb * mapColor.rgb * vLightWeighting, cubeColor.rgb, mReflectivity ), mColor.a * mapColor.a );\n} else {\ngl_FragColor = vec4( mColor.rgb * mapColor.rgb * cubeColor.rgb * vLightWeighting, mColor.a * mapColor.a );\n}\n} else {\nif ( mixEnvMap ) {\ngl_FragColor = mix( mColor * mapColor, cubeColor, mReflectivity );\n} else {\ngl_FragColor = mColor * mapColor * cubeColor;\n}\n}\n}"].join("\n");
+e=b(o,e);c.useProgram(e);h(e,["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition","enableLighting","ambientLightColor","material","mColor","mAmbient","mSpecular","mShininess","mOpacity","enableMap","tMap","enableCubeMap","tCube","mixEnvMap","mReflectivity","mRefractionRatio","useRefract"]);f&&h(e,["directionalLightNumber","directionalLightColor","directionalLightDirection"]);l&&h(e,["pointLightNumber","pointLightColor","pointLightPosition"]);c.uniform1i(e.uniforms.enableMap,
+0);c.uniform1i(e.uniforms.tMap,0);c.uniform1i(e.uniforms.enableCubeMap,0);c.uniform1i(e.uniforms.tCube,1);c.uniform1i(e.uniforms.mixEnvMap,0);c.uniform1i(e.uniforms.useRefract,0);j(e,["position","normal","uv"]);return e}(a.directional,a.point);this.setSize=function(f,l){n.width=f;n.height=l;c.viewport(0,0,n.width,n.height)};this.clear=function(){c.clear(c.COLOR_BUFFER_BIT|c.DEPTH_BUFFER_BIT)};this.setupLights=function(f,l){var e,o,m,i,w,r=[],t=[],u=[];i=[];w=[];c.uniform1i(f.uniforms.enableLighting,
+l.length);e=0;for(o=l.length;e<o;e++){m=l[e];if(m instanceof THREE.AmbientLight)r.push(m);else if(m instanceof THREE.DirectionalLight)u.push(m);else m instanceof THREE.PointLight&&t.push(m)}e=m=i=w=0;for(o=r.length;e<o;e++){m+=r[e].color.r;i+=r[e].color.g;w+=r[e].color.b}c.uniform3f(f.uniforms.ambientLightColor,m,i,w);i=[];w=[];e=0;for(o=u.length;e<o;e++){m=u[e];i.push(m.color.r*m.intensity);i.push(m.color.g*m.intensity);i.push(m.color.b*m.intensity);w.push(m.position.x);w.push(m.position.y);w.push(m.position.z)}if(u.length){c.uniform1i(f.uniforms.directionalLightNumber,
+u.length);c.uniform3fv(f.uniforms.directionalLightDirection,w);c.uniform3fv(f.uniforms.directionalLightColor,i)}i=[];w=[];e=0;for(o=t.length;e<o;e++){m=t[e];i.push(m.color.r*m.intensity);i.push(m.color.g*m.intensity);i.push(m.color.b*m.intensity);w.push(m.position.x);w.push(m.position.y);w.push(m.position.z)}if(t.length){c.uniform1i(f.uniforms.pointLightNumber,t.length);c.uniform3fv(f.uniforms.pointLightPosition,w);c.uniform3fv(f.uniforms.pointLightColor,i)}};this.createBuffers=function(f,l){var e,
+o,m,i,w,r,t,u,B,Q=[],z=[],L=[],X=[],T=[],V=[],A=0,s=f.geometry.geometryChunks[l],G;m=false;e=0;for(o=f.material.length;e<o;e++){meshMaterial=f.material[e];if(meshMaterial instanceof THREE.MeshFaceMaterial){w=0;for(G=s.material.length;w<G;w++)if(s.material[w]&&s.material[w].shading!=undefined&&s.material[w].shading==THREE.SmoothShading){m=true;break}}else if(meshMaterial&&meshMaterial.shading!=undefined&&meshMaterial.shading==THREE.SmoothShading){m=true;break}if(m)break}G=m;e=0;for(o=s.faces.length;e<
+o;e++){m=s.faces[e];i=f.geometry.faces[m];w=i.vertexNormals;faceNormal=i.normal;m=f.geometry.uvs[m];if(i instanceof THREE.Face3){r=f.geometry.vertices[i.a].position;t=f.geometry.vertices[i.b].position;u=f.geometry.vertices[i.c].position;L.push(r.x,r.y,r.z);L.push(t.x,t.y,t.z);L.push(u.x,u.y,u.z);if(f.geometry.hasTangents){r=f.geometry.vertices[i.a].tangent;t=f.geometry.vertices[i.b].tangent;u=f.geometry.vertices[i.c].tangent;T.push(r.x,r.y,r.z,r.w);T.push(t.x,t.y,t.z,t.w);T.push(u.x,u.y,u.z,u.w)}if(w.length==
+3&&G)for(i=0;i<3;i++)X.push(w[i].x,w[i].y,w[i].z);else for(i=0;i<3;i++)X.push(faceNormal.x,faceNormal.y,faceNormal.z);if(m)for(i=0;i<3;i++)V.push(m[i].u,m[i].v);Q.push(A,A+1,A+2);z.push(A,A+1);z.push(A,A+2);z.push(A+1,A+2);A+=3}else if(i instanceof THREE.Face4){r=f.geometry.vertices[i.a].position;t=f.geometry.vertices[i.b].position;u=f.geometry.vertices[i.c].position;B=f.geometry.vertices[i.d].position;L.push(r.x,r.y,r.z);L.push(t.x,t.y,t.z);L.push(u.x,u.y,u.z);L.push(B.x,B.y,B.z);if(f.geometry.hasTangents){r=
+f.geometry.vertices[i.a].tangent;t=f.geometry.vertices[i.b].tangent;u=f.geometry.vertices[i.c].tangent;i=f.geometry.vertices[i.d].tangent;T.push(r.x,r.y,r.z,r.w);T.push(t.x,t.y,t.z,t.w);T.push(u.x,u.y,u.z,u.w);T.push(i.x,i.y,i.z,i.w)}if(w.length==4&&G)for(i=0;i<4;i++)X.push(w[i].x,w[i].y,w[i].z);else for(i=0;i<4;i++)X.push(faceNormal.x,faceNormal.y,faceNormal.z);if(m)for(i=0;i<4;i++)V.push(m[i].u,m[i].v);Q.push(A,A+1,A+2);Q.push(A,A+2,A+3);z.push(A,A+1);z.push(A,A+2);z.push(A,A+3);z.push(A+1,A+2);
+z.push(A+2,A+3);A+=4}}if(L.length){s.__webGLVertexBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLVertexBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(L),c.STATIC_DRAW);s.__webGLNormalBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLNormalBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(X),c.STATIC_DRAW);if(f.geometry.hasTangents){s.__webGLTangentBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLTangentBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(T),
+c.STATIC_DRAW)}if(V.length>0){s.__webGLUVBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLUVBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(V),c.STATIC_DRAW)}s.__webGLFaceBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,s.__webGLFaceBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(Q),c.STATIC_DRAW);s.__webGLLineBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,s.__webGLLineBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(z),c.STATIC_DRAW);
+s.__webGLFaceCount=Q.length;s.__webGLLineCount=z.length}};this.renderBuffer=function(f,l,e,o){var m,i,w,r,t,u,B,Q,z;if(e instanceof THREE.MeshShaderMaterial||e instanceof THREE.MeshDepthMaterial||e instanceof THREE.MeshNormalMaterial){if(!e.program){if(e instanceof THREE.MeshDepthMaterial){B=K.depth;e.fragment_shader=B.fragment_shader;e.vertex_shader=B.vertex_shader;e.uniforms=B.uniforms;e.uniforms.mNear.value=e.near;e.uniforms.mFar.value=e.far}else if(e instanceof THREE.MeshNormalMaterial){B=K.normal;
+e.fragment_shader=B.fragment_shader;e.vertex_shader=B.vertex_shader;e.uniforms=B.uniforms}e.program=b(e.fragment_shader,e.vertex_shader);B=["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition"];for(z in e.uniforms)B.push(z);h(e.program,B);j(e.program,["position","normal","uv","tangent"])}z=e.program}else z=D;if(z!=E){c.useProgram(z);E=z}z==D&&this.setupLights(z,l);this.loadCamera(z,f);this.loadMatrices(z);if(e instanceof THREE.MeshShaderMaterial||e instanceof
+THREE.MeshDepthMaterial||e instanceof THREE.MeshNormalMaterial){w=e.wireframe;r=e.wireframe_linewidth;f=z;l=e.uniforms;var L;for(m in l){Q=l[m].type;B=l[m].value;L=f.uniforms[m];if(Q=="i")c.uniform1i(L,B);else if(Q=="f")c.uniform1f(L,B);else if(Q=="v3")c.uniform3f(L,B.x,B.y,B.z);else if(Q=="c")c.uniform3f(L,B.r,B.g,B.b);else if(Q=="t"){c.uniform1i(L,B);if(Q=l[m].texture)Q.image instanceof Array&&Q.image.length==6?g(Q,B):d(Q,B)}}}if(e instanceof THREE.MeshPhongMaterial||e instanceof THREE.MeshLambertMaterial||
+e instanceof THREE.MeshBasicMaterial){m=e.color;i=e.opacity;w=e.wireframe;r=e.wireframe_linewidth;t=e.map;u=e.env_map;l=e.combine==THREE.MixOperation;f=e.reflectivity;Q=e.env_map&&e.env_map.mapping instanceof THREE.CubeRefractionMapping;B=e.refraction_ratio;c.uniform4f(z.uniforms.mColor,m.r*i,m.g*i,m.b*i,i);c.uniform1i(z.uniforms.mixEnvMap,l);c.uniform1f(z.uniforms.mReflectivity,f);c.uniform1i(z.uniforms.useRefract,Q);c.uniform1f(z.uniforms.mRefractionRatio,B)}if(e instanceof THREE.MeshPhongMaterial){m=
+e.ambient;f=e.specular;e=e.shininess;c.uniform4f(z.uniforms.mAmbient,m.r,m.g,m.b,i);c.uniform4f(z.uniforms.mSpecular,f.r,f.g,f.b,i);c.uniform1f(z.uniforms.mShininess,e);c.uniform1i(z.uniforms.material,2)}else if(e instanceof THREE.MeshLambertMaterial)c.uniform1i(z.uniforms.material,1);else e instanceof THREE.MeshBasicMaterial&&c.uniform1i(z.uniforms.material,0);if(t){d(t,0);c.uniform1i(z.uniforms.tMap,0);c.uniform1i(z.uniforms.enableMap,1)}else c.uniform1i(z.uniforms.enableMap,0);if(u){g(u,1);c.uniform1i(z.uniforms.tCube,
+1);c.uniform1i(z.uniforms.enableCubeMap,1)}else c.uniform1i(z.uniforms.enableCubeMap,0);i=z.attributes;c.bindBuffer(c.ARRAY_BUFFER,o.__webGLVertexBuffer);c.vertexAttribPointer(i.position,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.position);if(i.normal>=0){c.bindBuffer(c.ARRAY_BUFFER,o.__webGLNormalBuffer);c.vertexAttribPointer(i.normal,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.normal)}if(i.tangent>=0){c.bindBuffer(c.ARRAY_BUFFER,o.__webGLTangentBuffer);c.vertexAttribPointer(i.tangent,
+4,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.tangent)}if(i.uv>=0)if(o.__webGLUVBuffer){c.bindBuffer(c.ARRAY_BUFFER,o.__webGLUVBuffer);c.vertexAttribPointer(i.uv,2,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.uv)}else c.disableVertexAttribArray(i.uv);if(w){c.lineWidth(r);c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,o.__webGLLineBuffer);c.drawElements(c.LINES,o.__webGLLineCount,c.UNSIGNED_SHORT,0)}else{c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,o.__webGLFaceBuffer);c.drawElements(c.TRIANGLES,o.__webGLFaceCount,
+c.UNSIGNED_SHORT,0)}};this.renderPass=function(f,l,e,o,m,i){var w,r,t,u,B;t=0;for(u=e.material.length;t<u;t++){w=e.material[t];if(w instanceof THREE.MeshFaceMaterial){w=0;for(r=o.material.length;w<r;w++)if((B=o.material[w])&&B.blending==m&&B.opacity<1==i){this.setBlending(B.blending);this.renderBuffer(f,l,B,o)}}else if((B=w)&&B.blending==m&&B.opacity<1==i){this.setBlending(B.blending);this.renderBuffer(f,l,B,o)}}};this.render=function(f,l){var e,o,m,i,w=f.lights;this.initWebGLObjects(f);this.autoClear&&
+this.clear();l.autoUpdateMatrix&&l.updateMatrix();J.set(l.matrix.flatten());M.set(l.projectionMatrix.flatten());e=0;for(o=f.__webGLObjects.length;e<o;e++){m=f.__webGLObjects[e];i=m.object;m=m.buffer;if(i.visible){this.setupMatrices(i,l);this.renderPass(l,w,i,m,THREE.NormalBlending,false)}}e=0;for(o=f.__webGLObjects.length;e<o;e++){m=f.__webGLObjects[e];i=m.object;m=m.buffer;if(i.visible){this.setupMatrices(i,l);this.renderPass(l,w,i,m,THREE.AdditiveBlending,false);this.renderPass(l,w,i,m,THREE.SubtractiveBlending,
+false);this.renderPass(l,w,i,m,THREE.AdditiveBlending,true);this.renderPass(l,w,i,m,THREE.SubtractiveBlending,true);this.renderPass(l,w,i,m,THREE.NormalBlending,true)}}};this.initWebGLObjects=function(f){var l,e,o,m,i,w;if(!f.__webGLObjects){f.__webGLObjects=[];f.__webGLObjectsMap={}}l=0;for(e=f.objects.length;l<e;l++){o=f.objects[l];if(f.__webGLObjectsMap[o.id]==undefined)f.__webGLObjectsMap[o.id]={};w=f.__webGLObjectsMap[o.id];if(o instanceof THREE.Mesh)for(i in o.geometry.geometryChunks){m=o.geometry.geometryChunks[i];
+m.__webGLVertexBuffer||this.createBuffers(o,i);if(w[i]==undefined){m={buffer:m,object:o};f.__webGLObjects.push(m);w[i]=1}}}};this.removeObject=function(f,l){var e,o;for(e=f.__webGLObjects.length-1;e>=0;e--){o=f.__webGLObjects[e].object;l==o&&f.__webGLObjects.splice(e,1)}};this.setupMatrices=function(f,l){f.autoUpdateMatrix&&f.updateMatrix();x.multiply(l.matrix,f.matrix);O.set(x.flatten());v=THREE.Matrix4.makeInvert3x3(x).transpose();q.set(v.m);P.set(f.matrix.flatten())};this.loadMatrices=function(f){c.uniformMatrix4fv(f.uniforms.viewMatrix,
+false,J);c.uniformMatrix4fv(f.uniforms.modelViewMatrix,false,O);c.uniformMatrix4fv(f.uniforms.projectionMatrix,false,M);c.uniformMatrix3fv(f.uniforms.normalMatrix,false,q);c.uniformMatrix4fv(f.uniforms.objectMatrix,false,P)};this.loadCamera=function(f,l){c.uniform3f(f.uniforms.cameraPosition,l.position.x,l.position.y,l.position.z)};this.setBlending=function(f){switch(f){case THREE.AdditiveBlending:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,c.ONE);break;case THREE.SubtractiveBlending:c.blendFunc(c.DST_COLOR,
+c.ZERO);break;default:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA)}};this.setFaceCulling=function(f,l){if(f){!l||l=="ccw"?c.frontFace(c.CCW):c.frontFace(c.CW);if(f=="back")c.cullFace(c.BACK);else f=="front"?c.cullFace(c.FRONT):c.cullFace(c.FRONT_AND_BACK);c.enable(c.CULL_FACE)}else c.disable(c.CULL_FACE)};this.supportsVertexTextures=function(){return c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0};var K={depth:{uniforms:{mNear:{type:"f",value:1},mFar:{type:"f",value:2E3}},
+fragment_shader:"uniform float mNear;\nuniform float mFar;\nvoid main() {\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\nfloat color = 1.0 - smoothstep( mNear, mFar, depth );\ngl_FragColor = vec4( vec3( color ), 1.0 );\n}",vertex_shader:"void main() {\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}"},normal:{uniforms:{},fragment_shader:"varying vec3 vNormal;\nvoid main() {\ngl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, 1.0 );\n}",vertex_shader:"varying vec3 vNormal;\nvoid main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvNormal = normalize( normalMatrix * normal );\ngl_Position = projectionMatrix * mvPosition;\n}"}}};
+THREE.RenderableObject=function(){this.z=this.object=null};THREE.RenderableFace3=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.v3=new THREE.Vertex;this.centroidWorld=new THREE.Vector3;this.centroidScreen=new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.vertexNormalsWorld=[];this.faceMaterial=this.meshMaterial=null;this.overdraw=false;this.uvs=[null,null,null]};
+THREE.RenderableParticle=function(){this.rotation=this.z=this.y=this.x=null;this.scale=new THREE.Vector2;this.material=null};THREE.RenderableLine=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.material=null};

+ 181 - 180
build/ThreeDebug.js

@@ -1,180 +1,181 @@
-// ThreeDebug.js r31 - http://github.com/mrdoob/three.js
-var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};
-THREE.Color.prototype={setRGB:function(a,b,g){this.r=a;this.g=b;this.b=g;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=~~a&16777215;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},updateHex:function(){this.hex=~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},updateRGBA:function(){this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgb("+~~(this.r*255)+
-","+~~(this.g*255)+","+~~(this.b*255)+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};
-THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*
-this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,b,g){this.x=a||0;this.y=b||0;this.z=g||0};
-THREE.Vector3.prototype={set:function(a,b,g){this.x=a;this.y=b;this.z=g;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},
-cross:function(a,b){this.x=a.y*b.z-a.z*b.y;this.y=a.z*b.x-a.x*b.z;this.z=a.x*b.y-a.y*b.x;return this},crossSelf:function(a){var b=this.x,g=this.y,d=this.z;this.x=g*a.z-d*a.y;this.y=d*a.x-b*a.z;this.z=b*a.y-g*a.x;return this},multiply:function(a,b){this.x=a.x*b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=
-a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return Math.sqrt(b*b+g*g+a*a)},distanceToSquared:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return b*b+g*g+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){var a=
-Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z);a>0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){return Math.abs(this.x)<1.0E-4&&Math.abs(this.y)<1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)},toString:function(){return"THREE.Vector3 ( "+this.x+", "+this.y+", "+this.z+" )"}};
-THREE.Vector4=function(a,b,g,d){this.x=a||0;this.y=b||0;this.z=g||0;this.w=d||1};
-THREE.Vector4.prototype={set:function(a,b,g,d){this.x=a;this.y=b;this.z=g;this.w=d;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=a.w||1;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;
-return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;this.w*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;this.w/=a;return this},lerpSelf:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)},toString:function(){return"THREE.Vector4 ("+this.x+", "+this.y+", "+this.z+", "+this.w+")"}};
-THREE.Ray=function(a,b){this.origin=a||new THREE.Vector3;this.direction=b||new THREE.Vector3};
-THREE.Ray.prototype={intersectScene:function(a){var b,g,d=a.objects,i=[];a=0;for(b=d.length;a<b;a++){g=d[a];if(g instanceof THREE.Mesh)i=i.concat(this.intersectObject(g))}i.sort(function(l,o){return l.distance-o.distance});return i},intersectObject:function(a){function b(N,q,Q,D){D=D.clone().subSelf(q);Q=Q.clone().subSelf(q);var e=N.clone().subSelf(q);N=D.dot(D);q=D.dot(Q);D=D.dot(e);var m=Q.dot(Q);Q=Q.dot(e);e=1/(N*m-q*q);m=(m*D-q*Q)*e;N=(N*Q-q*D)*e;return m>0&&N>0&&m+N<1}var g,d,i,l,o,k,n,c,C,B,
-x,w=a.geometry,J=w.vertices,P=[];g=0;for(d=w.faces.length;g<d;g++){i=w.faces[g];B=this.origin.clone();x=this.direction.clone();l=a.matrix.multiplyVector3(J[i.a].position.clone());o=a.matrix.multiplyVector3(J[i.b].position.clone());k=a.matrix.multiplyVector3(J[i.c].position.clone());n=i instanceof THREE.Face4?a.matrix.multiplyVector3(J[i.d].position.clone()):null;c=a.rotationMatrix.multiplyVector3(i.normal.clone());C=x.dot(c);if(C<0){c=c.dot((new THREE.Vector3).sub(l,B))/C;B=B.addSelf(x.multiplyScalar(c));
-if(i instanceof THREE.Face3){if(b(B,l,o,k)){i={distance:this.origin.distanceTo(B),point:B,face:i,object:a};P.push(i)}}else if(i instanceof THREE.Face4)if(b(B,l,o,n)||b(B,o,k,n)){i={distance:this.origin.distanceTo(B),point:B,face:i,object:a};P.push(i)}}}return P}};
-THREE.Rectangle=function(){function a(){l=d-b;o=i-g}var b,g,d,i,l,o,k=true;this.getX=function(){return b};this.getY=function(){return g};this.getWidth=function(){return l};this.getHeight=function(){return o};this.getLeft=function(){return b};this.getTop=function(){return g};this.getRight=function(){return d};this.getBottom=function(){return i};this.set=function(n,c,C,B){k=false;b=n;g=c;d=C;i=B;a()};this.addPoint=function(n,c){if(k){k=false;b=n;g=c;d=n;i=c}else{b=b<n?b:n;g=g<c?g:c;d=d>n?d:n;i=i>c?
-i:c}a()};this.add3Points=function(n,c,C,B,x,w){if(k){k=false;b=n<C?n<x?n:x:C<x?C:x;g=c<B?c<w?c:w:B<w?B:w;d=n>C?n>x?n:x:C>x?C:x;i=c>B?c>w?c:w:B>w?B:w}else{b=n<C?n<x?n<b?n:b:x<b?x:b:C<x?C<b?C:b:x<b?x:b;g=c<B?c<w?c<g?c:g:w<g?w:g:B<w?B<g?B:g:w<g?w:g;d=n>C?n>x?n>d?n:d:x>d?x:d:C>x?C>d?C:d:x>d?x:d;i=c>B?c>w?c>i?c:i:w>i?w:i:B>w?B>i?B:i:w>i?w:i}a()};this.addRectangle=function(n){if(k){k=false;b=n.getLeft();g=n.getTop();d=n.getRight();i=n.getBottom()}else{b=b<n.getLeft()?b:n.getLeft();g=g<n.getTop()?g:n.getTop();
-d=d>n.getRight()?d:n.getRight();i=i>n.getBottom()?i:n.getBottom()}a()};this.inflate=function(n){b-=n;g-=n;d+=n;i+=n;a()};this.minSelf=function(n){b=b>n.getLeft()?b:n.getLeft();g=g>n.getTop()?g:n.getTop();d=d<n.getRight()?d:n.getRight();i=i<n.getBottom()?i:n.getBottom();a()};this.instersects=function(n){return Math.min(d,n.getRight())-Math.max(b,n.getLeft())>=0&&Math.min(i,n.getBottom())-Math.max(g,n.getTop())>=0};this.empty=function(){k=true;i=d=g=b=0;a()};this.isEmpty=function(){return k};this.toString=
-function(){return"THREE.Rectangle ( left: "+b+", right: "+d+", top: "+g+", bottom: "+i+", width: "+l+", height: "+o+" )"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};
-THREE.Matrix4=function(a,b,g,d,i,l,o,k,n,c,C,B,x,w,J,P){this.n11=a||1;this.n12=b||0;this.n13=g||0;this.n14=d||0;this.n21=i||0;this.n22=l||1;this.n23=o||0;this.n24=k||0;this.n31=n||0;this.n32=c||0;this.n33=C||1;this.n34=B||0;this.n41=x||0;this.n42=w||0;this.n43=J||0;this.n44=P||1};
-THREE.Matrix4.prototype={identity:function(){this.n11=1;this.n21=this.n14=this.n13=this.n12=0;this.n22=1;this.n32=this.n31=this.n24=this.n23=0;this.n33=1;this.n43=this.n42=this.n41=this.n34=0;this.n44=1;return this},set:function(a,b,g,d,i,l,o,k,n,c,C,B,x,w,J,P){this.n11=a;this.n12=b;this.n13=g;this.n14=d;this.n21=i;this.n22=l;this.n23=o;this.n24=k;this.n31=n;this.n32=c;this.n33=C;this.n34=B;this.n41=x;this.n42=w;this.n43=J;this.n44=P;return this},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=
-a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44;return this},lookAt:function(a,b,g){var d=new THREE.Vector3,i=new THREE.Vector3,l=new THREE.Vector3;l.sub(a,b).normalize();d.cross(g,l).normalize();i.cross(l,d).normalize();this.n11=d.x;this.n12=d.y;this.n13=d.z;this.n14=-d.dot(a);this.n21=i.x;this.n22=i.y;this.n23=i.z;this.n24=-i.dot(a);this.n31=l.x;
-this.n32=l.y;this.n33=l.z;this.n34=-l.dot(a);this.n43=this.n42=this.n41=0;this.n44=1;return this},multiplyVector3:function(a){var b=a.x,g=a.y,d=a.z,i=1/(this.n41*b+this.n42*g+this.n43*d+this.n44);a.x=(this.n11*b+this.n12*g+this.n13*d+this.n14)*i;a.y=(this.n21*b+this.n22*g+this.n23*d+this.n24)*i;a.z=(this.n31*b+this.n32*g+this.n33*d+this.n34)*i;return a},multiplyVector4:function(a){var b=a.x,g=a.y,d=a.z,i=a.w;a.x=this.n11*b+this.n12*g+this.n13*d+this.n14*i;a.y=this.n21*b+this.n22*g+this.n23*d+this.n24*
-i;a.z=this.n31*b+this.n32*g+this.n33*d+this.n34*i;a.w=this.n41*b+this.n42*g+this.n43*d+this.n44*i;return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var g=a.n11,d=a.n12,i=a.n13,l=a.n14,o=a.n21,k=a.n22,n=a.n23,c=a.n24,C=a.n31,B=a.n32,
-x=a.n33,w=a.n34,J=a.n41,P=a.n42,N=a.n43,q=a.n44,Q=b.n11,D=b.n12,e=b.n13,m=b.n14,f=b.n21,p=b.n22,j=b.n23,h=b.n24,s=b.n31,E=b.n32,r=b.n33,v=b.n34,u=b.n41,K=b.n42,F=b.n43,G=b.n44;this.n11=g*Q+d*f+i*s+l*u;this.n12=g*D+d*p+i*E+l*K;this.n13=g*e+d*j+i*r+l*F;this.n14=g*m+d*h+i*v+l*G;this.n21=o*Q+k*f+n*s+c*u;this.n22=o*D+k*p+n*E+c*K;this.n23=o*e+k*j+n*r+c*F;this.n24=o*m+k*h+n*v+c*G;this.n31=C*Q+B*f+x*s+w*u;this.n32=C*D+B*p+x*E+w*K;this.n33=C*e+B*j+x*r+w*F;this.n34=C*m+B*h+x*v+w*G;this.n41=J*Q+P*f+N*s+q*u;
-this.n42=J*D+P*p+N*E+q*K;this.n43=J*e+P*j+N*r+q*F;this.n44=J*m+P*h+N*v+q*G;return this},multiplySelf:function(a){var b=this.n11,g=this.n12,d=this.n13,i=this.n14,l=this.n21,o=this.n22,k=this.n23,n=this.n24,c=this.n31,C=this.n32,B=this.n33,x=this.n34,w=this.n41,J=this.n42,P=this.n43,N=this.n44,q=a.n11,Q=a.n21,D=a.n31,e=a.n41,m=a.n12,f=a.n22,p=a.n32,j=a.n42,h=a.n13,s=a.n23,E=a.n33,r=a.n43,v=a.n14,u=a.n24,K=a.n34;a=a.n44;this.n11=b*q+g*Q+d*D+i*e;this.n12=b*m+g*f+d*p+i*j;this.n13=b*h+g*s+d*E+i*r;this.n14=
-b*v+g*u+d*K+i*a;this.n21=l*q+o*Q+k*D+n*e;this.n22=l*m+o*f+k*p+n*j;this.n23=l*h+o*s+k*E+n*r;this.n24=l*v+o*u+k*K+n*a;this.n31=c*q+C*Q+B*D+x*e;this.n32=c*m+C*f+B*p+x*j;this.n33=c*h+C*s+B*E+x*r;this.n34=c*v+C*u+B*K+x*a;this.n41=w*q+J*Q+P*D+N*e;this.n42=w*m+J*f+P*p+N*j;this.n43=w*h+J*s+P*E+N*r;this.n44=w*v+J*u+P*K+N*a;return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=
-a;this.n42*=a;this.n43*=a;this.n44*=a;return this},determinant:function(){return this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*
-this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44},transpose:function(){function a(b,g,d){var i=b[g];b[g]=b[d];
-b[d]=i}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,
-this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n14=a;d.n24=b;d.n34=g;return d};
-THREE.Matrix4.scaleMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n11=a;d.n22=b;d.n33=g;return d};THREE.Matrix4.rotationXMatrix=function(a){var b=new THREE.Matrix4;b.n22=b.n33=Math.cos(a);b.n32=Math.sin(a);b.n23=-b.n32;return b};THREE.Matrix4.rotationYMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n33=Math.cos(a);b.n13=Math.sin(a);b.n31=-b.n13;return b};THREE.Matrix4.rotationZMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n22=Math.cos(a);b.n21=Math.sin(a);b.n12=-b.n21;return b};
-THREE.Matrix4.rotationAxisAngleMatrix=function(a,b){var g=new THREE.Matrix4,d=Math.cos(b),i=Math.sin(b),l=1-d,o=a.x,k=a.y,n=a.z;g.n11=l*o*o+d;g.n12=l*o*k-i*n;g.n13=l*o*n+i*k;g.n21=l*o*k+i*n;g.n22=l*k*k+d;g.n23=l*k*n-i*o;g.n31=l*o*n-i*k;g.n32=l*k*n+i*o;g.n33=l*n*n+d;return g};
-THREE.Matrix4.makeInvert=function(a){var b=new THREE.Matrix4;b.n11=a.n23*a.n34*a.n42-a.n24*a.n33*a.n42+a.n24*a.n32*a.n43-a.n22*a.n34*a.n43-a.n23*a.n32*a.n44+a.n22*a.n33*a.n44;b.n12=a.n14*a.n33*a.n42-a.n13*a.n34*a.n42-a.n14*a.n32*a.n43+a.n12*a.n34*a.n43+a.n13*a.n32*a.n44-a.n12*a.n33*a.n44;b.n13=a.n13*a.n24*a.n42-a.n14*a.n23*a.n42+a.n14*a.n22*a.n43-a.n12*a.n24*a.n43-a.n13*a.n22*a.n44+a.n12*a.n23*a.n44;b.n14=a.n14*a.n23*a.n32-a.n13*a.n24*a.n32-a.n14*a.n22*a.n33+a.n12*a.n24*a.n33+a.n13*a.n22*a.n34-a.n12*
-a.n23*a.n34;b.n21=a.n24*a.n33*a.n41-a.n23*a.n34*a.n41-a.n24*a.n31*a.n43+a.n21*a.n34*a.n43+a.n23*a.n31*a.n44-a.n21*a.n33*a.n44;b.n22=a.n13*a.n34*a.n41-a.n14*a.n33*a.n41+a.n14*a.n31*a.n43-a.n11*a.n34*a.n43-a.n13*a.n31*a.n44+a.n11*a.n33*a.n44;b.n23=a.n14*a.n23*a.n41-a.n13*a.n24*a.n41-a.n14*a.n21*a.n43+a.n11*a.n24*a.n43+a.n13*a.n21*a.n44-a.n11*a.n23*a.n44;b.n24=a.n13*a.n24*a.n31-a.n14*a.n23*a.n31+a.n14*a.n21*a.n33-a.n11*a.n24*a.n33-a.n13*a.n21*a.n34+a.n11*a.n23*a.n34;b.n31=a.n22*a.n34*a.n41-a.n24*a.n32*
-a.n41+a.n24*a.n31*a.n42-a.n21*a.n34*a.n42-a.n22*a.n31*a.n44+a.n21*a.n32*a.n44;b.n32=a.n14*a.n32*a.n41-a.n12*a.n34*a.n41-a.n14*a.n31*a.n42+a.n11*a.n34*a.n42+a.n12*a.n31*a.n44-a.n11*a.n32*a.n44;b.n33=a.n13*a.n24*a.n41-a.n14*a.n22*a.n41+a.n14*a.n21*a.n42-a.n11*a.n24*a.n42-a.n12*a.n21*a.n44+a.n11*a.n22*a.n44;b.n34=a.n14*a.n22*a.n31-a.n12*a.n24*a.n31-a.n14*a.n21*a.n32+a.n11*a.n24*a.n32+a.n12*a.n21*a.n34-a.n11*a.n22*a.n34;b.n41=a.n23*a.n32*a.n41-a.n22*a.n33*a.n41-a.n23*a.n31*a.n42+a.n21*a.n33*a.n42+a.n22*
-a.n31*a.n43-a.n21*a.n32*a.n43;b.n42=a.n12*a.n33*a.n41-a.n13*a.n32*a.n41+a.n13*a.n31*a.n42-a.n11*a.n33*a.n42-a.n12*a.n31*a.n43+a.n11*a.n32*a.n43;b.n43=a.n13*a.n22*a.n41-a.n12*a.n23*a.n41-a.n13*a.n21*a.n42+a.n11*a.n23*a.n42+a.n12*a.n21*a.n43-a.n11*a.n22*a.n43;b.n44=a.n12*a.n23*a.n31-a.n13*a.n22*a.n31+a.n13*a.n21*a.n32-a.n11*a.n23*a.n32-a.n12*a.n21*a.n33+a.n11*a.n22*a.n33;b.multiplyScalar(1/a.determinant());return b};
-THREE.Matrix4.makeInvert3x3=function(a){var b=a.flatten();a=new THREE.Matrix3;var g=b[10]*b[5]-b[6]*b[9],d=-b[10]*b[1]+b[2]*b[9],i=b[6]*b[1]-b[2]*b[5],l=-b[10]*b[4]+b[6]*b[8],o=b[10]*b[0]-b[2]*b[8],k=-b[6]*b[0]+b[2]*b[4],n=b[9]*b[4]-b[5]*b[8],c=-b[9]*b[0]+b[1]*b[8],C=b[5]*b[0]-b[1]*b[4];b=b[0]*g+b[1]*l+b[2]*n;if(b==0)throw"matrix not invertible";b=1/b;a.m[0]=b*g;a.m[1]=b*d;a.m[2]=b*i;a.m[3]=b*l;a.m[4]=b*o;a.m[5]=b*k;a.m[6]=b*n;a.m[7]=b*c;a.m[8]=b*C;return a};
-THREE.Matrix4.makeFrustum=function(a,b,g,d,i,l){var o,k,n;o=new THREE.Matrix4;k=2*i/(b-a);n=2*i/(d-g);a=(b+a)/(b-a);g=(d+g)/(d-g);d=-(l+i)/(l-i);i=-2*l*i/(l-i);o.n11=k;o.n12=0;o.n13=a;o.n14=0;o.n21=0;o.n22=n;o.n23=g;o.n24=0;o.n31=0;o.n32=0;o.n33=d;o.n34=i;o.n41=0;o.n42=0;o.n43=-1;o.n44=0;return o};THREE.Matrix4.makePerspective=function(a,b,g,d){var i;a=g*Math.tan(a*Math.PI/360);i=-a;return THREE.Matrix4.makeFrustum(i*b,a*b,i,a,g,d)};
-THREE.Matrix4.makeOrtho=function(a,b,g,d,i,l){var o,k,n,c;o=new THREE.Matrix4;k=b-a;n=g-d;c=l-i;a=(b+a)/k;g=(g+d)/n;i=(l+i)/c;o.n11=2/k;o.n12=0;o.n13=0;o.n14=-a;o.n21=0;o.n22=2/n;o.n23=0;o.n24=-g;o.n31=0;o.n32=0;o.n33=-2/c;o.n34=-i;o.n41=0;o.n42=0;o.n43=0;o.n44=1;return o};
-THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3;this.positionWorld=new THREE.Vector3;this.positionScreen=new THREE.Vector4;this.normal=b||new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.normalScreen=new THREE.Vector3;this.tangent=new THREE.Vector4;this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};
-THREE.Face3=function(a,b,g,d,i){this.a=a;this.b=b;this.c=g;this.centroid=new THREE.Vector3;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.material=i instanceof Array?i:[i]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};
-THREE.Face4=function(a,b,g,d,i,l){this.a=a;this.b=b;this.c=g;this.d=d;this.centroid=new THREE.Vector3;this.normal=i instanceof THREE.Vector3?i:new THREE.Vector3;this.vertexNormals=i instanceof Array?i:[];this.material=l instanceof Array?l:[l]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(a,b){this.u=a||0;this.v=b||0};
-THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[];this.boundingSphere=this.boundingBox=null;this.geometryChunks={};this.hasTangents=false};
-THREE.Geometry.prototype={computeCentroids:function(){var a,b,g;a=0;for(b=this.faces.length;a<b;a++){g=this.faces[a];g.centroid.set(0,0,0);if(g instanceof THREE.Face3){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);g.centroid.divideScalar(3)}else if(g instanceof THREE.Face4){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);
-g.centroid.addSelf(this.vertices[g.d].position);g.centroid.divideScalar(4)}}},computeFaceNormals:function(a){var b,g,d,i,l,o,k=new THREE.Vector3,n=new THREE.Vector3;d=0;for(i=this.vertices.length;d<i;d++){l=this.vertices[d];l.normal.set(0,0,0)}d=0;for(i=this.faces.length;d<i;d++){l=this.faces[d];if(a&&l.vertexNormals.length){k.set(0,0,0);b=0;for(g=l.normal.length;b<g;b++)k.addSelf(l.vertexNormals[b]);k.divideScalar(3)}else{b=this.vertices[l.a];g=this.vertices[l.b];o=this.vertices[l.c];k.sub(o.position,
-g.position);n.sub(b.position,g.position);k.crossSelf(n)}k.isZero()||k.normalize();l.normal.copy(k)}},computeVertexNormals:function(){var a,b=[],g,d;a=0;for(vl=this.vertices.length;a<vl;a++)b[a]=new THREE.Vector3;a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal)}else if(d instanceof THREE.Face4){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal);b[d.d].addSelf(d.normal)}}a=
-0;for(vl=this.vertices.length;a<vl;a++)b[a].normalize();a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone()}else if(d instanceof THREE.Face4){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone();d.vertexNormals[3]=b[d.d].clone()}}},computeTangents:function(){function a(v,u,K,F){l=v.vertices[u].position;o=v.vertices[K].position;
-k=v.vertices[F].position;n=i[0];c=i[1];C=i[2];B=o.x-l.x;x=k.x-l.x;w=o.y-l.y;J=k.y-l.y;P=o.z-l.z;N=k.z-l.z;q=c.u-n.u;Q=C.u-n.u;D=c.v-n.v;e=C.v-n.v;m=1/(q*e-Q*D);h.set((e*B-D*x)*m,(e*w-D*J)*m,(e*P-D*N)*m);s.set((q*x-Q*B)*m,(q*J-Q*w)*m,(q*N-Q*P)*m);p[u].addSelf(h);p[K].addSelf(h);p[F].addSelf(h);j[u].addSelf(s);j[K].addSelf(s);j[F].addSelf(s)}var b,g,d,i,l,o,k,n,c,C,B,x,w,J,P,N,q,Q,D,e,m,f,p=[],j=[],h=new THREE.Vector3,s=new THREE.Vector3,E=new THREE.Vector3,r=new THREE.Vector3;f=new THREE.Vector3;b=
-0;for(g=this.vertices.length;b<g;b++){p[b]=new THREE.Vector3;j[b]=new THREE.Vector3}b=0;for(g=this.faces.length;b<g;b++){d=this.faces[b];i=this.uvs[b];if(d instanceof THREE.Face3){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);this.vertices[d.c].normal.copy(d.vertexNormals[2])}else if(d instanceof THREE.Face4){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);
-this.vertices[d.c].normal.copy(d.vertexNormals[2]);this.vertices[d.d].normal.copy(d.vertexNormals[3])}}b=0;for(g=this.vertices.length;b<g;b++){f.copy(this.vertices[b].normal);d=p[b];E.copy(d);E.subSelf(f.multiplyScalar(f.dot(d))).normalize();r.cross(this.vertices[b].normal,d);test=r.dot(j[b]);d=test<0?-1:1;this.vertices[b].tangent.set(E.x,E.y,E.z,d)}this.hasTangents=true},computeBoundingBox:function(){var a;if(this.vertices.length>0){this.bbox={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 b=1,g=this.vertices.length;b<g;b++){a=this.vertices[b];if(a.position.x<this.bbox.x[0])this.bbox.x[0]=a.position.x;else if(a.position.x>this.bbox.x[1])this.bbox.x[1]=a.position.x;if(a.position.y<this.bbox.y[0])this.bbox.y[0]=a.position.y;else if(a.position.y>this.bbox.y[1])this.bbox.y[1]=a.position.y;if(a.position.z<this.bbox.z[0])this.bbox.z[0]=a.position.z;else if(a.position.z>
-this.bbox.z[1])this.bbox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,g=this.vertices.length;b<g;b++)a=Math.max(a,this.vertices[b].position.length());this.boundingSphere={radius:a}},sortFacesByMaterial:function(){function a(C){var B=[];b=0;for(g=C.length;b<g;b++)C[b]==undefined?B.push("undefined"):B.push(C[b].toString());return B.join("_")}var b,g,d,i,l,o,k,n,c={};d=0;for(i=this.faces.length;d<i;d++){l=this.faces[d];o=
-l.material;k=a(o);if(c[k]==undefined)c[k]={hash:k,counter:0};n=c[k].hash+"_"+c[k].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:o,vertices:0};l=l instanceof THREE.Face3?3:4;if(this.geometryChunks[n].vertices+l>65535){c[k].counter+=1;n=c[k].hash+"_"+c[k].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:o,vertices:0}}this.geometryChunks[n].faces.push(d);this.geometryChunks[n].vertices+=l}},toString:function(){return"THREE.Geometry ( vertices: "+
-this.vertices+", faces: "+this.faces+", uvs: "+this.uvs+" )"}};
-THREE.Camera=function(a,b,g,d){this.position=new THREE.Vector3;this.target={position:new THREE.Vector3};this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4;this.projectionMatrix=THREE.Matrix4.makePerspective(a,b,g,d);this.autoUpdateMatrix=true;this.translateX=function(i){i=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(i);i.cross(i.clone(),this.up);this.position.addSelf(i);this.target.position.addSelf(i)};this.translateZ=function(i){i=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(i);
-this.position.subSelf(i);this.target.position.subSelf(i)};this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Light=function(a){this.color=new THREE.Color(a)};THREE.AmbientLight=function(a){THREE.Light.call(this,a)};THREE.AmbientLight.prototype=new THREE.Light;THREE.AmbientLight.prototype.constructor=THREE.AmbientLight;
-THREE.DirectionalLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3(0,1,0);this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.DirectionalLight;THREE.PointLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3;this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.PointLight;
-THREE.Object3D=function(){this.id=THREE.Object3DCounter.value++;this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.matrix=new THREE.Matrix4;this.translationMatrix=new THREE.Matrix4;this.rotationMatrix=new THREE.Matrix4;this.scaleMatrix=new THREE.Matrix4;this.screen=new THREE.Vector3;this.autoUpdateMatrix=this.visible=true;this.updateMatrix=function(){this.matrixPosition=THREE.Matrix4.translationMatrix(this.position.x,this.position.y,this.position.z);
-this.rotationMatrix=THREE.Matrix4.rotationXMatrix(this.rotation.x);this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationYMatrix(this.rotation.y));this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationZMatrix(this.rotation.z));this.scaleMatrix=THREE.Matrix4.scaleMatrix(this.scale.x,this.scale.y,this.scale.z);this.matrix.copy(this.matrixPosition);this.matrix.multiplySelf(this.rotationMatrix);this.matrix.multiplySelf(this.scaleMatrix)}};THREE.Object3DCounter={value:0};
-THREE.Particle=function(a){THREE.Object3D.call(this);this.material=a instanceof Array?a:[a];this.autoUpdateMatrix=false};THREE.Particle.prototype=new THREE.Object3D;THREE.Particle.prototype.constructor=THREE.Particle;THREE.Line=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b]};THREE.Line.prototype=new THREE.Object3D;THREE.Line.prototype.constructor=THREE.Line;
-THREE.Mesh=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b];this.overdraw=this.doubleSided=this.flipSided=false;this.geometry.boundingSphere||this.geometry.computeBoundingSphere()};THREE.Mesh.prototype=new THREE.Object3D;THREE.Mesh.prototype.constructor=THREE.Mesh;THREE.FlatShading=0;THREE.SmoothShading=1;THREE.NormalBlending=0;THREE.AdditiveBlending=1;THREE.SubtractiveBlending=2;
-THREE.LineBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;this.linewidth=1;this.linejoin=this.linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending;if(a.linewidth!==undefined)this.linewidth=a.linewidth;if(a.linecap!==undefined)this.linecap=a.linecap;if(a.linejoin!==undefined)this.linejoin=a.linejoin}this.toString=function(){return"THREE.LineBasicMaterial (<br/>color: "+
-this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>linewidth: "+this.linewidth+"<br/>linecap: "+this.linecap+"<br/>linejoin: "+this.linejoin+"<br/>)"}};
-THREE.MeshBasicMaterial=function(a){this.id=THREE.MeshBasicMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
-a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
-a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshBasicMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>blending: "+
-this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshBasicMaterialCounter={value:0};
-THREE.MeshLambertMaterial=function(a){this.id=THREE.MeshLambertMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
-a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
-a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshLambertMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+
-this.shading+"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/> )"}};THREE.MeshLambertMaterialCounter={value:0};
-THREE.MeshPhongMaterial=function(a){this.id=THREE.MeshPhongMaterialCounter.value++;this.color=new THREE.Color(16777215);this.ambient=new THREE.Color(328965);this.specular=new THREE.Color(1118481);this.shininess=30;this.env_map=this.specular_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap=
-"round";if(a){if(a.color!==undefined)this.color=new THREE.Color(a.color);if(a.ambient!==undefined)this.ambient=new THREE.Color(a.ambient);if(a.specular!==undefined)this.specular=new THREE.Color(a.specular);if(a.shininess!==undefined)this.shininess=a.shininess;if(a.map!==undefined)this.map=a.map;if(a.specular_map!==undefined)this.specular_map=a.specular_map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=
-a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=
-a.wireframe_linejoin}this.toString=function(){return"THREE.MeshPhongMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>ambient: "+this.ambient+"<br/>specular: "+this.specular+"<br/>shininess: "+this.shininess+"<br/>map: "+this.map+"<br/>specular_map: "+this.specular_map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+this.shading+"<br/>wireframe: "+
-this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>"+ +")"}};THREE.MeshPhongMaterialCounter={value:0};
-THREE.MeshDepthMaterial=function(a){this.near=1;this.far=1E3;this.opacity=1;this.blending=THREE.NormalBlending;if(a){if(a.near!==undefined)this.near=a.near;if(a.far!==undefined)this.far=a.far;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.__2near=2*this.near;this.__farPlusNear=this.far+this.near;this.__farMinusNear=this.far-this.near;this.toString=function(){return"THREE.MeshDepthMaterial"}};
-THREE.MeshNormalMaterial=function(a){this.opacity=1;this.shading=THREE.FlatShading;this.blending=THREE.NormalBlending;if(a){if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.MeshNormalMaterial"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};
-THREE.MeshShaderMaterial=function(a){this.id=THREE.MeshShaderMaterialCounter.value++;this.vertex_shader=this.fragment_shader="void main() {}";this.uniforms={};this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){if(a.fragment_shader!==undefined)this.fragment_shader=a.fragment_shader;if(a.vertex_shader!==undefined)this.vertex_shader=a.vertex_shader;if(a.uniforms!==
-undefined)this.uniforms=a.uniforms;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshShaderMaterial (<br/>id: "+this.id+
-"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshShaderMaterialCounter={value:0};
-THREE.ParticleBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.map=null;this.opacity=1;this.blending=THREE.NormalBlending;this.offset=new THREE.Vector2;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=a.map;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleBasicMaterial (<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>opacity: "+this.opacity+"<br/>blending: "+
-this.blending+"<br/>)"}};THREE.ParticleCircleMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleCircleMaterial (<br/>color: "+this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>)"}};
-THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};
-THREE.Texture=function(a,b,g,d,i,l){this.image=a;this.mapping=b!==undefined?b:new THREE.UVMapping;this.wrap_s=g!==undefined?g:THREE.ClampToEdgeWrapping;this.wrap_t=d!==undefined?d:THREE.ClampToEdgeWrapping;this.mag_filter=i!==undefined?i:THREE.LinearFilter;this.min_filter=l!==undefined?l:THREE.LinearMipMapLinearFilter;this.toString=function(){return"THREE.Texture (<br/>image: "+this.image+"<br/>wrap_s: "+this.wrap_s+"<br/>wrap_t: "+this.wrap_t+"<br/>mag_filter: "+this.mag_filter+"<br/>min_filter: "+
-this.min_filter+"<br/>)"}};THREE.MultiplyOperation=0;THREE.MixOperation=1;THREE.RepeatWrapping=0;THREE.ClampToEdgeWrapping=1;THREE.MirroredRepeatWrapping=2;THREE.NearestFilter=3;THREE.NearestMipMapNearestFilter=4;THREE.NearestMipMapLinearFilter=5;THREE.LinearFilter=6;THREE.LinearMipMapNearestFilter=7;THREE.LinearMipMapLinearFilter=8;THREE.CubeReflectionMapping=function(){};THREE.CubeRefractionMapping=function(){};THREE.LatitudeReflectionMapping=function(){};THREE.LatitudeRefractionMapping=function(){};
-THREE.SphericalReflectionMapping=function(){};THREE.SphericalRefractionMapping=function(){};THREE.UVMapping=function(){};
-THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.indexOf(a)===-1&&this.objects.push(a)};this.removeObject=function(a){a=this.objects.indexOf(a);a!==-1&&this.objects.splice(a,1)};this.addLight=function(a){this.lights.indexOf(a)===-1&&this.lights.push(a)};this.removeLight=function(a){a=this.lights.indexOf(a);a!==-1&&this.lights.splice(a,1)};this.toString=function(){return"THREE.Scene ( "+this.objects+" )"}};
-THREE.Projector=function(){function a(p,j){return j.z-p.z}function b(p,j){var h=0,s=1,E=p.z+p.w,r=j.z+j.w,v=-p.z+p.w,u=-j.z+j.w;if(E>=0&&r>=0&&v>=0&&u>=0)return true;else if(E<0&&r<0||v<0&&u<0)return false;else{if(E<0)h=Math.max(h,E/(E-r));else if(r<0)s=Math.min(s,E/(E-r));if(v<0)h=Math.max(h,v/(v-u));else if(u<0)s=Math.min(s,v/(v-u));if(s<h)return false;else{p.lerpSelf(j,h);j.lerpSelf(p,1-s);return true}}}var g,d,i=[],l,o,k,n=[],c,C,B=[],x,w,J=[],P=new THREE.Vector4,N=new THREE.Vector4,q=new THREE.Matrix4,
-Q=new THREE.Matrix4,D=[],e=new THREE.Vector4,m=new THREE.Vector4,f;this.projectObjects=function(p,j,h){var s=[],E,r;d=0;q.multiply(j.projectionMatrix,j.matrix);D[0]=new THREE.Vector4(q.n41-q.n11,q.n42-q.n12,q.n43-q.n13,q.n44-q.n14);D[1]=new THREE.Vector4(q.n41+q.n11,q.n42+q.n12,q.n43+q.n13,q.n44+q.n14);D[2]=new THREE.Vector4(q.n41+q.n21,q.n42+q.n22,q.n43+q.n23,q.n44+q.n24);D[3]=new THREE.Vector4(q.n41-q.n21,q.n42-q.n22,q.n43-q.n23,q.n44-q.n24);D[4]=new THREE.Vector4(q.n41-q.n31,q.n42-q.n32,q.n43-
-q.n33,q.n44-q.n34);D[5]=new THREE.Vector4(q.n41+q.n31,q.n42+q.n32,q.n43+q.n33,q.n44+q.n34);j=0;for(E=D.length;j<E;j++){r=D[j];r.divideScalar(Math.sqrt(r.x*r.x+r.y*r.y+r.z*r.z))}E=p.objects;p=0;for(j=E.length;p<j;p++){r=E[p];var v;if(!(v=r.visible===false)){a:{v=void 0;for(var u=r.position,K=-r.geometry.boundingSphere.radius*Math.max(r.scale.x,Math.max(r.scale.y,r.scale.z)),F=0;F<6;F++){v=D[F].x*u.x+D[F].y*u.y+D[F].z*u.z+D[F].w;if(v<=K){v=false;break a}}v=true}v=v===false}if(!v){g=i[d]=i[d]||new THREE.RenderableObject;
-P.copy(r.position);q.multiplyVector3(P);g.object=r;g.z=P.z;s.push(g);d++}}h&&s.sort(a);return s};this.projectScene=function(p,j,h){var s=[],E,r,v,u,K,F,G,R,X,V,L,z,y,M,S,H;k=C=w=0;j.autoUpdateMatrix&&j.updateMatrix();q.multiply(j.projectionMatrix,j.matrix);F=p.objects;p=0;for(E=F.length;p<E;p++){G=F[p];if(G.visible!==false){G.autoUpdateMatrix&&G.updateMatrix();R=G.matrix;X=G.rotationMatrix;V=G.material;L=G.overdraw;if(G instanceof THREE.Mesh){z=G.geometry;y=z.vertices;r=0;for(v=y.length;r<v;r++){M=
-y[r];M.positionWorld.copy(M.position);R.multiplyVector3(M.positionWorld);u=M.positionScreen;u.copy(M.positionWorld);q.multiplyVector4(u);u.multiplyScalar(1/u.w);M.__visible=u.z>0&&u.z<1}z=z.faces;r=0;for(v=z.length;r<v;r++){M=z[r];if(M instanceof THREE.Face3){u=y[M.a];K=y[M.b];S=y[M.c];if(u.__visible&&K.__visible&&S.__visible)if(G.doubleSided||G.flipSided!=(S.positionScreen.x-u.positionScreen.x)*(K.positionScreen.y-u.positionScreen.y)-(S.positionScreen.y-u.positionScreen.y)*(K.positionScreen.x-u.positionScreen.x)<
-0){l=n[k]=n[k]||new THREE.RenderableFace3;l.v1.positionWorld.copy(u.positionWorld);l.v2.positionWorld.copy(K.positionWorld);l.v3.positionWorld.copy(S.positionWorld);l.v1.positionScreen.copy(u.positionScreen);l.v2.positionScreen.copy(K.positionScreen);l.v3.positionScreen.copy(S.positionScreen);l.normalWorld.copy(M.normal);X.multiplyVector3(l.normalWorld);l.centroidWorld.copy(M.centroid);R.multiplyVector3(l.centroidWorld);l.centroidScreen.copy(l.centroidWorld);q.multiplyVector3(l.centroidScreen);S=
-M.vertexNormals;f=l.vertexNormalsWorld;u=0;for(K=S.length;u<K;u++){H=f[u]=f[u]||new THREE.Vector3;H.copy(S[u]);X.multiplyVector3(H)}l.z=l.centroidScreen.z;l.meshMaterial=V;l.faceMaterial=M.material;l.overdraw=L;if(G.geometry.uvs[r]){l.uvs[0]=G.geometry.uvs[r][0];l.uvs[1]=G.geometry.uvs[r][1];l.uvs[2]=G.geometry.uvs[r][2]}s.push(l);k++}}else if(M instanceof THREE.Face4){u=y[M.a];K=y[M.b];S=y[M.c];H=y[M.d];if(u.__visible&&K.__visible&&S.__visible&&H.__visible)if(G.doubleSided||G.flipSided!=((H.positionScreen.x-
-u.positionScreen.x)*(K.positionScreen.y-u.positionScreen.y)-(H.positionScreen.y-u.positionScreen.y)*(K.positionScreen.x-u.positionScreen.x)<0||(K.positionScreen.x-S.positionScreen.x)*(H.positionScreen.y-S.positionScreen.y)-(K.positionScreen.y-S.positionScreen.y)*(H.positionScreen.x-S.positionScreen.x)<0)){l=n[k]=n[k]||new THREE.RenderableFace3;l.v1.positionWorld.copy(u.positionWorld);l.v2.positionWorld.copy(K.positionWorld);l.v3.positionWorld.copy(H.positionWorld);l.v1.positionScreen.copy(u.positionScreen);
-l.v2.positionScreen.copy(K.positionScreen);l.v3.positionScreen.copy(H.positionScreen);l.normalWorld.copy(M.normal);X.multiplyVector3(l.normalWorld);l.centroidWorld.copy(M.centroid);R.multiplyVector3(l.centroidWorld);l.centroidScreen.copy(l.centroidWorld);q.multiplyVector3(l.centroidScreen);l.z=l.centroidScreen.z;l.meshMaterial=V;l.faceMaterial=M.material;l.overdraw=L;if(G.geometry.uvs[r]){l.uvs[0]=G.geometry.uvs[r][0];l.uvs[1]=G.geometry.uvs[r][1];l.uvs[2]=G.geometry.uvs[r][3]}s.push(l);k++;o=n[k]=
-n[k]||new THREE.RenderableFace3;o.v1.positionWorld.copy(K.positionWorld);o.v2.positionWorld.copy(S.positionWorld);o.v3.positionWorld.copy(H.positionWorld);o.v1.positionScreen.copy(K.positionScreen);o.v2.positionScreen.copy(S.positionScreen);o.v3.positionScreen.copy(H.positionScreen);o.normalWorld.copy(l.normalWorld);o.centroidWorld.copy(l.centroidWorld);o.centroidScreen.copy(l.centroidScreen);o.z=o.centroidScreen.z;o.meshMaterial=V;o.faceMaterial=M.material;o.overdraw=L;if(G.geometry.uvs[r]){o.uvs[0]=
-G.geometry.uvs[r][1];o.uvs[1]=G.geometry.uvs[r][2];o.uvs[2]=G.geometry.uvs[r][3]}s.push(o);k++}}}}else if(G instanceof THREE.Line){Q.multiply(q,R);y=G.geometry.vertices;M=y[0];M.positionScreen.copy(M.position);Q.multiplyVector4(M.positionScreen);r=1;for(v=y.length;r<v;r++){u=y[r];u.positionScreen.copy(u.position);Q.multiplyVector4(u.positionScreen);K=y[r-1];e.copy(u.positionScreen);m.copy(K.positionScreen);if(b(e,m)){e.multiplyScalar(1/e.w);m.multiplyScalar(1/m.w);c=B[C]=B[C]||new THREE.RenderableLine;
-c.v1.positionScreen.copy(e);c.v2.positionScreen.copy(m);c.z=Math.max(e.z,m.z);c.material=G.material;s.push(c);C++}}}else if(G instanceof THREE.Particle){N.set(G.position.x,G.position.y,G.position.z,1);q.multiplyVector4(N);N.z/=N.w;if(N.z>0&&N.z<1){x=J[w]=J[w]||new THREE.RenderableParticle;x.x=N.x/N.w;x.y=N.y/N.w;x.z=N.z;x.rotation=G.rotation.z;x.scale.x=G.scale.x*Math.abs(x.x-(N.x+j.projectionMatrix.n11)/(N.w+j.projectionMatrix.n14));x.scale.y=G.scale.y*Math.abs(x.y-(N.y+j.projectionMatrix.n22)/(N.w+
-j.projectionMatrix.n24));x.material=G.material;s.push(x);w++}}}}h&&s.sort(a);return s};this.unprojectVector=function(p,j){var h=new THREE.Matrix4;h.multiply(THREE.Matrix4.makeInvert(j.matrix),THREE.Matrix4.makeInvert(j.projectionMatrix));h.multiplyVector3(p);return p}};
-THREE.DOMRenderer=function(){THREE.Renderer.call(this);var a=null,b=new THREE.Projector,g,d,i,l;this.domElement=document.createElement("div");this.setSize=function(o,k){g=o;d=k;i=g/2;l=d/2};this.render=function(o,k){var n,c,C,B,x,w,J,P;a=b.projectScene(o,k);n=0;for(c=a.length;n<c;n++){x=a[n];if(x instanceof THREE.RenderableParticle){J=x.x*i+i;P=x.y*l+l;C=0;for(B=x.material.length;C<B;C++){w=x.material[C];if(w instanceof THREE.ParticleDOMMaterial){w=w.domElement;w.style.left=J+"px";w.style.top=P+"px"}}}}}};
-THREE.CanvasRenderer=function(){var a=null,b=new THREE.Projector,g=document.createElement("canvas"),d,i,l,o,k=g.getContext("2d"),n=1,c=0,C=null,B=null,x=1,w,J,P,N,q,Q,D,e,m,f=new THREE.Color,p=new THREE.Color,j=new THREE.Color,h=new THREE.Color,s=new THREE.Color,E,r,v,u,K,F,G,R,X,V,L=new THREE.Rectangle,z=new THREE.Rectangle,y=new THREE.Rectangle,M=false,S=new THREE.Color,H=new THREE.Color,U=new THREE.Color,aa=new THREE.Color,Ja=Math.PI*2,Y=new THREE.Vector3,na,oa,Aa,da,pa,ta,la=16;na=document.createElement("canvas");
-na.width=na.height=2;oa=na.getContext("2d");oa.fillStyle="rgba(0,0,0,1)";oa.fillRect(0,0,2,2);Aa=oa.getImageData(0,0,2,2);da=Aa.data;pa=document.createElement("canvas");pa.width=pa.height=la;ta=pa.getContext("2d");ta.translate(-la/2,-la/2);ta.scale(la,la);la--;this.domElement=g;this.sortElements=this.sortObjects=this.autoClear=true;this.setSize=function(ga,ua){d=ga;i=ua;l=d/2;o=i/2;g.width=d;g.height=i;L.set(-l,-o,l,o)};this.clear=function(){if(!z.isEmpty()){z.inflate(1);z.minSelf(L);k.clearRect(z.getX(),
-z.getY(),z.getWidth(),z.getHeight());z.empty()}};this.render=function(ga,ua){function Ka(t){var T,O,A,I=t.lights;H.setRGB(0,0,0);U.setRGB(0,0,0);aa.setRGB(0,0,0);t=0;for(T=I.length;t<T;t++){O=I[t];A=O.color;if(O instanceof THREE.AmbientLight){H.r+=A.r;H.g+=A.g;H.b+=A.b}else if(O instanceof THREE.DirectionalLight){U.r+=A.r;U.g+=A.g;U.b+=A.b}else if(O instanceof THREE.PointLight){aa.r+=A.r;aa.g+=A.g;aa.b+=A.b}}}function va(t,T,O,A){var I,W,$,ba,ca=t.lights;t=0;for(I=ca.length;t<I;t++){W=ca[t];$=W.color;
-ba=W.intensity;if(W instanceof THREE.DirectionalLight){W=O.dot(W.position)*ba;if(W>0){A.r+=$.r*W;A.g+=$.g*W;A.b+=$.b*W}}else if(W instanceof THREE.PointLight){Y.sub(W.position,T);Y.normalize();W=O.dot(Y)*ba;if(W>0){A.r+=$.r*W;A.g+=$.g*W;A.b+=$.b*W}}}}function La(t,T,O){if(O.opacity!=0){Ba(O.opacity);wa(O.blending);var A,I,W,$,ba,ca;if(O instanceof THREE.ParticleBasicMaterial){if(O.map){$=O.map;ba=$.width>>1;ca=$.height>>1;I=T.scale.x*l;W=T.scale.y*o;O=I*ba;A=W*ca;y.set(t.x-O,t.y-A,t.x+O,t.y+A);if(!L.instersects(y))return;
-k.save();k.translate(t.x,t.y);k.rotate(-T.rotation);k.scale(I,-W);k.translate(-ba,-ca);k.drawImage($,0,0);k.restore()}k.beginPath();k.moveTo(t.x-10,t.y);k.lineTo(t.x+10,t.y);k.moveTo(t.x,t.y-10);k.lineTo(t.x,t.y+10);k.closePath();k.strokeStyle="rgb(255,255,0)";k.stroke()}else if(O instanceof THREE.ParticleCircleMaterial){if(M){S.r=H.r+U.r+aa.r;S.g=H.g+U.g+aa.g;S.b=H.b+U.b+aa.b;f.r=O.color.r*S.r;f.g=O.color.g*S.g;f.b=O.color.b*S.b;f.updateStyleString()}else f.__styleString=O.color.__styleString;O=
-T.scale.x*l;A=T.scale.y*o;y.set(t.x-O,t.y-A,t.x+O,t.y+A);if(L.instersects(y)){I=f.__styleString;if(B!=I)k.fillStyle=B=I;k.save();k.translate(t.x,t.y);k.rotate(-T.rotation);k.scale(O,A);k.beginPath();k.arc(0,0,1,0,Ja,true);k.closePath();k.fill();k.restore()}}}}function Ma(t,T,O,A){if(A.opacity!=0){Ba(A.opacity);wa(A.blending);k.beginPath();k.moveTo(t.positionScreen.x,t.positionScreen.y);k.lineTo(T.positionScreen.x,T.positionScreen.y);k.closePath();if(A instanceof THREE.LineBasicMaterial){f.__styleString=
-A.color.__styleString;t=A.linewidth;if(x!=t)k.lineWidth=x=t;t=f.__styleString;if(C!=t)k.strokeStyle=C=t;k.stroke();y.inflate(A.linewidth*2)}}}function Fa(t,T,O,A,I,W){if(I.opacity!=0){Ba(I.opacity);wa(I.blending);N=t.positionScreen.x;q=t.positionScreen.y;Q=T.positionScreen.x;D=T.positionScreen.y;e=O.positionScreen.x;m=O.positionScreen.y;k.beginPath();k.moveTo(N,q);k.lineTo(Q,D);k.lineTo(e,m);k.lineTo(N,q);k.closePath();if(I instanceof THREE.MeshBasicMaterial)if(I.map)I.map.image.loaded&&I.map.mapping instanceof
-THREE.UVMapping&&qa(N,q,Q,D,e,m,I.map.image,A.uvs[0].u,A.uvs[0].v,A.uvs[1].u,A.uvs[1].v,A.uvs[2].u,A.uvs[2].v);else if(I.env_map){if(I.env_map.image.loaded)if(I.env_map.mapping instanceof THREE.SphericalReflectionMapping){t=ua.matrix;Y.copy(A.vertexNormalsWorld[0]);K=(Y.x*t.n11+Y.y*t.n12+Y.z*t.n13)*0.5+0.5;F=-(Y.x*t.n21+Y.y*t.n22+Y.z*t.n23)*0.5+0.5;Y.copy(A.vertexNormalsWorld[1]);G=(Y.x*t.n11+Y.y*t.n12+Y.z*t.n13)*0.5+0.5;R=-(Y.x*t.n21+Y.y*t.n22+Y.z*t.n23)*0.5+0.5;Y.copy(A.vertexNormalsWorld[2]);X=
-(Y.x*t.n11+Y.y*t.n12+Y.z*t.n13)*0.5+0.5;V=-(Y.x*t.n21+Y.y*t.n22+Y.z*t.n23)*0.5+0.5;qa(N,q,Q,D,e,m,I.env_map.image,K,F,G,R,X,V)}}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):ya(I.color.__styleString);else if(I instanceof THREE.MeshLambertMaterial){if(I.map&&!I.wireframe){I.map.mapping instanceof THREE.UVMapping&&qa(N,q,Q,D,e,m,I.map.image,A.uvs[0].u,A.uvs[0].v,A.uvs[1].u,A.uvs[1].v,A.uvs[2].u,A.uvs[2].v);wa(THREE.SubtractiveBlending)}if(M)if(!I.wireframe&&I.shading==THREE.SmoothShading&&
-A.vertexNormalsWorld.length==3){p.r=j.r=h.r=H.r;p.g=j.g=h.g=H.g;p.b=j.b=h.b=H.b;va(W,A.v1.positionWorld,A.vertexNormalsWorld[0],p);va(W,A.v2.positionWorld,A.vertexNormalsWorld[1],j);va(W,A.v3.positionWorld,A.vertexNormalsWorld[2],h);s.r=(j.r+h.r)*0.5;s.g=(j.g+h.g)*0.5;s.b=(j.b+h.b)*0.5;u=Ga(p,j,h,s);qa(N,q,Q,D,e,m,u,0,0,1,0,0,1)}else{S.r=H.r;S.g=H.g;S.b=H.b;va(W,A.centroidWorld,A.normalWorld,S);f.r=I.color.r*S.r;f.g=I.color.g*S.g;f.b=I.color.b*S.b;f.updateStyleString();I.wireframe?xa(f.__styleString,
-I.wireframe_linewidth):ya(f.__styleString)}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):ya(I.color.__styleString)}else if(I instanceof THREE.MeshDepthMaterial){E=I.__2near;r=I.__farPlusNear;v=I.__farMinusNear;p.r=p.g=p.b=1-E/(r-t.positionScreen.z*v);j.r=j.g=j.b=1-E/(r-T.positionScreen.z*v);h.r=h.g=h.b=1-E/(r-O.positionScreen.z*v);s.r=(j.r+h.r)*0.5;s.g=(j.g+h.g)*0.5;s.b=(j.b+h.b)*0.5;u=Ga(p,j,h,s);qa(N,q,Q,D,e,m,u,0,0,1,0,0,1)}else if(I instanceof THREE.MeshNormalMaterial){f.r=
-Ca(A.normalWorld.x);f.g=Ca(A.normalWorld.y);f.b=Ca(A.normalWorld.z);f.updateStyleString();I.wireframe?xa(f.__styleString,I.wireframe_linewidth):ya(f.__styleString)}}}function xa(t,T){if(C!=t)k.strokeStyle=C=t;if(x!=T)k.lineWidth=x=T;k.stroke();y.inflate(T*2)}function ya(t){if(B!=t)k.fillStyle=B=t;k.fill()}function qa(t,T,O,A,I,W,$,ba,ca,ha,ea,ia,ra){var ka,ja;ka=$.width-1;ja=$.height-1;ba*=ka;ca*=ja;ha*=ka;ea*=ja;ia*=ka;ra*=ja;O-=t;A-=T;I-=t;W-=T;ha-=ba;ea-=ca;ia-=ba;ra-=ca;ja=1/(ha*ra-ia*ea);ka=
-(ra*O-ea*I)*ja;ea=(ra*A-ea*W)*ja;O=(ha*I-ia*O)*ja;A=(ha*W-ia*A)*ja;t=t-ka*ba-O*ca;T=T-ea*ba-A*ca;k.save();k.transform(ka,ea,O,A,t,T);k.clip();k.drawImage($,0,0);k.restore()}function Ba(t){if(n!=t)k.globalAlpha=n=t}function wa(t){if(c!=t){switch(t){case THREE.NormalBlending:k.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:k.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:k.globalCompositeOperation="darker"}c=t}}function Ga(t,T,O,A){var I=~~(t.r*255),
-W=~~(t.g*255);t=~~(t.b*255);var $=~~(T.r*255),ba=~~(T.g*255);T=~~(T.b*255);var ca=~~(O.r*255),ha=~~(O.g*255);O=~~(O.b*255);var ea=~~(A.r*255),ia=~~(A.g*255);A=~~(A.b*255);da[0]=I<0?0:I>255?255:I;da[1]=W<0?0:W>255?255:W;da[2]=t<0?0:t>255?255:t;da[4]=$<0?0:$>255?255:$;da[5]=ba<0?0:ba>255?255:ba;da[6]=T<0?0:T>255?255:T;da[8]=ca<0?0:ca>255?255:ca;da[9]=ha<0?0:ha>255?255:ha;da[10]=O<0?0:O>255?255:O;da[12]=ea<0?0:ea>255?255:ea;da[13]=ia<0?0:ia>255?255:ia;da[14]=A<0?0:A>255?255:A;oa.putImageData(Aa,0,0);
-ta.drawImage(na,0,0);return pa}function Ca(t){t=(t+1)*0.5;return t<0?0:t>1?1:t}function Da(t,T){var O=T.x-t.x,A=T.y-t.y,I=1/Math.sqrt(O*O+A*A);O*=I;A*=I;T.x+=O;T.y+=A;t.x-=O;t.y-=A}var za,Ha,Z,fa,ma,Ea,Ia,sa;k.setTransform(1,0,0,-1,l,o);this.autoClear&&this.clear();a=b.projectScene(ga,ua,this.sortElements);k.fillStyle="rgba(0, 255, 255, 0.5)";k.fillRect(L.getX(),L.getY(),L.getWidth(),L.getHeight());(M=ga.lights.length>0)&&Ka(ga);za=0;for(Ha=a.length;za<Ha;za++){Z=a[za];y.empty();if(Z instanceof THREE.RenderableParticle){w=
-Z;w.x*=l;w.y*=o;fa=0;for(ma=Z.material.length;fa<ma;fa++)La(w,Z,Z.material[fa],ga)}else if(Z instanceof THREE.RenderableLine){w=Z.v1;J=Z.v2;w.positionScreen.x*=l;w.positionScreen.y*=o;J.positionScreen.x*=l;J.positionScreen.y*=o;y.addPoint(w.positionScreen.x,w.positionScreen.y);y.addPoint(J.positionScreen.x,J.positionScreen.y);if(L.instersects(y)){fa=0;for(ma=Z.material.length;fa<ma;)Ma(w,J,Z,Z.material[fa++],ga)}}else if(Z instanceof THREE.RenderableFace3){w=Z.v1;J=Z.v2;P=Z.v3;w.positionScreen.x*=
-l;w.positionScreen.y*=o;J.positionScreen.x*=l;J.positionScreen.y*=o;P.positionScreen.x*=l;P.positionScreen.y*=o;if(Z.overdraw){Da(w.positionScreen,J.positionScreen);Da(J.positionScreen,P.positionScreen);Da(P.positionScreen,w.positionScreen)}y.add3Points(w.positionScreen.x,w.positionScreen.y,J.positionScreen.x,J.positionScreen.y,P.positionScreen.x,P.positionScreen.y);if(L.instersects(y)){fa=0;for(ma=Z.meshMaterial.length;fa<ma;){sa=Z.meshMaterial[fa++];if(sa instanceof THREE.MeshFaceMaterial){Ea=0;
-for(Ia=Z.faceMaterial.length;Ea<Ia;)(sa=Z.faceMaterial[Ea++])&&Fa(w,J,P,Z,sa,ga)}else Fa(w,J,P,Z,sa,ga)}}}z.addRectangle(y)}k.lineWidth=1;k.strokeStyle="rgba( 255, 0, 0, 0.5 )";k.strokeRect(z.getX(),z.getY(),z.getWidth(),z.getHeight());k.setTransform(1,0,0,1,0,0)}};
-THREE.SVGRenderer=function(){function a(R,X,V){var L,z,y,M;L=0;for(z=R.lights.length;L<z;L++){y=R.lights[L];if(y instanceof THREE.DirectionalLight){M=X.normalWorld.dot(y.position)*y.intensity;if(M>0){V.r+=y.color.r*M;V.g+=y.color.g*M;V.b+=y.color.b*M}}else if(y instanceof THREE.PointLight){h.sub(y.position,X.centroidWorld);h.normalize();M=X.normalWorld.dot(h)*y.intensity;if(M>0){V.r+=y.color.r*M;V.g+=y.color.g*M;V.b+=y.color.b*M}}}}function b(R,X,V,L,z,y){v=d(u++);v.setAttribute("d","M "+R.positionScreen.x+
-" "+R.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+V.positionScreen.x+","+V.positionScreen.y+"z");if(z instanceof THREE.MeshBasicMaterial)D.__styleString=z.color.__styleString;else if(z instanceof THREE.MeshLambertMaterial)if(Q){e.r=m.r;e.g=m.g;e.b=m.b;a(y,L,e);D.r=z.color.r*e.r;D.g=z.color.g*e.g;D.b=z.color.b*e.b;D.updateStyleString()}else D.__styleString=z.color.__styleString;else if(z instanceof THREE.MeshDepthMaterial){j=1-z.__2near/(z.__farPlusNear-L.z*z.__farMinusNear);
-D.setRGB(j,j,j)}else z instanceof THREE.MeshNormalMaterial&&D.setRGB(i(L.normalWorld.x),i(L.normalWorld.y),i(L.normalWorld.z));z.wireframe?v.setAttribute("style","fill: none; stroke: "+D.__styleString+"; stroke-width: "+z.wireframe_linewidth+"; stroke-opacity: "+z.opacity+"; stroke-linecap: "+z.wireframe_linecap+"; stroke-linejoin: "+z.wireframe_linejoin):v.setAttribute("style","fill: "+D.__styleString+"; fill-opacity: "+z.opacity);k.appendChild(v)}function g(R,X,V,L,z,y,M){v=d(u++);v.setAttribute("d",
-"M "+R.positionScreen.x+" "+R.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+V.positionScreen.x+","+V.positionScreen.y+" L "+L.positionScreen.x+","+L.positionScreen.y+"z");if(y instanceof THREE.MeshBasicMaterial)D.__styleString=y.color.__styleString;else if(y instanceof THREE.MeshLambertMaterial)if(Q){e.r=m.r;e.g=m.g;e.b=m.b;a(M,z,e);D.r=y.color.r*e.r;D.g=y.color.g*e.g;D.b=y.color.b*e.b;D.updateStyleString()}else D.__styleString=y.color.__styleString;else if(y instanceof THREE.MeshDepthMaterial){j=
-1-y.__2near/(y.__farPlusNear-z.z*y.__farMinusNear);D.setRGB(j,j,j)}else y instanceof THREE.MeshNormalMaterial&&D.setRGB(i(z.normalWorld.x),i(z.normalWorld.y),i(z.normalWorld.z));y.wireframe?v.setAttribute("style","fill: none; stroke: "+D.__styleString+"; stroke-width: "+y.wireframe_linewidth+"; stroke-opacity: "+y.opacity+"; stroke-linecap: "+y.wireframe_linecap+"; stroke-linejoin: "+y.wireframe_linejoin):v.setAttribute("style","fill: "+D.__styleString+"; fill-opacity: "+y.opacity);k.appendChild(v)}
-function d(R){if(s[R]==null){s[R]=document.createElementNS("http://www.w3.org/2000/svg","path");G==0&&s[R].setAttribute("shape-rendering","crispEdges");return s[R]}return s[R]}function i(R){return R<0?Math.min((1+R)*0.5,0.5):0.5+Math.min(R*0.5,0.5)}var l=null,o=new THREE.Projector,k=document.createElementNS("http://www.w3.org/2000/svg","svg"),n,c,C,B,x,w,J,P,N=new THREE.Rectangle,q=new THREE.Rectangle,Q=false,D=new THREE.Color(16777215),e=new THREE.Color(16777215),m=new THREE.Color(0),f=new THREE.Color(0),
-p=new THREE.Color(0),j,h=new THREE.Vector3,s=[],E=[],r=[],v,u,K,F,G=1;this.domElement=k;this.sortElements=this.sortObjects=this.autoClear=true;this.setQuality=function(R){switch(R){case "high":G=1;break;case "low":G=0}};this.setSize=function(R,X){n=R;c=X;C=n/2;B=c/2;k.setAttribute("viewBox",-C+" "+-B+" "+n+" "+c);k.setAttribute("width",n);k.setAttribute("height",c);N.set(-C,-B,C,B)};this.clear=function(){for(;k.childNodes.length>0;)k.removeChild(k.childNodes[0])};this.render=function(R,X){var V,L,
-z,y,M,S,H,U;this.autoClear&&this.clear();l=o.projectScene(R,X,this.sortElements);F=K=u=0;if(Q=R.lights.length>0){H=R.lights;m.setRGB(0,0,0);f.setRGB(0,0,0);p.setRGB(0,0,0);V=0;for(L=H.length;V<L;V++){z=H[V];y=z.color;if(z instanceof THREE.AmbientLight){m.r+=y.r;m.g+=y.g;m.b+=y.b}else if(z instanceof THREE.DirectionalLight){f.r+=y.r;f.g+=y.g;f.b+=y.b}else if(z instanceof THREE.PointLight){p.r+=y.r;p.g+=y.g;p.b+=y.b}}}V=0;for(L=l.length;V<L;V++){H=l[V];q.empty();if(H instanceof THREE.RenderableParticle){x=
-H;x.x*=C;x.y*=-B;z=0;for(y=H.material.length;z<y;z++)if(U=H.material[z]){M=x;S=H;U=U;var aa=K++;if(E[aa]==null){E[aa]=document.createElementNS("http://www.w3.org/2000/svg","circle");G==0&&E[aa].setAttribute("shape-rendering","crispEdges")}v=E[aa];v.setAttribute("cx",M.x);v.setAttribute("cy",M.y);v.setAttribute("r",S.scale.x*C);if(U instanceof THREE.ParticleCircleMaterial){if(Q){e.r=m.r+f.r+p.r;e.g=m.g+f.g+p.g;e.b=m.b+f.b+p.b;D.r=U.color.r*e.r;D.g=U.color.g*e.g;D.b=U.color.b*e.b;D.updateStyleString()}else D=
-U.color;v.setAttribute("style","fill: "+D.__styleString)}k.appendChild(v)}}else if(H instanceof THREE.RenderableLine){x=H.v1;w=H.v2;x.positionScreen.x*=C;x.positionScreen.y*=-B;w.positionScreen.x*=C;w.positionScreen.y*=-B;q.addPoint(x.positionScreen.x,x.positionScreen.y);q.addPoint(w.positionScreen.x,w.positionScreen.y);if(N.instersects(q)){z=0;for(y=H.material.length;z<y;)if(U=H.material[z++]){M=x;S=w;U=U;aa=F++;if(r[aa]==null){r[aa]=document.createElementNS("http://www.w3.org/2000/svg","line");
-G==0&&r[aa].setAttribute("shape-rendering","crispEdges")}v=r[aa];v.setAttribute("x1",M.positionScreen.x);v.setAttribute("y1",M.positionScreen.y);v.setAttribute("x2",S.positionScreen.x);v.setAttribute("y2",S.positionScreen.y);if(U instanceof THREE.LineBasicMaterial){D.__styleString=U.color.__styleString;v.setAttribute("style","fill: none; stroke: "+D.__styleString+"; stroke-width: "+U.linewidth+"; stroke-opacity: "+U.opacity+"; stroke-linecap: "+U.linecap+"; stroke-linejoin: "+U.linejoin);k.appendChild(v)}}}}else if(H instanceof
-THREE.RenderableFace3){x=H.v1;w=H.v2;J=H.v3;x.positionScreen.x*=C;x.positionScreen.y*=-B;w.positionScreen.x*=C;w.positionScreen.y*=-B;J.positionScreen.x*=C;J.positionScreen.y*=-B;q.addPoint(x.positionScreen.x,x.positionScreen.y);q.addPoint(w.positionScreen.x,w.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);if(N.instersects(q)){z=0;for(y=H.meshMaterial.length;z<y;){U=H.meshMaterial[z++];if(U instanceof THREE.MeshFaceMaterial){M=0;for(S=H.faceMaterial.length;M<S;)(U=H.faceMaterial[M++])&&
-b(x,w,J,H,U,R)}else U&&b(x,w,J,H,U,R)}}}else if(H instanceof THREE.RenderableFace4){x=H.v1;w=H.v2;J=H.v3;P=H.v4;x.positionScreen.x*=C;x.positionScreen.y*=-B;w.positionScreen.x*=C;w.positionScreen.y*=-B;J.positionScreen.x*=C;J.positionScreen.y*=-B;P.positionScreen.x*=C;P.positionScreen.y*=-B;q.addPoint(x.positionScreen.x,x.positionScreen.y);q.addPoint(w.positionScreen.x,w.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);q.addPoint(P.positionScreen.x,P.positionScreen.y);if(N.instersects(q)){z=
-0;for(y=H.meshMaterial.length;z<y;){U=H.meshMaterial[z++];if(U instanceof THREE.MeshFaceMaterial){M=0;for(S=H.faceMaterial.length;M<S;)(U=H.faceMaterial[M++])&&g(x,w,J,P,H,U,R)}else U&&g(x,w,J,P,H,U,R)}}}}}};
-THREE.WebGLRenderer=function(a){function b(e,m){var f=c.createProgram(),p=[c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0?"#define VERTEX_TEXTURES":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nattribute vec3 position;\nattribute vec3 normal;\nattribute vec2 uv;\n"].join("\n");c.attachShader(f,o("fragment","#ifdef GL_ES\nprecision highp float;\n#endif\nuniform mat4 viewMatrix;\nuniform vec3 cameraPosition;\n"+
-e));c.attachShader(f,o("vertex",p+m));c.linkProgram(f);c.getProgramParameter(f,c.LINK_STATUS)||alert("Could not initialise shaders\nVALIDATE_STATUS: "+c.getProgramParameter(f,c.VALIDATE_STATUS)+", gl error ["+c.getError()+"]");f.uniforms={};f.attributes={};return f}function g(e,m){if(e.image.length==6){if(!e.image.__webGLTextureCube&&!e.image.__cubeMapInitialized&&e.image.loadCount==6){e.image.__webGLTextureCube=c.createTexture();c.bindTexture(c.TEXTURE_CUBE_MAP,e.image.__webGLTextureCube);c.texParameteri(c.TEXTURE_CUBE_MAP,
-c.TEXTURE_WRAP_S,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_WRAP_T,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MAG_FILTER,c.LINEAR);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MIN_FILTER,c.LINEAR_MIPMAP_LINEAR);for(var f=0;f<6;++f)c.texImage2D(c.TEXTURE_CUBE_MAP_POSITIVE_X+f,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,e.image[f]);c.generateMipmap(c.TEXTURE_CUBE_MAP);c.bindTexture(c.TEXTURE_CUBE_MAP,null);e.image.__cubeMapInitialized=true}c.activeTexture(c.TEXTURE0+m);c.bindTexture(c.TEXTURE_CUBE_MAP,
-e.image.__webGLTextureCube)}}function d(e,m){if(!e.__webGLTexture&&e.image.loaded){e.__webGLTexture=c.createTexture();c.bindTexture(c.TEXTURE_2D,e.__webGLTexture);c.texImage2D(c.TEXTURE_2D,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,e.image);c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_S,k(e.wrap_s));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_T,k(e.wrap_t));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MAG_FILTER,k(e.mag_filter));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MIN_FILTER,k(e.min_filter));c.generateMipmap(c.TEXTURE_2D);
-c.bindTexture(c.TEXTURE_2D,null)}c.activeTexture(c.TEXTURE0+m);c.bindTexture(c.TEXTURE_2D,e.__webGLTexture)}function i(e,m){var f,p,j;f=0;for(p=m.length;f<p;f++){j=m[f];e.uniforms[j]=c.getUniformLocation(e,j)}}function l(e,m){var f,p,j;f=0;for(p=m.length;f<p;f++){j=m[f];e.attributes[j]=c.getAttribLocation(e,j)}}function o(e,m){var f;if(e=="fragment")f=c.createShader(c.FRAGMENT_SHADER);else if(e=="vertex")f=c.createShader(c.VERTEX_SHADER);c.shaderSource(f,m);c.compileShader(f);if(!c.getShaderParameter(f,
-c.COMPILE_STATUS)){alert(c.getShaderInfoLog(f));return null}return f}function k(e){switch(e){case THREE.RepeatWrapping:return c.REPEAT;case THREE.ClampToEdgeWrapping:return c.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return c.MIRRORED_REPEAT;case THREE.NearestFilter:return c.NEAREST;case THREE.NearestMipMapNearestFilter:return c.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return c.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return c.LINEAR;case THREE.LinearMipMapNearestFilter:return c.LINEAR_MIPMAP_NEAREST;
-case THREE.LinearMipMapLinearFilter:return c.LINEAR_MIPMAP_LINEAR}return 0}var n=document.createElement("canvas"),c,C,B,x=new THREE.Matrix4,w,J=new Float32Array(16),P=new Float32Array(16),N=new Float32Array(16),q=new Float32Array(9),Q=new Float32Array(16);a=function(e,m){if(e){var f,p,j,h=pointLights=maxDirLights=maxPointLights=0;f=0;for(p=e.lights.length;f<p;f++){j=e.lights[f];j instanceof THREE.DirectionalLight&&h++;j instanceof THREE.PointLight&&pointLights++}if(pointLights+h<=m){maxDirLights=
-h;maxPointLights=pointLights}else{maxDirLights=Math.ceil(m*h/(pointLights+h));maxPointLights=m-maxDirLights}return{directional:maxDirLights,point:maxPointLights}}return{directional:1,point:m-1}}(a,4);this.domElement=n;this.autoClear=true;try{c=n.getContext("experimental-webgl",{antialias:true})}catch(D){}if(!c){alert("WebGL not supported");throw"cannot create webgl context";}c.clearColor(0,0,0,1);c.clearDepth(1);c.enable(c.DEPTH_TEST);c.depthFunc(c.LEQUAL);c.frontFace(c.CCW);c.cullFace(c.BACK);c.enable(c.CULL_FACE);
-c.enable(c.BLEND);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA);c.clearColor(0,0,0,0);C=B=function(e,m){var f=[e?"#define MAX_DIR_LIGHTS "+e:"",m?"#define MAX_POINT_LIGHTS "+m:"","uniform bool enableLighting;\nuniform bool useRefract;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;\nuniform vec3 ambientLightColor;",e?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",e?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",m?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":
-"",m?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",m?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nuniform float mRefractionRatio;\nvoid main(void) {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvViewPosition = cameraPosition - mPosition.xyz;\nvec3 nWorld = mat3( objectMatrix[0].xyz, objectMatrix[1].xyz, objectMatrix[2].xyz ) * normal;\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvec3 transformedNormal = normalize( normalMatrix * normal );\nif ( !enableLighting ) {\nvLightWeighting = vec3( 1.0, 1.0, 1.0 );\n} else {\nvLightWeighting = ambientLightColor;",
-e?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",e?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",e?"float directionalLightWeighting = max( dot( transformedNormal, normalize( lDirection.xyz ) ), 0.0 );":"",e?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",e?"}":"",m?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",m?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",m?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":
-"",m?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",m?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",m?"}":"","}\nvNormal = transformedNormal;\nvUv = uv;\nif ( useRefract ) {\nvReflect = refract( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz), mRefractionRatio );\n} else {\nvReflect = reflect( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz) );\n}\ngl_Position = projectionMatrix * mvPosition;\n}"].join("\n"),
-p=[e?"#define MAX_DIR_LIGHTS "+e:"",m?"#define MAX_POINT_LIGHTS "+m:"","uniform int material;\nuniform bool enableMap;\nuniform bool enableCubeMap;\nuniform bool mixEnvMap;\nuniform samplerCube tCube;\nuniform float mReflectivity;\nuniform sampler2D tMap;\nuniform vec4 mColor;\nuniform float mOpacity;\nuniform vec4 mAmbient;\nuniform vec4 mSpecular;\nuniform float mShininess;\nuniform float m2Near;\nuniform float mFarPlusNear;\nuniform float mFarMinusNear;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;",
-e?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",m?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nvoid main() {\nvec4 mapColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nvec4 cubeColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nif ( enableMap ) {\nmapColor = texture2D( tMap, vUv );\n}\nif ( enableCubeMap ) {\ncubeColor = textureCube( tCube, vec3( -vReflect.x, vReflect.yz ) );\n}\nif ( material == 4 ) { \ngl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, mOpacity );\n} else if ( material == 3 ) { \nfloat w = 0.5;\ngl_FragColor = vec4( w, w, w, mOpacity );\n} else if ( material == 2 ) { \nvec3 normal = normalize( vNormal );\nvec3 viewPosition = normalize( vViewPosition );",
-m?"vec4 pointDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",m?"vec4 pointSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",m?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",m?"vec3 pointVector = normalize( vPointLightVector[ i ] );":"",m?"vec3 pointHalfVector = normalize( vPointLightVector[ i ] + vViewPosition );":"",m?"float pointDotNormalHalf = dot( normal, pointHalfVector );":"",m?"float pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );":"",m?"float pointSpecularWeight = 0.0;":"",m?"if ( pointDotNormalHalf >= 0.0 )":
-"",m?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",m?"pointDiffuse  += mColor * pointDiffuseWeight;":"",m?"pointSpecular += mSpecular * pointSpecularWeight;":"",m?"}":"",e?"vec4 dirDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",e?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",e?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",e?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",e?"vec3 dirVector = normalize( lDirection.xyz );":"",e?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":
-"",e?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",e?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",e?"float dirSpecularWeight = 0.0;":"",e?"if ( dirDotNormalHalf >= 0.0 )":"",e?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",e?"dirDiffuse  += mColor * dirDiffuseWeight;":"",e?"dirSpecular += mSpecular * dirSpecularWeight;":"",e?"}":"","vec4 totalLight = mAmbient;",e?"totalLight += dirDiffuse + dirSpecular;":"",m?"totalLight += pointDiffuse + pointSpecular;":
-"","if ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mapColor.rgb * totalLight.xyz * vLightWeighting, cubeColor.rgb, mReflectivity ), mapColor.a );\n} else {\ngl_FragColor = vec4( mapColor.rgb * cubeColor.rgb * totalLight.xyz * vLightWeighting, mapColor.a );\n}\n} else if ( material == 1 ) {\nif ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mColor.rgb * mapColor.rgb * vLightWeighting, cubeColor.rgb, mReflectivity ), mColor.a * mapColor.a );\n} else {\ngl_FragColor = vec4( mColor.rgb * mapColor.rgb * cubeColor.rgb * vLightWeighting, mColor.a * mapColor.a );\n}\n} else {\nif ( mixEnvMap ) {\ngl_FragColor = mix( mColor * mapColor, cubeColor, mReflectivity );\n} else {\ngl_FragColor = mColor * mapColor * cubeColor;\n}\n}\n}"].join("\n");
-f=b(p,f);c.useProgram(f);i(f,["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition","enableLighting","ambientLightColor","material","mColor","mAmbient","mSpecular","mShininess","mOpacity","enableMap","tMap","enableCubeMap","tCube","mixEnvMap","mReflectivity","mRefractionRatio","useRefract","m2Near","mFarPlusNear","mFarMinusNear"]);e&&i(f,["directionalLightNumber","directionalLightColor","directionalLightDirection"]);m&&i(f,["pointLightNumber","pointLightColor",
-"pointLightPosition"]);c.uniform1i(f.uniforms.enableMap,0);c.uniform1i(f.uniforms.tMap,0);c.uniform1i(f.uniforms.enableCubeMap,0);c.uniform1i(f.uniforms.tCube,1);c.uniform1i(f.uniforms.mixEnvMap,0);c.uniform1i(f.uniforms.useRefract,0);l(f,["position","normal","uv"]);return f}(a.directional,a.point);this.setSize=function(e,m){n.width=e;n.height=m;c.viewport(0,0,n.width,n.height)};this.clear=function(){c.clear(c.COLOR_BUFFER_BIT|c.DEPTH_BUFFER_BIT)};this.setupLights=function(e,m){var f,p,j,h,s,E=[],
-r=[],v=[];h=[];s=[];c.uniform1i(e.uniforms.enableLighting,m.length);f=0;for(p=m.length;f<p;f++){j=m[f];if(j instanceof THREE.AmbientLight)E.push(j);else if(j instanceof THREE.DirectionalLight)v.push(j);else j instanceof THREE.PointLight&&r.push(j)}f=j=h=s=0;for(p=E.length;f<p;f++){j+=E[f].color.r;h+=E[f].color.g;s+=E[f].color.b}c.uniform3f(e.uniforms.ambientLightColor,j,h,s);h=[];s=[];f=0;for(p=v.length;f<p;f++){j=v[f];h.push(j.color.r*j.intensity);h.push(j.color.g*j.intensity);h.push(j.color.b*j.intensity);
-s.push(j.position.x);s.push(j.position.y);s.push(j.position.z)}if(v.length){c.uniform1i(e.uniforms.directionalLightNumber,v.length);c.uniform3fv(e.uniforms.directionalLightDirection,s);c.uniform3fv(e.uniforms.directionalLightColor,h)}h=[];s=[];f=0;for(p=r.length;f<p;f++){j=r[f];h.push(j.color.r*j.intensity);h.push(j.color.g*j.intensity);h.push(j.color.b*j.intensity);s.push(j.position.x);s.push(j.position.y);s.push(j.position.z)}if(r.length){c.uniform1i(e.uniforms.pointLightNumber,r.length);c.uniform3fv(e.uniforms.pointLightPosition,
-s);c.uniform3fv(e.uniforms.pointLightColor,h)}};this.createBuffers=function(e,m){var f,p,j,h,s,E,r,v,u,K=[],F=[],G=[],R=[],X=[],V=[],L=0,z=e.geometry.geometryChunks[m],y;j=false;f=0;for(p=e.material.length;f<p;f++){meshMaterial=e.material[f];if(meshMaterial instanceof THREE.MeshFaceMaterial){s=0;for(y=z.material.length;s<y;s++)if(z.material[s]&&z.material[s].shading!=undefined&&z.material[s].shading==THREE.SmoothShading){j=true;break}}else if(meshMaterial&&meshMaterial.shading!=undefined&&meshMaterial.shading==
-THREE.SmoothShading){j=true;break}if(j)break}y=j;f=0;for(p=z.faces.length;f<p;f++){j=z.faces[f];h=e.geometry.faces[j];s=h.vertexNormals;faceNormal=h.normal;j=e.geometry.uvs[j];if(h instanceof THREE.Face3){E=e.geometry.vertices[h.a].position;r=e.geometry.vertices[h.b].position;v=e.geometry.vertices[h.c].position;G.push(E.x,E.y,E.z);G.push(r.x,r.y,r.z);G.push(v.x,v.y,v.z);if(e.geometry.hasTangents){E=e.geometry.vertices[h.a].tangent;r=e.geometry.vertices[h.b].tangent;v=e.geometry.vertices[h.c].tangent;
-X.push(E.x,E.y,E.z,E.w);X.push(r.x,r.y,r.z,r.w);X.push(v.x,v.y,v.z,v.w)}if(s.length==3&&y)for(h=0;h<3;h++)R.push(s[h].x,s[h].y,s[h].z);else for(h=0;h<3;h++)R.push(faceNormal.x,faceNormal.y,faceNormal.z);if(j)for(h=0;h<3;h++)V.push(j[h].u,j[h].v);K.push(L,L+1,L+2);F.push(L,L+1);F.push(L,L+2);F.push(L+1,L+2);L+=3}else if(h instanceof THREE.Face4){E=e.geometry.vertices[h.a].position;r=e.geometry.vertices[h.b].position;v=e.geometry.vertices[h.c].position;u=e.geometry.vertices[h.d].position;G.push(E.x,
-E.y,E.z);G.push(r.x,r.y,r.z);G.push(v.x,v.y,v.z);G.push(u.x,u.y,u.z);if(e.geometry.hasTangents){E=e.geometry.vertices[h.a].tangent;r=e.geometry.vertices[h.b].tangent;v=e.geometry.vertices[h.c].tangent;h=e.geometry.vertices[h.d].tangent;X.push(E.x,E.y,E.z,E.w);X.push(r.x,r.y,r.z,r.w);X.push(v.x,v.y,v.z,v.w);X.push(h.x,h.y,h.z,h.w)}if(s.length==4&&y)for(h=0;h<4;h++)R.push(s[h].x,s[h].y,s[h].z);else for(h=0;h<4;h++)R.push(faceNormal.x,faceNormal.y,faceNormal.z);if(j)for(h=0;h<4;h++)V.push(j[h].u,j[h].v);
-K.push(L,L+1,L+2);K.push(L,L+2,L+3);F.push(L,L+1);F.push(L,L+2);F.push(L,L+3);F.push(L+1,L+2);F.push(L+2,L+3);L+=4}}if(G.length){z.__webGLVertexBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,z.__webGLVertexBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(G),c.STATIC_DRAW);z.__webGLNormalBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,z.__webGLNormalBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(R),c.STATIC_DRAW);if(e.geometry.hasTangents){z.__webGLTangentBuffer=c.createBuffer();
-c.bindBuffer(c.ARRAY_BUFFER,z.__webGLTangentBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(X),c.STATIC_DRAW)}if(V.length>0){z.__webGLUVBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,z.__webGLUVBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(V),c.STATIC_DRAW)}z.__webGLFaceBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,z.__webGLFaceBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(K),c.STATIC_DRAW);z.__webGLLineBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,
-z.__webGLLineBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(F),c.STATIC_DRAW);z.__webGLFaceCount=K.length;z.__webGLLineCount=F.length}};this.renderBuffer=function(e,m,f,p){var j,h,s,E,r,v,u,K,F;if(f instanceof THREE.MeshShaderMaterial){if(!f.program){f.program=b(f.fragment_shader,f.vertex_shader);u=["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition"];for(F in f.uniforms)u.push(F);i(f.program,u);l(f.program,["position","normal","uv","tangent"])}F=
-f.program}else F=B;if(F!=C){c.useProgram(F);C=F}F==B&&this.setupLights(F,m);this.loadCamera(F,e);this.loadMatrices(F);if(f instanceof THREE.MeshShaderMaterial){s=f.wireframe;E=f.wireframe_linewidth;e=F;m=f.uniforms;var G;for(j in m){K=m[j].type;u=m[j].value;G=e.uniforms[j];if(K=="i")c.uniform1i(G,u);else if(K=="f")c.uniform1f(G,u);else if(K=="v3")c.uniform3f(G,u.x,u.y,u.z);else if(K=="c")c.uniform3f(G,u.r,u.g,u.b);else if(K=="t"){c.uniform1i(G,u);if(K=m[j].texture)K.image instanceof Array&&K.image.length==
-6?g(K,u):d(K,u)}}}if(f instanceof THREE.MeshPhongMaterial||f instanceof THREE.MeshLambertMaterial||f instanceof THREE.MeshBasicMaterial){j=f.color;h=f.opacity;s=f.wireframe;E=f.wireframe_linewidth;r=f.map;v=f.env_map;m=f.combine==THREE.MixOperation;e=f.reflectivity;K=f.env_map&&f.env_map.mapping instanceof THREE.CubeRefractionMapping;u=f.refraction_ratio;c.uniform4f(F.uniforms.mColor,j.r*h,j.g*h,j.b*h,h);c.uniform1i(F.uniforms.mixEnvMap,m);c.uniform1f(F.uniforms.mReflectivity,e);c.uniform1i(F.uniforms.useRefract,
-K);c.uniform1f(F.uniforms.mRefractionRatio,u)}if(f instanceof THREE.MeshNormalMaterial){h=f.opacity;c.uniform1f(F.uniforms.mOpacity,h);c.uniform1i(F.uniforms.material,4)}else if(f instanceof THREE.MeshDepthMaterial){h=f.opacity;s=f.wireframe;E=f.wireframe_linewidth;c.uniform1f(F.uniforms.mOpacity,h);c.uniform1f(F.uniforms.m2Near,f.__2near);c.uniform1f(F.uniforms.mFarPlusNear,f.__farPlusNear);c.uniform1f(F.uniforms.mFarMinusNear,f.__farMinusNear);c.uniform1i(F.uniforms.material,3)}else if(f instanceof
-THREE.MeshPhongMaterial){j=f.ambient;e=f.specular;f=f.shininess;c.uniform4f(F.uniforms.mAmbient,j.r,j.g,j.b,h);c.uniform4f(F.uniforms.mSpecular,e.r,e.g,e.b,h);c.uniform1f(F.uniforms.mShininess,f);c.uniform1i(F.uniforms.material,2)}else if(f instanceof THREE.MeshLambertMaterial)c.uniform1i(F.uniforms.material,1);else f instanceof THREE.MeshBasicMaterial&&c.uniform1i(F.uniforms.material,0);if(r){d(r,0);c.uniform1i(F.uniforms.tMap,0);c.uniform1i(F.uniforms.enableMap,1)}else c.uniform1i(F.uniforms.enableMap,
-0);if(v){g(v,1);c.uniform1i(F.uniforms.tCube,1);c.uniform1i(F.uniforms.enableCubeMap,1)}else c.uniform1i(F.uniforms.enableCubeMap,0);h=F.attributes;c.bindBuffer(c.ARRAY_BUFFER,p.__webGLVertexBuffer);c.vertexAttribPointer(h.position,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.position);if(h.normal>=0){c.bindBuffer(c.ARRAY_BUFFER,p.__webGLNormalBuffer);c.vertexAttribPointer(h.normal,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.normal)}if(h.tangent>=0){c.bindBuffer(c.ARRAY_BUFFER,p.__webGLTangentBuffer);
-c.vertexAttribPointer(h.tangent,4,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.tangent)}if(h.uv>=0)if(p.__webGLUVBuffer){c.bindBuffer(c.ARRAY_BUFFER,p.__webGLUVBuffer);c.vertexAttribPointer(h.uv,2,c.FLOAT,false,0,0);c.enableVertexAttribArray(h.uv)}else c.disableVertexAttribArray(h.uv);if(s){c.lineWidth(E);c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,p.__webGLLineBuffer);c.drawElements(c.LINES,p.__webGLLineCount,c.UNSIGNED_SHORT,0)}else{c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,p.__webGLFaceBuffer);c.drawElements(c.TRIANGLES,
-p.__webGLFaceCount,c.UNSIGNED_SHORT,0)}};this.renderPass=function(e,m,f,p,j,h){var s,E,r,v,u;r=0;for(v=f.material.length;r<v;r++){s=f.material[r];if(s instanceof THREE.MeshFaceMaterial){s=0;for(E=p.material.length;s<E;s++)if((u=p.material[s])&&u.blending==j&&u.opacity<1==h){this.setBlending(u.blending);this.renderBuffer(e,m,u,p)}}else if((u=s)&&u.blending==j&&u.opacity<1==h){this.setBlending(u.blending);this.renderBuffer(e,m,u,p)}}};this.render=function(e,m){var f,p,j,h,s=e.lights;this.initWebGLObjects(e);
-this.autoClear&&this.clear();m.autoUpdateMatrix&&m.updateMatrix();J.set(m.matrix.flatten());N.set(m.projectionMatrix.flatten());f=0;for(p=e.__webGLObjects.length;f<p;f++){j=e.__webGLObjects[f];h=j.object;j=j.buffer;if(h.visible){this.setupMatrices(h,m);this.renderPass(m,s,h,j,THREE.NormalBlending,false)}}f=0;for(p=e.__webGLObjects.length;f<p;f++){j=e.__webGLObjects[f];h=j.object;j=j.buffer;if(h.visible){this.setupMatrices(h,m);this.renderPass(m,s,h,j,THREE.AdditiveBlending,false);this.renderPass(m,
-s,h,j,THREE.SubtractiveBlending,false);this.renderPass(m,s,h,j,THREE.AdditiveBlending,true);this.renderPass(m,s,h,j,THREE.SubtractiveBlending,true);this.renderPass(m,s,h,j,THREE.NormalBlending,true)}}};this.initWebGLObjects=function(e){var m,f,p,j,h,s;if(!e.__webGLObjects){e.__webGLObjects=[];e.__webGLObjectsMap={}}m=0;for(f=e.objects.length;m<f;m++){p=e.objects[m];if(e.__webGLObjectsMap[p.id]==undefined)e.__webGLObjectsMap[p.id]={};s=e.__webGLObjectsMap[p.id];if(p instanceof THREE.Mesh)for(h in p.geometry.geometryChunks){j=
-p.geometry.geometryChunks[h];j.__webGLVertexBuffer||this.createBuffers(p,h);if(s[h]==undefined){j={buffer:j,object:p};e.__webGLObjects.push(j);s[h]=1}}}};this.removeObject=function(e,m){var f,p;for(f=e.__webGLObjects.length-1;f>=0;f--){p=e.__webGLObjects[f].object;m==p&&e.__webGLObjects.splice(f,1)}};this.setupMatrices=function(e,m){e.autoUpdateMatrix&&e.updateMatrix();x.multiply(m.matrix,e.matrix);P.set(x.flatten());w=THREE.Matrix4.makeInvert3x3(x).transpose();q.set(w.m);Q.set(e.matrix.flatten())};
-this.loadMatrices=function(e){c.uniformMatrix4fv(e.uniforms.viewMatrix,false,J);c.uniformMatrix4fv(e.uniforms.modelViewMatrix,false,P);c.uniformMatrix4fv(e.uniforms.projectionMatrix,false,N);c.uniformMatrix3fv(e.uniforms.normalMatrix,false,q);c.uniformMatrix4fv(e.uniforms.objectMatrix,false,Q)};this.loadCamera=function(e,m){c.uniform3f(e.uniforms.cameraPosition,m.position.x,m.position.y,m.position.z)};this.setBlending=function(e){switch(e){case THREE.AdditiveBlending:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,
-c.ONE);break;case THREE.SubtractiveBlending:c.blendFunc(c.DST_COLOR,c.ZERO);break;default:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA)}};this.setFaceCulling=function(e,m){if(e){!m||m=="ccw"?c.frontFace(c.CCW):c.frontFace(c.CW);if(e=="back")c.cullFace(c.BACK);else e=="front"?c.cullFace(c.FRONT):c.cullFace(c.FRONT_AND_BACK);c.enable(c.CULL_FACE)}else c.disable(c.CULL_FACE)};this.supportsVertexTextures=function(){return c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0}};
-THREE.RenderableObject=function(){this.z=this.object=null};THREE.RenderableFace3=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.v3=new THREE.Vertex;this.centroidWorld=new THREE.Vector3;this.centroidScreen=new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.vertexNormalsWorld=[];this.faceMaterial=this.meshMaterial=null;this.overdraw=false;this.uvs=[null,null,null]};
-THREE.RenderableParticle=function(){this.rotation=this.z=this.y=this.x=null;this.scale=new THREE.Vector2;this.material=null};THREE.RenderableLine=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.material=null};
+// ThreeDebug.js r31 - http://github.com/mrdoob/three.js
+var THREE=THREE||{};THREE.Color=function(a){this.autoUpdate=true;this.setHex(a)};
+THREE.Color.prototype={setRGB:function(a,b,g){this.r=a;this.g=b;this.b=g;if(this.autoUpdate){this.updateHex();this.updateStyleString()}},setHex:function(a){this.hex=~~a&16777215;if(this.autoUpdate){this.updateRGBA();this.updateStyleString()}},updateHex:function(){this.hex=~~(this.r*255)<<16^~~(this.g*255)<<8^~~(this.b*255)},updateRGBA:function(){this.r=(this.hex>>16&255)/255;this.g=(this.hex>>8&255)/255;this.b=(this.hex&255)/255},updateStyleString:function(){this.__styleString="rgb("+~~(this.r*255)+
+","+~~(this.g*255)+","+~~(this.b*255)+")"},toString:function(){return"THREE.Color ( r: "+this.r+", g: "+this.g+", b: "+this.b+", hex: "+this.hex+" )"}};THREE.Vector2=function(a,b){this.x=a||0;this.y=b||0};
+THREE.Vector2.prototype={set:function(a,b){this.x=a;this.y=b;return this},copy:function(a){this.x=a.x;this.y=a.y;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;return this},unit:function(){this.multiplyScalar(1/this.length());return this},length:function(){return Math.sqrt(this.x*
+this.x+this.y*this.y)},lengthSq:function(){return this.x*this.x+this.y*this.y},negate:function(){this.x=-this.x;this.y=-this.y;return this},clone:function(){return new THREE.Vector2(this.x,this.y)},toString:function(){return"THREE.Vector2 ("+this.x+", "+this.y+")"}};THREE.Vector3=function(a,b,g){this.x=a||0;this.y=b||0;this.z=g||0};
+THREE.Vector3.prototype={set:function(a,b,g){this.x=a;this.y=b;this.z=g;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;return this},addScalar:function(a){this.x+=a;this.y+=a;this.z+=a;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;return this},
+cross:function(a,b){this.x=a.y*b.z-a.z*b.y;this.y=a.z*b.x-a.x*b.z;this.z=a.x*b.y-a.y*b.x;return this},crossSelf:function(a){var b=this.x,g=this.y,d=this.z;this.x=g*a.z-d*a.y;this.y=d*a.x-b*a.z;this.z=b*a.y-g*a.x;return this},multiply:function(a,b){this.x=a.x*b.x;this.y=a.y*b.y;this.z=a.z*b.z;return this},multiplySelf:function(a){this.x*=a.x;this.y*=a.y;this.z*=a.z;return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=
+a;return this},dot:function(a){return this.x*a.x+this.y*a.y+this.z*a.z},distanceTo:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return Math.sqrt(b*b+g*g+a*a)},distanceToSquared:function(a){var b=this.x-a.x,g=this.y-a.y;a=this.z-a.z;return b*b+g*g+a*a},length:function(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)},lengthSq:function(){return this.x*this.x+this.y*this.y+this.z*this.z},negate:function(){this.x=-this.x;this.y=-this.y;this.z=-this.z;return this},normalize:function(){var a=
+Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z);a>0?this.multiplyScalar(1/a):this.set(0,0,0);return this},setLength:function(a){return this.normalize().multiplyScalar(a)},isZero:function(){return Math.abs(this.x)<1.0E-4&&Math.abs(this.y)<1.0E-4&&Math.abs(this.z)<1.0E-4},clone:function(){return new THREE.Vector3(this.x,this.y,this.z)},toString:function(){return"THREE.Vector3 ( "+this.x+", "+this.y+", "+this.z+" )"}};
+THREE.Vector4=function(a,b,g,d){this.x=a||0;this.y=b||0;this.z=g||0;this.w=d||1};
+THREE.Vector4.prototype={set:function(a,b,g,d){this.x=a;this.y=b;this.z=g;this.w=d;return this},copy:function(a){this.x=a.x;this.y=a.y;this.z=a.z;this.w=a.w||1;return this},add:function(a,b){this.x=a.x+b.x;this.y=a.y+b.y;this.z=a.z+b.z;this.w=a.w+b.w;return this},addSelf:function(a){this.x+=a.x;this.y+=a.y;this.z+=a.z;this.w+=a.w;return this},sub:function(a,b){this.x=a.x-b.x;this.y=a.y-b.y;this.z=a.z-b.z;this.w=a.w-b.w;return this},subSelf:function(a){this.x-=a.x;this.y-=a.y;this.z-=a.z;this.w-=a.w;
+return this},multiplyScalar:function(a){this.x*=a;this.y*=a;this.z*=a;this.w*=a;return this},divideScalar:function(a){this.x/=a;this.y/=a;this.z/=a;this.w/=a;return this},lerpSelf:function(a,b){this.x+=(a.x-this.x)*b;this.y+=(a.y-this.y)*b;this.z+=(a.z-this.z)*b;this.w+=(a.w-this.w)*b},clone:function(){return new THREE.Vector4(this.x,this.y,this.z,this.w)},toString:function(){return"THREE.Vector4 ("+this.x+", "+this.y+", "+this.z+", "+this.w+")"}};
+THREE.Ray=function(a,b){this.origin=a||new THREE.Vector3;this.direction=b||new THREE.Vector3};
+THREE.Ray.prototype={intersectScene:function(a){var b,g,d=a.objects,h=[];a=0;for(b=d.length;a<b;a++){g=d[a];if(g instanceof THREE.Mesh)h=h.concat(this.intersectObject(g))}h.sort(function(k,p){return k.distance-p.distance});return h},intersectObject:function(a){function b(M,q,P,F){F=F.clone().subSelf(q);P=P.clone().subSelf(q);var K=M.clone().subSelf(q);M=F.dot(F);q=F.dot(P);F=F.dot(K);var f=P.dot(P);P=P.dot(K);K=1/(M*f-q*q);f=(f*F-q*P)*K;M=(M*P-q*F)*K;return f>0&&M>0&&f+M<1}var g,d,h,k,p,j,n,c,E,D,
+y,w=a.geometry,J=w.vertices,O=[];g=0;for(d=w.faces.length;g<d;g++){h=w.faces[g];D=this.origin.clone();y=this.direction.clone();k=a.matrix.multiplyVector3(J[h.a].position.clone());p=a.matrix.multiplyVector3(J[h.b].position.clone());j=a.matrix.multiplyVector3(J[h.c].position.clone());n=h instanceof THREE.Face4?a.matrix.multiplyVector3(J[h.d].position.clone()):null;c=a.rotationMatrix.multiplyVector3(h.normal.clone());E=y.dot(c);if(E<0){c=c.dot((new THREE.Vector3).sub(k,D))/E;D=D.addSelf(y.multiplyScalar(c));
+if(h instanceof THREE.Face3){if(b(D,k,p,j)){h={distance:this.origin.distanceTo(D),point:D,face:h,object:a};O.push(h)}}else if(h instanceof THREE.Face4)if(b(D,k,p,n)||b(D,p,j,n)){h={distance:this.origin.distanceTo(D),point:D,face:h,object:a};O.push(h)}}}return O}};
+THREE.Rectangle=function(){function a(){k=d-b;p=h-g}var b,g,d,h,k,p,j=true;this.getX=function(){return b};this.getY=function(){return g};this.getWidth=function(){return k};this.getHeight=function(){return p};this.getLeft=function(){return b};this.getTop=function(){return g};this.getRight=function(){return d};this.getBottom=function(){return h};this.set=function(n,c,E,D){j=false;b=n;g=c;d=E;h=D;a()};this.addPoint=function(n,c){if(j){j=false;b=n;g=c;d=n;h=c}else{b=b<n?b:n;g=g<c?g:c;d=d>n?d:n;h=h>c?
+h:c}a()};this.add3Points=function(n,c,E,D,y,w){if(j){j=false;b=n<E?n<y?n:y:E<y?E:y;g=c<D?c<w?c:w:D<w?D:w;d=n>E?n>y?n:y:E>y?E:y;h=c>D?c>w?c:w:D>w?D:w}else{b=n<E?n<y?n<b?n:b:y<b?y:b:E<y?E<b?E:b:y<b?y:b;g=c<D?c<w?c<g?c:g:w<g?w:g:D<w?D<g?D:g:w<g?w:g;d=n>E?n>y?n>d?n:d:y>d?y:d:E>y?E>d?E:d:y>d?y:d;h=c>D?c>w?c>h?c:h:w>h?w:h:D>w?D>h?D:h:w>h?w:h}a()};this.addRectangle=function(n){if(j){j=false;b=n.getLeft();g=n.getTop();d=n.getRight();h=n.getBottom()}else{b=b<n.getLeft()?b:n.getLeft();g=g<n.getTop()?g:n.getTop();
+d=d>n.getRight()?d:n.getRight();h=h>n.getBottom()?h:n.getBottom()}a()};this.inflate=function(n){b-=n;g-=n;d+=n;h+=n;a()};this.minSelf=function(n){b=b>n.getLeft()?b:n.getLeft();g=g>n.getTop()?g:n.getTop();d=d<n.getRight()?d:n.getRight();h=h<n.getBottom()?h:n.getBottom();a()};this.instersects=function(n){return Math.min(d,n.getRight())-Math.max(b,n.getLeft())>=0&&Math.min(h,n.getBottom())-Math.max(g,n.getTop())>=0};this.empty=function(){j=true;h=d=g=b=0;a()};this.isEmpty=function(){return j};this.toString=
+function(){return"THREE.Rectangle ( left: "+b+", right: "+d+", top: "+g+", bottom: "+h+", width: "+k+", height: "+p+" )"}};THREE.Matrix3=function(){this.m=[]};THREE.Matrix3.prototype={transpose:function(){var a;a=this.m[1];this.m[1]=this.m[3];this.m[3]=a;a=this.m[2];this.m[2]=this.m[6];this.m[6]=a;a=this.m[5];this.m[5]=this.m[7];this.m[7]=a;return this}};
+THREE.Matrix4=function(a,b,g,d,h,k,p,j,n,c,E,D,y,w,J,O){this.n11=a||1;this.n12=b||0;this.n13=g||0;this.n14=d||0;this.n21=h||0;this.n22=k||1;this.n23=p||0;this.n24=j||0;this.n31=n||0;this.n32=c||0;this.n33=E||1;this.n34=D||0;this.n41=y||0;this.n42=w||0;this.n43=J||0;this.n44=O||1};
+THREE.Matrix4.prototype={identity:function(){this.n11=1;this.n21=this.n14=this.n13=this.n12=0;this.n22=1;this.n32=this.n31=this.n24=this.n23=0;this.n33=1;this.n43=this.n42=this.n41=this.n34=0;this.n44=1;return this},set:function(a,b,g,d,h,k,p,j,n,c,E,D,y,w,J,O){this.n11=a;this.n12=b;this.n13=g;this.n14=d;this.n21=h;this.n22=k;this.n23=p;this.n24=j;this.n31=n;this.n32=c;this.n33=E;this.n34=D;this.n41=y;this.n42=w;this.n43=J;this.n44=O;return this},copy:function(a){this.n11=a.n11;this.n12=a.n12;this.n13=
+a.n13;this.n14=a.n14;this.n21=a.n21;this.n22=a.n22;this.n23=a.n23;this.n24=a.n24;this.n31=a.n31;this.n32=a.n32;this.n33=a.n33;this.n34=a.n34;this.n41=a.n41;this.n42=a.n42;this.n43=a.n43;this.n44=a.n44;return this},lookAt:function(a,b,g){var d=new THREE.Vector3,h=new THREE.Vector3,k=new THREE.Vector3;k.sub(a,b).normalize();d.cross(g,k).normalize();h.cross(k,d).normalize();this.n11=d.x;this.n12=d.y;this.n13=d.z;this.n14=-d.dot(a);this.n21=h.x;this.n22=h.y;this.n23=h.z;this.n24=-h.dot(a);this.n31=k.x;
+this.n32=k.y;this.n33=k.z;this.n34=-k.dot(a);this.n43=this.n42=this.n41=0;this.n44=1;return this},multiplyVector3:function(a){var b=a.x,g=a.y,d=a.z,h=1/(this.n41*b+this.n42*g+this.n43*d+this.n44);a.x=(this.n11*b+this.n12*g+this.n13*d+this.n14)*h;a.y=(this.n21*b+this.n22*g+this.n23*d+this.n24)*h;a.z=(this.n31*b+this.n32*g+this.n33*d+this.n34)*h;return a},multiplyVector4:function(a){var b=a.x,g=a.y,d=a.z,h=a.w;a.x=this.n11*b+this.n12*g+this.n13*d+this.n14*h;a.y=this.n21*b+this.n22*g+this.n23*d+this.n24*
+h;a.z=this.n31*b+this.n32*g+this.n33*d+this.n34*h;a.w=this.n41*b+this.n42*g+this.n43*d+this.n44*h;return a},crossVector:function(a){var b=new THREE.Vector4;b.x=this.n11*a.x+this.n12*a.y+this.n13*a.z+this.n14*a.w;b.y=this.n21*a.x+this.n22*a.y+this.n23*a.z+this.n24*a.w;b.z=this.n31*a.x+this.n32*a.y+this.n33*a.z+this.n34*a.w;b.w=a.w?this.n41*a.x+this.n42*a.y+this.n43*a.z+this.n44*a.w:1;return b},multiply:function(a,b){var g=a.n11,d=a.n12,h=a.n13,k=a.n14,p=a.n21,j=a.n22,n=a.n23,c=a.n24,E=a.n31,D=a.n32,
+y=a.n33,w=a.n34,J=a.n41,O=a.n42,M=a.n43,q=a.n44,P=b.n11,F=b.n12,K=b.n13,f=b.n14,l=b.n21,e=b.n22,o=b.n23,m=b.n24,i=b.n31,x=b.n32,r=b.n33,u=b.n34,v=b.n41,B=b.n42,Q=b.n43,A=b.n44;this.n11=g*P+d*l+h*i+k*v;this.n12=g*F+d*e+h*x+k*B;this.n13=g*K+d*o+h*r+k*Q;this.n14=g*f+d*m+h*u+k*A;this.n21=p*P+j*l+n*i+c*v;this.n22=p*F+j*e+n*x+c*B;this.n23=p*K+j*o+n*r+c*Q;this.n24=p*f+j*m+n*u+c*A;this.n31=E*P+D*l+y*i+w*v;this.n32=E*F+D*e+y*x+w*B;this.n33=E*K+D*o+y*r+w*Q;this.n34=E*f+D*m+y*u+w*A;this.n41=J*P+O*l+M*i+q*v;
+this.n42=J*F+O*e+M*x+q*B;this.n43=J*K+O*o+M*r+q*Q;this.n44=J*f+O*m+M*u+q*A;return this},multiplySelf:function(a){var b=this.n11,g=this.n12,d=this.n13,h=this.n14,k=this.n21,p=this.n22,j=this.n23,n=this.n24,c=this.n31,E=this.n32,D=this.n33,y=this.n34,w=this.n41,J=this.n42,O=this.n43,M=this.n44,q=a.n11,P=a.n21,F=a.n31,K=a.n41,f=a.n12,l=a.n22,e=a.n32,o=a.n42,m=a.n13,i=a.n23,x=a.n33,r=a.n43,u=a.n14,v=a.n24,B=a.n34;a=a.n44;this.n11=b*q+g*P+d*F+h*K;this.n12=b*f+g*l+d*e+h*o;this.n13=b*m+g*i+d*x+h*r;this.n14=
+b*u+g*v+d*B+h*a;this.n21=k*q+p*P+j*F+n*K;this.n22=k*f+p*l+j*e+n*o;this.n23=k*m+p*i+j*x+n*r;this.n24=k*u+p*v+j*B+n*a;this.n31=c*q+E*P+D*F+y*K;this.n32=c*f+E*l+D*e+y*o;this.n33=c*m+E*i+D*x+y*r;this.n34=c*u+E*v+D*B+y*a;this.n41=w*q+J*P+O*F+M*K;this.n42=w*f+J*l+O*e+M*o;this.n43=w*m+J*i+O*x+M*r;this.n44=w*u+J*v+O*B+M*a;return this},multiplyScalar:function(a){this.n11*=a;this.n12*=a;this.n13*=a;this.n14*=a;this.n21*=a;this.n22*=a;this.n23*=a;this.n24*=a;this.n31*=a;this.n32*=a;this.n33*=a;this.n34*=a;this.n41*=
+a;this.n42*=a;this.n43*=a;this.n44*=a;return this},determinant:function(){return this.n14*this.n23*this.n32*this.n41-this.n13*this.n24*this.n32*this.n41-this.n14*this.n22*this.n33*this.n41+this.n12*this.n24*this.n33*this.n41+this.n13*this.n22*this.n34*this.n41-this.n12*this.n23*this.n34*this.n41-this.n14*this.n23*this.n31*this.n42+this.n13*this.n24*this.n31*this.n42+this.n14*this.n21*this.n33*this.n42-this.n11*this.n24*this.n33*this.n42-this.n13*this.n21*this.n34*this.n42+this.n11*this.n23*this.n34*
+this.n42+this.n14*this.n22*this.n31*this.n43-this.n12*this.n24*this.n31*this.n43-this.n14*this.n21*this.n32*this.n43+this.n11*this.n24*this.n32*this.n43+this.n12*this.n21*this.n34*this.n43-this.n11*this.n22*this.n34*this.n43-this.n13*this.n22*this.n31*this.n44+this.n12*this.n23*this.n31*this.n44+this.n13*this.n21*this.n32*this.n44-this.n11*this.n23*this.n32*this.n44-this.n12*this.n21*this.n33*this.n44+this.n11*this.n22*this.n33*this.n44},transpose:function(){function a(b,g,d){var h=b[g];b[g]=b[d];
+b[d]=h}a(this,"n21","n12");a(this,"n31","n13");a(this,"n32","n23");a(this,"n41","n14");a(this,"n42","n24");a(this,"n43","n34");return this},clone:function(){var a=new THREE.Matrix4;a.n11=this.n11;a.n12=this.n12;a.n13=this.n13;a.n14=this.n14;a.n21=this.n21;a.n22=this.n22;a.n23=this.n23;a.n24=this.n24;a.n31=this.n31;a.n32=this.n32;a.n33=this.n33;a.n34=this.n34;a.n41=this.n41;a.n42=this.n42;a.n43=this.n43;a.n44=this.n44;return a},flatten:function(){return[this.n11,this.n21,this.n31,this.n41,this.n12,
+this.n22,this.n32,this.n42,this.n13,this.n23,this.n33,this.n43,this.n14,this.n24,this.n34,this.n44]},toString:function(){return"| "+this.n11+" "+this.n12+" "+this.n13+" "+this.n14+" |\n| "+this.n21+" "+this.n22+" "+this.n23+" "+this.n24+" |\n| "+this.n31+" "+this.n32+" "+this.n33+" "+this.n34+" |\n| "+this.n41+" "+this.n42+" "+this.n43+" "+this.n44+" |"}};THREE.Matrix4.translationMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n14=a;d.n24=b;d.n34=g;return d};
+THREE.Matrix4.scaleMatrix=function(a,b,g){var d=new THREE.Matrix4;d.n11=a;d.n22=b;d.n33=g;return d};THREE.Matrix4.rotationXMatrix=function(a){var b=new THREE.Matrix4;b.n22=b.n33=Math.cos(a);b.n32=Math.sin(a);b.n23=-b.n32;return b};THREE.Matrix4.rotationYMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n33=Math.cos(a);b.n13=Math.sin(a);b.n31=-b.n13;return b};THREE.Matrix4.rotationZMatrix=function(a){var b=new THREE.Matrix4;b.n11=b.n22=Math.cos(a);b.n21=Math.sin(a);b.n12=-b.n21;return b};
+THREE.Matrix4.rotationAxisAngleMatrix=function(a,b){var g=new THREE.Matrix4,d=Math.cos(b),h=Math.sin(b),k=1-d,p=a.x,j=a.y,n=a.z;g.n11=k*p*p+d;g.n12=k*p*j-h*n;g.n13=k*p*n+h*j;g.n21=k*p*j+h*n;g.n22=k*j*j+d;g.n23=k*j*n-h*p;g.n31=k*p*n-h*j;g.n32=k*j*n+h*p;g.n33=k*n*n+d;return g};
+THREE.Matrix4.makeInvert=function(a){var b=new THREE.Matrix4;b.n11=a.n23*a.n34*a.n42-a.n24*a.n33*a.n42+a.n24*a.n32*a.n43-a.n22*a.n34*a.n43-a.n23*a.n32*a.n44+a.n22*a.n33*a.n44;b.n12=a.n14*a.n33*a.n42-a.n13*a.n34*a.n42-a.n14*a.n32*a.n43+a.n12*a.n34*a.n43+a.n13*a.n32*a.n44-a.n12*a.n33*a.n44;b.n13=a.n13*a.n24*a.n42-a.n14*a.n23*a.n42+a.n14*a.n22*a.n43-a.n12*a.n24*a.n43-a.n13*a.n22*a.n44+a.n12*a.n23*a.n44;b.n14=a.n14*a.n23*a.n32-a.n13*a.n24*a.n32-a.n14*a.n22*a.n33+a.n12*a.n24*a.n33+a.n13*a.n22*a.n34-a.n12*
+a.n23*a.n34;b.n21=a.n24*a.n33*a.n41-a.n23*a.n34*a.n41-a.n24*a.n31*a.n43+a.n21*a.n34*a.n43+a.n23*a.n31*a.n44-a.n21*a.n33*a.n44;b.n22=a.n13*a.n34*a.n41-a.n14*a.n33*a.n41+a.n14*a.n31*a.n43-a.n11*a.n34*a.n43-a.n13*a.n31*a.n44+a.n11*a.n33*a.n44;b.n23=a.n14*a.n23*a.n41-a.n13*a.n24*a.n41-a.n14*a.n21*a.n43+a.n11*a.n24*a.n43+a.n13*a.n21*a.n44-a.n11*a.n23*a.n44;b.n24=a.n13*a.n24*a.n31-a.n14*a.n23*a.n31+a.n14*a.n21*a.n33-a.n11*a.n24*a.n33-a.n13*a.n21*a.n34+a.n11*a.n23*a.n34;b.n31=a.n22*a.n34*a.n41-a.n24*a.n32*
+a.n41+a.n24*a.n31*a.n42-a.n21*a.n34*a.n42-a.n22*a.n31*a.n44+a.n21*a.n32*a.n44;b.n32=a.n14*a.n32*a.n41-a.n12*a.n34*a.n41-a.n14*a.n31*a.n42+a.n11*a.n34*a.n42+a.n12*a.n31*a.n44-a.n11*a.n32*a.n44;b.n33=a.n13*a.n24*a.n41-a.n14*a.n22*a.n41+a.n14*a.n21*a.n42-a.n11*a.n24*a.n42-a.n12*a.n21*a.n44+a.n11*a.n22*a.n44;b.n34=a.n14*a.n22*a.n31-a.n12*a.n24*a.n31-a.n14*a.n21*a.n32+a.n11*a.n24*a.n32+a.n12*a.n21*a.n34-a.n11*a.n22*a.n34;b.n41=a.n23*a.n32*a.n41-a.n22*a.n33*a.n41-a.n23*a.n31*a.n42+a.n21*a.n33*a.n42+a.n22*
+a.n31*a.n43-a.n21*a.n32*a.n43;b.n42=a.n12*a.n33*a.n41-a.n13*a.n32*a.n41+a.n13*a.n31*a.n42-a.n11*a.n33*a.n42-a.n12*a.n31*a.n43+a.n11*a.n32*a.n43;b.n43=a.n13*a.n22*a.n41-a.n12*a.n23*a.n41-a.n13*a.n21*a.n42+a.n11*a.n23*a.n42+a.n12*a.n21*a.n43-a.n11*a.n22*a.n43;b.n44=a.n12*a.n23*a.n31-a.n13*a.n22*a.n31+a.n13*a.n21*a.n32-a.n11*a.n23*a.n32-a.n12*a.n21*a.n33+a.n11*a.n22*a.n33;b.multiplyScalar(1/a.determinant());return b};
+THREE.Matrix4.makeInvert3x3=function(a){var b=a.flatten();a=new THREE.Matrix3;var g=b[10]*b[5]-b[6]*b[9],d=-b[10]*b[1]+b[2]*b[9],h=b[6]*b[1]-b[2]*b[5],k=-b[10]*b[4]+b[6]*b[8],p=b[10]*b[0]-b[2]*b[8],j=-b[6]*b[0]+b[2]*b[4],n=b[9]*b[4]-b[5]*b[8],c=-b[9]*b[0]+b[1]*b[8],E=b[5]*b[0]-b[1]*b[4];b=b[0]*g+b[1]*k+b[2]*n;if(b==0)throw"matrix not invertible";b=1/b;a.m[0]=b*g;a.m[1]=b*d;a.m[2]=b*h;a.m[3]=b*k;a.m[4]=b*p;a.m[5]=b*j;a.m[6]=b*n;a.m[7]=b*c;a.m[8]=b*E;return a};
+THREE.Matrix4.makeFrustum=function(a,b,g,d,h,k){var p,j,n;p=new THREE.Matrix4;j=2*h/(b-a);n=2*h/(d-g);a=(b+a)/(b-a);g=(d+g)/(d-g);d=-(k+h)/(k-h);h=-2*k*h/(k-h);p.n11=j;p.n12=0;p.n13=a;p.n14=0;p.n21=0;p.n22=n;p.n23=g;p.n24=0;p.n31=0;p.n32=0;p.n33=d;p.n34=h;p.n41=0;p.n42=0;p.n43=-1;p.n44=0;return p};THREE.Matrix4.makePerspective=function(a,b,g,d){var h;a=g*Math.tan(a*Math.PI/360);h=-a;return THREE.Matrix4.makeFrustum(h*b,a*b,h,a,g,d)};
+THREE.Matrix4.makeOrtho=function(a,b,g,d,h,k){var p,j,n,c;p=new THREE.Matrix4;j=b-a;n=g-d;c=k-h;a=(b+a)/j;g=(g+d)/n;h=(k+h)/c;p.n11=2/j;p.n12=0;p.n13=0;p.n14=-a;p.n21=0;p.n22=2/n;p.n23=0;p.n24=-g;p.n31=0;p.n32=0;p.n33=-2/c;p.n34=-h;p.n41=0;p.n42=0;p.n43=0;p.n44=1;return p};
+THREE.Vertex=function(a,b){this.position=a||new THREE.Vector3;this.positionWorld=new THREE.Vector3;this.positionScreen=new THREE.Vector4;this.normal=b||new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.normalScreen=new THREE.Vector3;this.tangent=new THREE.Vector4;this.__visible=true};THREE.Vertex.prototype={toString:function(){return"THREE.Vertex ( position: "+this.position+", normal: "+this.normal+" )"}};
+THREE.Face3=function(a,b,g,d,h){this.a=a;this.b=b;this.c=g;this.centroid=new THREE.Vector3;this.normal=d instanceof THREE.Vector3?d:new THREE.Vector3;this.vertexNormals=d instanceof Array?d:[];this.material=h instanceof Array?h:[h]};THREE.Face3.prototype={toString:function(){return"THREE.Face3 ( "+this.a+", "+this.b+", "+this.c+" )"}};
+THREE.Face4=function(a,b,g,d,h,k){this.a=a;this.b=b;this.c=g;this.d=d;this.centroid=new THREE.Vector3;this.normal=h instanceof THREE.Vector3?h:new THREE.Vector3;this.vertexNormals=h instanceof Array?h:[];this.material=k instanceof Array?k:[k]};THREE.Face4.prototype={toString:function(){return"THREE.Face4 ( "+this.a+", "+this.b+", "+this.c+" "+this.d+" )"}};THREE.UV=function(a,b){this.u=a||0;this.v=b||0};
+THREE.UV.prototype={copy:function(a){this.u=a.u;this.v=a.v},toString:function(){return"THREE.UV ("+this.u+", "+this.v+")"}};THREE.Geometry=function(){this.vertices=[];this.faces=[];this.uvs=[];this.boundingSphere=this.boundingBox=null;this.geometryChunks={};this.hasTangents=false};
+THREE.Geometry.prototype={computeCentroids:function(){var a,b,g;a=0;for(b=this.faces.length;a<b;a++){g=this.faces[a];g.centroid.set(0,0,0);if(g instanceof THREE.Face3){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);g.centroid.divideScalar(3)}else if(g instanceof THREE.Face4){g.centroid.addSelf(this.vertices[g.a].position);g.centroid.addSelf(this.vertices[g.b].position);g.centroid.addSelf(this.vertices[g.c].position);
+g.centroid.addSelf(this.vertices[g.d].position);g.centroid.divideScalar(4)}}},computeFaceNormals:function(a){var b,g,d,h,k,p,j=new THREE.Vector3,n=new THREE.Vector3;d=0;for(h=this.vertices.length;d<h;d++){k=this.vertices[d];k.normal.set(0,0,0)}d=0;for(h=this.faces.length;d<h;d++){k=this.faces[d];if(a&&k.vertexNormals.length){j.set(0,0,0);b=0;for(g=k.normal.length;b<g;b++)j.addSelf(k.vertexNormals[b]);j.divideScalar(3)}else{b=this.vertices[k.a];g=this.vertices[k.b];p=this.vertices[k.c];j.sub(p.position,
+g.position);n.sub(b.position,g.position);j.crossSelf(n)}j.isZero()||j.normalize();k.normal.copy(j)}},computeVertexNormals:function(){var a,b=[],g,d;a=0;for(vl=this.vertices.length;a<vl;a++)b[a]=new THREE.Vector3;a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal)}else if(d instanceof THREE.Face4){b[d.a].addSelf(d.normal);b[d.b].addSelf(d.normal);b[d.c].addSelf(d.normal);b[d.d].addSelf(d.normal)}}a=
+0;for(vl=this.vertices.length;a<vl;a++)b[a].normalize();a=0;for(g=this.faces.length;a<g;a++){d=this.faces[a];if(d instanceof THREE.Face3){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone()}else if(d instanceof THREE.Face4){d.vertexNormals[0]=b[d.a].clone();d.vertexNormals[1]=b[d.b].clone();d.vertexNormals[2]=b[d.c].clone();d.vertexNormals[3]=b[d.d].clone()}}},computeTangents:function(){function a(u,v,B,Q){k=u.vertices[v].position;p=u.vertices[B].position;
+j=u.vertices[Q].position;n=h[0];c=h[1];E=h[2];D=p.x-k.x;y=j.x-k.x;w=p.y-k.y;J=j.y-k.y;O=p.z-k.z;M=j.z-k.z;q=c.u-n.u;P=E.u-n.u;F=c.v-n.v;K=E.v-n.v;f=1/(q*K-P*F);m.set((K*D-F*y)*f,(K*w-F*J)*f,(K*O-F*M)*f);i.set((q*y-P*D)*f,(q*J-P*w)*f,(q*M-P*O)*f);e[v].addSelf(m);e[B].addSelf(m);e[Q].addSelf(m);o[v].addSelf(i);o[B].addSelf(i);o[Q].addSelf(i)}var b,g,d,h,k,p,j,n,c,E,D,y,w,J,O,M,q,P,F,K,f,l,e=[],o=[],m=new THREE.Vector3,i=new THREE.Vector3,x=new THREE.Vector3,r=new THREE.Vector3;l=new THREE.Vector3;b=
+0;for(g=this.vertices.length;b<g;b++){e[b]=new THREE.Vector3;o[b]=new THREE.Vector3}b=0;for(g=this.faces.length;b<g;b++){d=this.faces[b];h=this.uvs[b];if(d instanceof THREE.Face3){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);this.vertices[d.c].normal.copy(d.vertexNormals[2])}else if(d instanceof THREE.Face4){a(this,d.a,d.b,d.c);this.vertices[d.a].normal.copy(d.vertexNormals[0]);this.vertices[d.b].normal.copy(d.vertexNormals[1]);
+this.vertices[d.c].normal.copy(d.vertexNormals[2]);this.vertices[d.d].normal.copy(d.vertexNormals[3])}}b=0;for(g=this.vertices.length;b<g;b++){l.copy(this.vertices[b].normal);d=e[b];x.copy(d);x.subSelf(l.multiplyScalar(l.dot(d))).normalize();r.cross(this.vertices[b].normal,d);test=r.dot(o[b]);d=test<0?-1:1;this.vertices[b].tangent.set(x.x,x.y,x.z,d)}this.hasTangents=true},computeBoundingBox:function(){var a;if(this.vertices.length>0){this.bbox={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 b=1,g=this.vertices.length;b<g;b++){a=this.vertices[b];if(a.position.x<this.bbox.x[0])this.bbox.x[0]=a.position.x;else if(a.position.x>this.bbox.x[1])this.bbox.x[1]=a.position.x;if(a.position.y<this.bbox.y[0])this.bbox.y[0]=a.position.y;else if(a.position.y>this.bbox.y[1])this.bbox.y[1]=a.position.y;if(a.position.z<this.bbox.z[0])this.bbox.z[0]=a.position.z;else if(a.position.z>
+this.bbox.z[1])this.bbox.z[1]=a.position.z}}},computeBoundingSphere:function(){for(var a=this.boundingSphere===null?0:this.boundingSphere.radius,b=0,g=this.vertices.length;b<g;b++)a=Math.max(a,this.vertices[b].position.length());this.boundingSphere={radius:a}},sortFacesByMaterial:function(){function a(E){var D=[];b=0;for(g=E.length;b<g;b++)E[b]==undefined?D.push("undefined"):D.push(E[b].toString());return D.join("_")}var b,g,d,h,k,p,j,n,c={};d=0;for(h=this.faces.length;d<h;d++){k=this.faces[d];p=
+k.material;j=a(p);if(c[j]==undefined)c[j]={hash:j,counter:0};n=c[j].hash+"_"+c[j].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:p,vertices:0};k=k instanceof THREE.Face3?3:4;if(this.geometryChunks[n].vertices+k>65535){c[j].counter+=1;n=c[j].hash+"_"+c[j].counter;if(this.geometryChunks[n]==undefined)this.geometryChunks[n]={faces:[],material:p,vertices:0}}this.geometryChunks[n].faces.push(d);this.geometryChunks[n].vertices+=k}},toString:function(){return"THREE.Geometry ( vertices: "+
+this.vertices+", faces: "+this.faces+", uvs: "+this.uvs+" )"}};
+THREE.Camera=function(a,b,g,d){this.position=new THREE.Vector3;this.target={position:new THREE.Vector3};this.up=new THREE.Vector3(0,1,0);this.matrix=new THREE.Matrix4;this.projectionMatrix=THREE.Matrix4.makePerspective(a,b,g,d);this.autoUpdateMatrix=true;this.translateX=function(h){h=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(h);h.cross(h.clone(),this.up);this.position.addSelf(h);this.target.position.addSelf(h)};this.translateZ=function(h){h=this.target.position.clone().subSelf(this.position).normalize().multiplyScalar(h);
+this.position.subSelf(h);this.target.position.subSelf(h)};this.updateMatrix=function(){this.matrix.lookAt(this.position,this.target.position,this.up)};this.toString=function(){return"THREE.Camera ( "+this.position+", "+this.target.position+" )"}};THREE.Light=function(a){this.color=new THREE.Color(a)};THREE.AmbientLight=function(a){THREE.Light.call(this,a)};THREE.AmbientLight.prototype=new THREE.Light;THREE.AmbientLight.prototype.constructor=THREE.AmbientLight;
+THREE.DirectionalLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3(0,1,0);this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.DirectionalLight;THREE.PointLight=function(a,b){THREE.Light.call(this,a);this.position=new THREE.Vector3;this.intensity=b||1};THREE.DirectionalLight.prototype=new THREE.Light;THREE.DirectionalLight.prototype.constructor=THREE.PointLight;
+THREE.Object3D=function(){this.id=THREE.Object3DCounter.value++;this.position=new THREE.Vector3;this.rotation=new THREE.Vector3;this.scale=new THREE.Vector3(1,1,1);this.matrix=new THREE.Matrix4;this.translationMatrix=new THREE.Matrix4;this.rotationMatrix=new THREE.Matrix4;this.scaleMatrix=new THREE.Matrix4;this.screen=new THREE.Vector3;this.autoUpdateMatrix=this.visible=true;this.updateMatrix=function(){this.matrixPosition=THREE.Matrix4.translationMatrix(this.position.x,this.position.y,this.position.z);
+this.rotationMatrix=THREE.Matrix4.rotationXMatrix(this.rotation.x);this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationYMatrix(this.rotation.y));this.rotationMatrix.multiplySelf(THREE.Matrix4.rotationZMatrix(this.rotation.z));this.scaleMatrix=THREE.Matrix4.scaleMatrix(this.scale.x,this.scale.y,this.scale.z);this.matrix.copy(this.matrixPosition);this.matrix.multiplySelf(this.rotationMatrix);this.matrix.multiplySelf(this.scaleMatrix)}};THREE.Object3DCounter={value:0};
+THREE.Particle=function(a){THREE.Object3D.call(this);this.material=a instanceof Array?a:[a];this.autoUpdateMatrix=false};THREE.Particle.prototype=new THREE.Object3D;THREE.Particle.prototype.constructor=THREE.Particle;THREE.Line=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b]};THREE.Line.prototype=new THREE.Object3D;THREE.Line.prototype.constructor=THREE.Line;
+THREE.Mesh=function(a,b){THREE.Object3D.call(this);this.geometry=a;this.material=b instanceof Array?b:[b];this.overdraw=this.doubleSided=this.flipSided=false;this.geometry.boundingSphere||this.geometry.computeBoundingSphere()};THREE.Mesh.prototype=new THREE.Object3D;THREE.Mesh.prototype.constructor=THREE.Mesh;THREE.FlatShading=0;THREE.SmoothShading=1;THREE.NormalBlending=0;THREE.AdditiveBlending=1;THREE.SubtractiveBlending=2;
+THREE.LineBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;this.linewidth=1;this.linejoin=this.linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending;if(a.linewidth!==undefined)this.linewidth=a.linewidth;if(a.linecap!==undefined)this.linecap=a.linecap;if(a.linejoin!==undefined)this.linejoin=a.linejoin}this.toString=function(){return"THREE.LineBasicMaterial (<br/>color: "+
+this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>linewidth: "+this.linewidth+"<br/>linecap: "+this.linecap+"<br/>linejoin: "+this.linejoin+"<br/>)"}};
+THREE.MeshBasicMaterial=function(a){this.id=THREE.MeshBasicMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
+a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
+a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshBasicMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>blending: "+
+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshBasicMaterialCounter={value:0};
+THREE.MeshLambertMaterial=function(a){this.id=THREE.MeshLambertMaterialCounter.value++;this.color=new THREE.Color(16777215);this.env_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=
+a.map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=
+a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshLambertMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+
+this.shading+"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/> )"}};THREE.MeshLambertMaterialCounter={value:0};
+THREE.MeshPhongMaterial=function(a){this.id=THREE.MeshPhongMaterialCounter.value++;this.color=new THREE.Color(16777215);this.ambient=new THREE.Color(328965);this.specular=new THREE.Color(1118481);this.shininess=30;this.env_map=this.specular_map=this.map=null;this.combine=THREE.MultiplyOperation;this.reflectivity=1;this.refraction_ratio=0.98;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap=
+"round";if(a){if(a.color!==undefined)this.color=new THREE.Color(a.color);if(a.ambient!==undefined)this.ambient=new THREE.Color(a.ambient);if(a.specular!==undefined)this.specular=new THREE.Color(a.specular);if(a.shininess!==undefined)this.shininess=a.shininess;if(a.map!==undefined)this.map=a.map;if(a.specular_map!==undefined)this.specular_map=a.specular_map;if(a.env_map!==undefined)this.env_map=a.env_map;if(a.combine!==undefined)this.combine=a.combine;if(a.reflectivity!==undefined)this.reflectivity=
+a.reflectivity;if(a.refraction_ratio!==undefined)this.refraction_ratio=a.refraction_ratio;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=
+a.wireframe_linejoin}this.toString=function(){return"THREE.MeshPhongMaterial (<br/>id: "+this.id+"<br/>color: "+this.color+"<br/>ambient: "+this.ambient+"<br/>specular: "+this.specular+"<br/>shininess: "+this.shininess+"<br/>map: "+this.map+"<br/>specular_map: "+this.specular_map+"<br/>env_map: "+this.env_map+"<br/>combine: "+this.combine+"<br/>reflectivity: "+this.reflectivity+"<br/>refraction_ratio: "+this.refraction_ratio+"<br/>opacity: "+this.opacity+"<br/>shading: "+this.shading+"<br/>wireframe: "+
+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>"+ +")"}};THREE.MeshPhongMaterialCounter={value:0};
+THREE.MeshDepthMaterial=function(a){this.near=1;this.far=1E3;this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){if(a.near!==undefined)this.near=a.near;if(a.far!==undefined)this.far=a.far;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.__2near=2*this.near;this.__farPlusNear=this.far+this.near;this.__farMinusNear=
+this.far-this.near;this.toString=function(){return"THREE.MeshDepthMaterial"}};THREE.MeshNormalMaterial=function(a){this.opacity=1;this.shading=THREE.FlatShading;this.blending=THREE.NormalBlending;if(a){if(a.opacity!==undefined)this.opacity=a.opacity;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.MeshNormalMaterial"}};THREE.MeshFaceMaterial=function(){this.toString=function(){return"THREE.MeshFaceMaterial"}};
+THREE.MeshShaderMaterial=function(a){this.id=THREE.MeshShaderMaterialCounter.value++;this.vertex_shader=this.fragment_shader="void main() {}";this.uniforms={};this.opacity=1;this.shading=THREE.SmoothShading;this.blending=THREE.NormalBlending;this.wireframe=false;this.wireframe_linewidth=1;this.wireframe_linejoin=this.wireframe_linecap="round";if(a){if(a.fragment_shader!==undefined)this.fragment_shader=a.fragment_shader;if(a.vertex_shader!==undefined)this.vertex_shader=a.vertex_shader;if(a.uniforms!==
+undefined)this.uniforms=a.uniforms;if(a.shading!==undefined)this.shading=a.shading;if(a.blending!==undefined)this.blending=a.blending;if(a.wireframe!==undefined)this.wireframe=a.wireframe;if(a.wireframe_linewidth!==undefined)this.wireframe_linewidth=a.wireframe_linewidth;if(a.wireframe_linecap!==undefined)this.wireframe_linecap=a.wireframe_linecap;if(a.wireframe_linejoin!==undefined)this.wireframe_linejoin=a.wireframe_linejoin}this.toString=function(){return"THREE.MeshShaderMaterial (<br/>id: "+this.id+
+"<br/>blending: "+this.blending+"<br/>wireframe: "+this.wireframe+"<br/>wireframe_linewidth: "+this.wireframe_linewidth+"<br/>wireframe_linecap: "+this.wireframe_linecap+"<br/>wireframe_linejoin: "+this.wireframe_linejoin+"<br/>)"}};THREE.MeshShaderMaterialCounter={value:0};
+THREE.ParticleBasicMaterial=function(a){this.color=new THREE.Color(16777215);this.map=null;this.opacity=1;this.blending=THREE.NormalBlending;this.offset=new THREE.Vector2;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.map!==undefined)this.map=a.map;if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleBasicMaterial (<br/>color: "+this.color+"<br/>map: "+this.map+"<br/>opacity: "+this.opacity+"<br/>blending: "+
+this.blending+"<br/>)"}};THREE.ParticleCircleMaterial=function(a){this.color=new THREE.Color(16777215);this.opacity=1;this.blending=THREE.NormalBlending;if(a){a.color!==undefined&&this.color.setHex(a.color);if(a.opacity!==undefined)this.opacity=a.opacity;if(a.blending!==undefined)this.blending=a.blending}this.toString=function(){return"THREE.ParticleCircleMaterial (<br/>color: "+this.color+"<br/>opacity: "+this.opacity+"<br/>blending: "+this.blending+"<br/>)"}};
+THREE.ParticleDOMMaterial=function(a){this.domElement=a;this.toString=function(){return"THREE.ParticleDOMMaterial ( domElement: "+this.domElement+" )"}};
+THREE.Texture=function(a,b,g,d,h,k){this.image=a;this.mapping=b!==undefined?b:new THREE.UVMapping;this.wrap_s=g!==undefined?g:THREE.ClampToEdgeWrapping;this.wrap_t=d!==undefined?d:THREE.ClampToEdgeWrapping;this.mag_filter=h!==undefined?h:THREE.LinearFilter;this.min_filter=k!==undefined?k:THREE.LinearMipMapLinearFilter;this.toString=function(){return"THREE.Texture (<br/>image: "+this.image+"<br/>wrap_s: "+this.wrap_s+"<br/>wrap_t: "+this.wrap_t+"<br/>mag_filter: "+this.mag_filter+"<br/>min_filter: "+
+this.min_filter+"<br/>)"}};THREE.MultiplyOperation=0;THREE.MixOperation=1;THREE.RepeatWrapping=0;THREE.ClampToEdgeWrapping=1;THREE.MirroredRepeatWrapping=2;THREE.NearestFilter=3;THREE.NearestMipMapNearestFilter=4;THREE.NearestMipMapLinearFilter=5;THREE.LinearFilter=6;THREE.LinearMipMapNearestFilter=7;THREE.LinearMipMapLinearFilter=8;THREE.CubeReflectionMapping=function(){};THREE.CubeRefractionMapping=function(){};THREE.LatitudeReflectionMapping=function(){};THREE.LatitudeRefractionMapping=function(){};
+THREE.SphericalReflectionMapping=function(){};THREE.SphericalRefractionMapping=function(){};THREE.UVMapping=function(){};
+THREE.Scene=function(){this.objects=[];this.lights=[];this.addObject=function(a){this.objects.indexOf(a)===-1&&this.objects.push(a)};this.removeObject=function(a){a=this.objects.indexOf(a);a!==-1&&this.objects.splice(a,1)};this.addLight=function(a){this.lights.indexOf(a)===-1&&this.lights.push(a)};this.removeLight=function(a){a=this.lights.indexOf(a);a!==-1&&this.lights.splice(a,1)};this.toString=function(){return"THREE.Scene ( "+this.objects+" )"}};
+THREE.Projector=function(){function a(e,o){return o.z-e.z}function b(e,o){var m=0,i=1,x=e.z+e.w,r=o.z+o.w,u=-e.z+e.w,v=-o.z+o.w;if(x>=0&&r>=0&&u>=0&&v>=0)return true;else if(x<0&&r<0||u<0&&v<0)return false;else{if(x<0)m=Math.max(m,x/(x-r));else if(r<0)i=Math.min(i,x/(x-r));if(u<0)m=Math.max(m,u/(u-v));else if(v<0)i=Math.min(i,u/(u-v));if(i<m)return false;else{e.lerpSelf(o,m);o.lerpSelf(e,1-i);return true}}}var g,d,h=[],k,p,j,n=[],c,E,D=[],y,w,J=[],O=new THREE.Vector4,M=new THREE.Vector4,q=new THREE.Matrix4,
+P=new THREE.Matrix4,F=[],K=new THREE.Vector4,f=new THREE.Vector4,l;this.projectObjects=function(e,o,m){var i=[],x,r;d=0;q.multiply(o.projectionMatrix,o.matrix);F[0]=new THREE.Vector4(q.n41-q.n11,q.n42-q.n12,q.n43-q.n13,q.n44-q.n14);F[1]=new THREE.Vector4(q.n41+q.n11,q.n42+q.n12,q.n43+q.n13,q.n44+q.n14);F[2]=new THREE.Vector4(q.n41+q.n21,q.n42+q.n22,q.n43+q.n23,q.n44+q.n24);F[3]=new THREE.Vector4(q.n41-q.n21,q.n42-q.n22,q.n43-q.n23,q.n44-q.n24);F[4]=new THREE.Vector4(q.n41-q.n31,q.n42-q.n32,q.n43-
+q.n33,q.n44-q.n34);F[5]=new THREE.Vector4(q.n41+q.n31,q.n42+q.n32,q.n43+q.n33,q.n44+q.n34);o=0;for(x=F.length;o<x;o++){r=F[o];r.divideScalar(Math.sqrt(r.x*r.x+r.y*r.y+r.z*r.z))}x=e.objects;e=0;for(o=x.length;e<o;e++){r=x[e];var u;if(!(u=!r.visible)){a:{u=void 0;for(var v=r.position,B=-r.geometry.boundingSphere.radius*Math.max(r.scale.x,Math.max(r.scale.y,r.scale.z)),Q=0;Q<6;Q++){u=F[Q].x*v.x+F[Q].y*v.y+F[Q].z*v.z+F[Q].w;if(u<=B){u=false;break a}}u=true}u=!u}if(!u){g=h[d]=h[d]||new THREE.RenderableObject;
+O.copy(r.position);q.multiplyVector3(O);g.object=r;g.z=O.z;i.push(g);d++}}m&&i.sort(a);return i};this.projectScene=function(e,o,m){var i=[],x,r,u,v,B,Q,A,L,X,U,T,z,s,G,R,H;j=E=w=0;o.autoUpdateMatrix&&o.updateMatrix();q.multiply(o.projectionMatrix,o.matrix);Q=e.objects;e=0;for(x=Q.length;e<x;e++){A=Q[e];if(A.visible){A.autoUpdateMatrix&&A.updateMatrix();L=A.matrix;X=A.rotationMatrix;U=A.material;T=A.overdraw;if(A instanceof THREE.Mesh){z=A.geometry;s=z.vertices;r=0;for(u=s.length;r<u;r++){G=s[r];G.positionWorld.copy(G.position);
+L.multiplyVector3(G.positionWorld);v=G.positionScreen;v.copy(G.positionWorld);q.multiplyVector4(v);v.multiplyScalar(1/v.w);G.__visible=v.z>0&&v.z<1}z=z.faces;r=0;for(u=z.length;r<u;r++){G=z[r];if(G instanceof THREE.Face3){v=s[G.a];B=s[G.b];R=s[G.c];if(v.__visible&&B.__visible&&R.__visible)if(A.doubleSided||A.flipSided!=(R.positionScreen.x-v.positionScreen.x)*(B.positionScreen.y-v.positionScreen.y)-(R.positionScreen.y-v.positionScreen.y)*(B.positionScreen.x-v.positionScreen.x)<0){k=n[j]=n[j]||new THREE.RenderableFace3;
+k.v1.positionWorld.copy(v.positionWorld);k.v2.positionWorld.copy(B.positionWorld);k.v3.positionWorld.copy(R.positionWorld);k.v1.positionScreen.copy(v.positionScreen);k.v2.positionScreen.copy(B.positionScreen);k.v3.positionScreen.copy(R.positionScreen);k.normalWorld.copy(G.normal);X.multiplyVector3(k.normalWorld);k.centroidWorld.copy(G.centroid);L.multiplyVector3(k.centroidWorld);k.centroidScreen.copy(k.centroidWorld);q.multiplyVector3(k.centroidScreen);R=G.vertexNormals;l=k.vertexNormalsWorld;v=0;
+for(B=R.length;v<B;v++){H=l[v]=l[v]||new THREE.Vector3;H.copy(R[v]);X.multiplyVector3(H)}k.z=k.centroidScreen.z;k.meshMaterial=U;k.faceMaterial=G.material;k.overdraw=T;if(A.geometry.uvs[r]){k.uvs[0]=A.geometry.uvs[r][0];k.uvs[1]=A.geometry.uvs[r][1];k.uvs[2]=A.geometry.uvs[r][2]}i.push(k);j++}}else if(G instanceof THREE.Face4){v=s[G.a];B=s[G.b];R=s[G.c];H=s[G.d];if(v.__visible&&B.__visible&&R.__visible&&H.__visible)if(A.doubleSided||A.flipSided!=((H.positionScreen.x-v.positionScreen.x)*(B.positionScreen.y-
+v.positionScreen.y)-(H.positionScreen.y-v.positionScreen.y)*(B.positionScreen.x-v.positionScreen.x)<0||(B.positionScreen.x-R.positionScreen.x)*(H.positionScreen.y-R.positionScreen.y)-(B.positionScreen.y-R.positionScreen.y)*(H.positionScreen.x-R.positionScreen.x)<0)){k=n[j]=n[j]||new THREE.RenderableFace3;k.v1.positionWorld.copy(v.positionWorld);k.v2.positionWorld.copy(B.positionWorld);k.v3.positionWorld.copy(H.positionWorld);k.v1.positionScreen.copy(v.positionScreen);k.v2.positionScreen.copy(B.positionScreen);
+k.v3.positionScreen.copy(H.positionScreen);k.normalWorld.copy(G.normal);X.multiplyVector3(k.normalWorld);k.centroidWorld.copy(G.centroid);L.multiplyVector3(k.centroidWorld);k.centroidScreen.copy(k.centroidWorld);q.multiplyVector3(k.centroidScreen);k.z=k.centroidScreen.z;k.meshMaterial=U;k.faceMaterial=G.material;k.overdraw=T;if(A.geometry.uvs[r]){k.uvs[0]=A.geometry.uvs[r][0];k.uvs[1]=A.geometry.uvs[r][1];k.uvs[2]=A.geometry.uvs[r][3]}i.push(k);j++;p=n[j]=n[j]||new THREE.RenderableFace3;p.v1.positionWorld.copy(B.positionWorld);
+p.v2.positionWorld.copy(R.positionWorld);p.v3.positionWorld.copy(H.positionWorld);p.v1.positionScreen.copy(B.positionScreen);p.v2.positionScreen.copy(R.positionScreen);p.v3.positionScreen.copy(H.positionScreen);p.normalWorld.copy(k.normalWorld);p.centroidWorld.copy(k.centroidWorld);p.centroidScreen.copy(k.centroidScreen);p.z=p.centroidScreen.z;p.meshMaterial=U;p.faceMaterial=G.material;p.overdraw=T;if(A.geometry.uvs[r]){p.uvs[0]=A.geometry.uvs[r][1];p.uvs[1]=A.geometry.uvs[r][2];p.uvs[2]=A.geometry.uvs[r][3]}i.push(p);
+j++}}}}else if(A instanceof THREE.Line){P.multiply(q,L);s=A.geometry.vertices;G=s[0];G.positionScreen.copy(G.position);P.multiplyVector4(G.positionScreen);r=1;for(u=s.length;r<u;r++){v=s[r];v.positionScreen.copy(v.position);P.multiplyVector4(v.positionScreen);B=s[r-1];K.copy(v.positionScreen);f.copy(B.positionScreen);if(b(K,f)){K.multiplyScalar(1/K.w);f.multiplyScalar(1/f.w);c=D[E]=D[E]||new THREE.RenderableLine;c.v1.positionScreen.copy(K);c.v2.positionScreen.copy(f);c.z=Math.max(K.z,f.z);c.material=
+A.material;i.push(c);E++}}}else if(A instanceof THREE.Particle){M.set(A.position.x,A.position.y,A.position.z,1);q.multiplyVector4(M);M.z/=M.w;if(M.z>0&&M.z<1){y=J[w]=J[w]||new THREE.RenderableParticle;y.x=M.x/M.w;y.y=M.y/M.w;y.z=M.z;y.rotation=A.rotation.z;y.scale.x=A.scale.x*Math.abs(y.x-(M.x+o.projectionMatrix.n11)/(M.w+o.projectionMatrix.n14));y.scale.y=A.scale.y*Math.abs(y.y-(M.y+o.projectionMatrix.n22)/(M.w+o.projectionMatrix.n24));y.material=A.material;i.push(y);w++}}}}m&&i.sort(a);return i};
+this.unprojectVector=function(e,o){var m=new THREE.Matrix4;m.multiply(THREE.Matrix4.makeInvert(o.matrix),THREE.Matrix4.makeInvert(o.projectionMatrix));m.multiplyVector3(e);return e}};
+THREE.DOMRenderer=function(){THREE.Renderer.call(this);var a=null,b=new THREE.Projector,g,d,h,k;this.domElement=document.createElement("div");this.setSize=function(p,j){g=p;d=j;h=g/2;k=d/2};this.render=function(p,j){var n,c,E,D,y,w,J,O;a=b.projectScene(p,j);n=0;for(c=a.length;n<c;n++){y=a[n];if(y instanceof THREE.RenderableParticle){J=y.x*h+h;O=y.y*k+k;E=0;for(D=y.material.length;E<D;E++){w=y.material[E];if(w instanceof THREE.ParticleDOMMaterial){w=w.domElement;w.style.left=J+"px";w.style.top=O+"px"}}}}}};
+THREE.CanvasRenderer=function(){var a=null,b=new THREE.Projector,g=document.createElement("canvas"),d,h,k,p,j=g.getContext("2d"),n=1,c=0,E=null,D=null,y=1,w,J,O,M,q,P,F,K,f,l=new THREE.Color,e=new THREE.Color,o=new THREE.Color,m=new THREE.Color,i=new THREE.Color,x,r,u,v,B,Q,A,L,X,U,T=new THREE.Rectangle,z=new THREE.Rectangle,s=new THREE.Rectangle,G=false,R=new THREE.Color,H=new THREE.Color,V=new THREE.Color,aa=new THREE.Color,Ja=Math.PI*2,Y=new THREE.Vector3,na,oa,Aa,da,pa,ta,la=16;na=document.createElement("canvas");
+na.width=na.height=2;oa=na.getContext("2d");oa.fillStyle="rgba(0,0,0,1)";oa.fillRect(0,0,2,2);Aa=oa.getImageData(0,0,2,2);da=Aa.data;pa=document.createElement("canvas");pa.width=pa.height=la;ta=pa.getContext("2d");ta.translate(-la/2,-la/2);ta.scale(la,la);la--;this.domElement=g;this.sortElements=this.sortObjects=this.autoClear=true;this.setSize=function(ga,ua){d=ga;h=ua;k=d/2;p=h/2;g.width=d;g.height=h;T.set(-k,-p,k,p)};this.clear=function(){if(!z.isEmpty()){z.inflate(1);z.minSelf(T);j.clearRect(z.getX(),
+z.getY(),z.getWidth(),z.getHeight());z.empty()}};this.render=function(ga,ua){function Ka(t){var S,N,C,I=t.lights;H.setRGB(0,0,0);V.setRGB(0,0,0);aa.setRGB(0,0,0);t=0;for(S=I.length;t<S;t++){N=I[t];C=N.color;if(N instanceof THREE.AmbientLight){H.r+=C.r;H.g+=C.g;H.b+=C.b}else if(N instanceof THREE.DirectionalLight){V.r+=C.r;V.g+=C.g;V.b+=C.b}else if(N instanceof THREE.PointLight){aa.r+=C.r;aa.g+=C.g;aa.b+=C.b}}}function va(t,S,N,C){var I,W,$,ba,ca=t.lights;t=0;for(I=ca.length;t<I;t++){W=ca[t];$=W.color;
+ba=W.intensity;if(W instanceof THREE.DirectionalLight){W=N.dot(W.position)*ba;if(W>0){C.r+=$.r*W;C.g+=$.g*W;C.b+=$.b*W}}else if(W instanceof THREE.PointLight){Y.sub(W.position,S);Y.normalize();W=N.dot(Y)*ba;if(W>0){C.r+=$.r*W;C.g+=$.g*W;C.b+=$.b*W}}}}function La(t,S,N){if(N.opacity!=0){Ba(N.opacity);wa(N.blending);var C,I,W,$,ba,ca;if(N instanceof THREE.ParticleBasicMaterial){if(N.map){$=N.map;ba=$.width>>1;ca=$.height>>1;I=S.scale.x*k;W=S.scale.y*p;N=I*ba;C=W*ca;s.set(t.x-N,t.y-C,t.x+N,t.y+C);if(!T.instersects(s))return;
+j.save();j.translate(t.x,t.y);j.rotate(-S.rotation);j.scale(I,-W);j.translate(-ba,-ca);j.drawImage($,0,0);j.restore()}j.beginPath();j.moveTo(t.x-10,t.y);j.lineTo(t.x+10,t.y);j.moveTo(t.x,t.y-10);j.lineTo(t.x,t.y+10);j.closePath();j.strokeStyle="rgb(255,255,0)";j.stroke()}else if(N instanceof THREE.ParticleCircleMaterial){if(G){R.r=H.r+V.r+aa.r;R.g=H.g+V.g+aa.g;R.b=H.b+V.b+aa.b;l.r=N.color.r*R.r;l.g=N.color.g*R.g;l.b=N.color.b*R.b;l.updateStyleString()}else l.__styleString=N.color.__styleString;N=
+S.scale.x*k;C=S.scale.y*p;s.set(t.x-N,t.y-C,t.x+N,t.y+C);if(T.instersects(s)){I=l.__styleString;if(D!=I)j.fillStyle=D=I;j.save();j.translate(t.x,t.y);j.rotate(-S.rotation);j.scale(N,C);j.beginPath();j.arc(0,0,1,0,Ja,true);j.closePath();j.fill();j.restore()}}}}function Ma(t,S,N,C){if(C.opacity!=0){Ba(C.opacity);wa(C.blending);j.beginPath();j.moveTo(t.positionScreen.x,t.positionScreen.y);j.lineTo(S.positionScreen.x,S.positionScreen.y);j.closePath();if(C instanceof THREE.LineBasicMaterial){l.__styleString=
+C.color.__styleString;t=C.linewidth;if(y!=t)j.lineWidth=y=t;t=l.__styleString;if(E!=t)j.strokeStyle=E=t;j.stroke();s.inflate(C.linewidth*2)}}}function Fa(t,S,N,C,I,W){if(I.opacity!=0){Ba(I.opacity);wa(I.blending);M=t.positionScreen.x;q=t.positionScreen.y;P=S.positionScreen.x;F=S.positionScreen.y;K=N.positionScreen.x;f=N.positionScreen.y;j.beginPath();j.moveTo(M,q);j.lineTo(P,F);j.lineTo(K,f);j.lineTo(M,q);j.closePath();if(I instanceof THREE.MeshBasicMaterial)if(I.map)I.map.image.loaded&&I.map.mapping instanceof
+THREE.UVMapping&&qa(M,q,P,F,K,f,I.map.image,C.uvs[0].u,C.uvs[0].v,C.uvs[1].u,C.uvs[1].v,C.uvs[2].u,C.uvs[2].v);else if(I.env_map){if(I.env_map.image.loaded)if(I.env_map.mapping instanceof THREE.SphericalReflectionMapping){t=ua.matrix;Y.copy(C.vertexNormalsWorld[0]);B=(Y.x*t.n11+Y.y*t.n12+Y.z*t.n13)*0.5+0.5;Q=-(Y.x*t.n21+Y.y*t.n22+Y.z*t.n23)*0.5+0.5;Y.copy(C.vertexNormalsWorld[1]);A=(Y.x*t.n11+Y.y*t.n12+Y.z*t.n13)*0.5+0.5;L=-(Y.x*t.n21+Y.y*t.n22+Y.z*t.n23)*0.5+0.5;Y.copy(C.vertexNormalsWorld[2]);X=
+(Y.x*t.n11+Y.y*t.n12+Y.z*t.n13)*0.5+0.5;U=-(Y.x*t.n21+Y.y*t.n22+Y.z*t.n23)*0.5+0.5;qa(M,q,P,F,K,f,I.env_map.image,B,Q,A,L,X,U)}}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):ya(I.color.__styleString);else if(I instanceof THREE.MeshLambertMaterial){if(I.map&&!I.wireframe){I.map.mapping instanceof THREE.UVMapping&&qa(M,q,P,F,K,f,I.map.image,C.uvs[0].u,C.uvs[0].v,C.uvs[1].u,C.uvs[1].v,C.uvs[2].u,C.uvs[2].v);wa(THREE.SubtractiveBlending)}if(G)if(!I.wireframe&&I.shading==THREE.SmoothShading&&
+C.vertexNormalsWorld.length==3){e.r=o.r=m.r=H.r;e.g=o.g=m.g=H.g;e.b=o.b=m.b=H.b;va(W,C.v1.positionWorld,C.vertexNormalsWorld[0],e);va(W,C.v2.positionWorld,C.vertexNormalsWorld[1],o);va(W,C.v3.positionWorld,C.vertexNormalsWorld[2],m);i.r=(o.r+m.r)*0.5;i.g=(o.g+m.g)*0.5;i.b=(o.b+m.b)*0.5;v=Ga(e,o,m,i);qa(M,q,P,F,K,f,v,0,0,1,0,0,1)}else{R.r=H.r;R.g=H.g;R.b=H.b;va(W,C.centroidWorld,C.normalWorld,R);l.r=I.color.r*R.r;l.g=I.color.g*R.g;l.b=I.color.b*R.b;l.updateStyleString();I.wireframe?xa(l.__styleString,
+I.wireframe_linewidth):ya(l.__styleString)}else I.wireframe?xa(I.color.__styleString,I.wireframe_linewidth):ya(I.color.__styleString)}else if(I instanceof THREE.MeshDepthMaterial){x=I.__2near;r=I.__farPlusNear;u=I.__farMinusNear;e.r=e.g=e.b=1-x/(r-t.positionScreen.z*u);o.r=o.g=o.b=1-x/(r-S.positionScreen.z*u);m.r=m.g=m.b=1-x/(r-N.positionScreen.z*u);i.r=(o.r+m.r)*0.5;i.g=(o.g+m.g)*0.5;i.b=(o.b+m.b)*0.5;v=Ga(e,o,m,i);qa(M,q,P,F,K,f,v,0,0,1,0,0,1)}else if(I instanceof THREE.MeshNormalMaterial){l.r=
+Ca(C.normalWorld.x);l.g=Ca(C.normalWorld.y);l.b=Ca(C.normalWorld.z);l.updateStyleString();I.wireframe?xa(l.__styleString,I.wireframe_linewidth):ya(l.__styleString)}}}function xa(t,S){if(E!=t)j.strokeStyle=E=t;if(y!=S)j.lineWidth=y=S;j.stroke();s.inflate(S*2)}function ya(t){if(D!=t)j.fillStyle=D=t;j.fill()}function qa(t,S,N,C,I,W,$,ba,ca,ha,ea,ia,ra){var ka,ja;ka=$.width-1;ja=$.height-1;ba*=ka;ca*=ja;ha*=ka;ea*=ja;ia*=ka;ra*=ja;N-=t;C-=S;I-=t;W-=S;ha-=ba;ea-=ca;ia-=ba;ra-=ca;ja=1/(ha*ra-ia*ea);ka=
+(ra*N-ea*I)*ja;ea=(ra*C-ea*W)*ja;N=(ha*I-ia*N)*ja;C=(ha*W-ia*C)*ja;t=t-ka*ba-N*ca;S=S-ea*ba-C*ca;j.save();j.transform(ka,ea,N,C,t,S);j.clip();j.drawImage($,0,0);j.restore()}function Ba(t){if(n!=t)j.globalAlpha=n=t}function wa(t){if(c!=t){switch(t){case THREE.NormalBlending:j.globalCompositeOperation="source-over";break;case THREE.AdditiveBlending:j.globalCompositeOperation="lighter";break;case THREE.SubtractiveBlending:j.globalCompositeOperation="darker"}c=t}}function Ga(t,S,N,C){var I=~~(t.r*255),
+W=~~(t.g*255);t=~~(t.b*255);var $=~~(S.r*255),ba=~~(S.g*255);S=~~(S.b*255);var ca=~~(N.r*255),ha=~~(N.g*255);N=~~(N.b*255);var ea=~~(C.r*255),ia=~~(C.g*255);C=~~(C.b*255);da[0]=I<0?0:I>255?255:I;da[1]=W<0?0:W>255?255:W;da[2]=t<0?0:t>255?255:t;da[4]=$<0?0:$>255?255:$;da[5]=ba<0?0:ba>255?255:ba;da[6]=S<0?0:S>255?255:S;da[8]=ca<0?0:ca>255?255:ca;da[9]=ha<0?0:ha>255?255:ha;da[10]=N<0?0:N>255?255:N;da[12]=ea<0?0:ea>255?255:ea;da[13]=ia<0?0:ia>255?255:ia;da[14]=C<0?0:C>255?255:C;oa.putImageData(Aa,0,0);
+ta.drawImage(na,0,0);return pa}function Ca(t){t=(t+1)*0.5;return t<0?0:t>1?1:t}function Da(t,S){var N=S.x-t.x,C=S.y-t.y,I=1/Math.sqrt(N*N+C*C);N*=I;C*=I;S.x+=N;S.y+=C;t.x-=N;t.y-=C}var za,Ha,Z,fa,ma,Ea,Ia,sa;j.setTransform(1,0,0,-1,k,p);this.autoClear&&this.clear();a=b.projectScene(ga,ua,this.sortElements);j.fillStyle="rgba(0, 255, 255, 0.5)";j.fillRect(T.getX(),T.getY(),T.getWidth(),T.getHeight());(G=ga.lights.length>0)&&Ka(ga);za=0;for(Ha=a.length;za<Ha;za++){Z=a[za];s.empty();if(Z instanceof THREE.RenderableParticle){w=
+Z;w.x*=k;w.y*=p;fa=0;for(ma=Z.material.length;fa<ma;fa++)La(w,Z,Z.material[fa],ga)}else if(Z instanceof THREE.RenderableLine){w=Z.v1;J=Z.v2;w.positionScreen.x*=k;w.positionScreen.y*=p;J.positionScreen.x*=k;J.positionScreen.y*=p;s.addPoint(w.positionScreen.x,w.positionScreen.y);s.addPoint(J.positionScreen.x,J.positionScreen.y);if(T.instersects(s)){fa=0;for(ma=Z.material.length;fa<ma;)Ma(w,J,Z,Z.material[fa++],ga)}}else if(Z instanceof THREE.RenderableFace3){w=Z.v1;J=Z.v2;O=Z.v3;w.positionScreen.x*=
+k;w.positionScreen.y*=p;J.positionScreen.x*=k;J.positionScreen.y*=p;O.positionScreen.x*=k;O.positionScreen.y*=p;if(Z.overdraw){Da(w.positionScreen,J.positionScreen);Da(J.positionScreen,O.positionScreen);Da(O.positionScreen,w.positionScreen)}s.add3Points(w.positionScreen.x,w.positionScreen.y,J.positionScreen.x,J.positionScreen.y,O.positionScreen.x,O.positionScreen.y);if(T.instersects(s)){fa=0;for(ma=Z.meshMaterial.length;fa<ma;){sa=Z.meshMaterial[fa++];if(sa instanceof THREE.MeshFaceMaterial){Ea=0;
+for(Ia=Z.faceMaterial.length;Ea<Ia;)(sa=Z.faceMaterial[Ea++])&&Fa(w,J,O,Z,sa,ga)}else Fa(w,J,O,Z,sa,ga)}}}z.addRectangle(s)}j.lineWidth=1;j.strokeStyle="rgba( 255, 0, 0, 0.5 )";j.strokeRect(z.getX(),z.getY(),z.getWidth(),z.getHeight());j.setTransform(1,0,0,1,0,0)}};
+THREE.SVGRenderer=function(){function a(L,X,U){var T,z,s,G;T=0;for(z=L.lights.length;T<z;T++){s=L.lights[T];if(s instanceof THREE.DirectionalLight){G=X.normalWorld.dot(s.position)*s.intensity;if(G>0){U.r+=s.color.r*G;U.g+=s.color.g*G;U.b+=s.color.b*G}}else if(s instanceof THREE.PointLight){m.sub(s.position,X.centroidWorld);m.normalize();G=X.normalWorld.dot(m)*s.intensity;if(G>0){U.r+=s.color.r*G;U.g+=s.color.g*G;U.b+=s.color.b*G}}}}function b(L,X,U,T,z,s){u=d(v++);u.setAttribute("d","M "+L.positionScreen.x+
+" "+L.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+U.positionScreen.x+","+U.positionScreen.y+"z");if(z instanceof THREE.MeshBasicMaterial)F.__styleString=z.color.__styleString;else if(z instanceof THREE.MeshLambertMaterial)if(P){K.r=f.r;K.g=f.g;K.b=f.b;a(s,T,K);F.r=z.color.r*K.r;F.g=z.color.g*K.g;F.b=z.color.b*K.b;F.updateStyleString()}else F.__styleString=z.color.__styleString;else if(z instanceof THREE.MeshDepthMaterial){o=1-z.__2near/(z.__farPlusNear-T.z*z.__farMinusNear);
+F.setRGB(o,o,o)}else z instanceof THREE.MeshNormalMaterial&&F.setRGB(h(T.normalWorld.x),h(T.normalWorld.y),h(T.normalWorld.z));z.wireframe?u.setAttribute("style","fill: none; stroke: "+F.__styleString+"; stroke-width: "+z.wireframe_linewidth+"; stroke-opacity: "+z.opacity+"; stroke-linecap: "+z.wireframe_linecap+"; stroke-linejoin: "+z.wireframe_linejoin):u.setAttribute("style","fill: "+F.__styleString+"; fill-opacity: "+z.opacity);j.appendChild(u)}function g(L,X,U,T,z,s,G){u=d(v++);u.setAttribute("d",
+"M "+L.positionScreen.x+" "+L.positionScreen.y+" L "+X.positionScreen.x+" "+X.positionScreen.y+" L "+U.positionScreen.x+","+U.positionScreen.y+" L "+T.positionScreen.x+","+T.positionScreen.y+"z");if(s instanceof THREE.MeshBasicMaterial)F.__styleString=s.color.__styleString;else if(s instanceof THREE.MeshLambertMaterial)if(P){K.r=f.r;K.g=f.g;K.b=f.b;a(G,z,K);F.r=s.color.r*K.r;F.g=s.color.g*K.g;F.b=s.color.b*K.b;F.updateStyleString()}else F.__styleString=s.color.__styleString;else if(s instanceof THREE.MeshDepthMaterial){o=
+1-s.__2near/(s.__farPlusNear-z.z*s.__farMinusNear);F.setRGB(o,o,o)}else s instanceof THREE.MeshNormalMaterial&&F.setRGB(h(z.normalWorld.x),h(z.normalWorld.y),h(z.normalWorld.z));s.wireframe?u.setAttribute("style","fill: none; stroke: "+F.__styleString+"; stroke-width: "+s.wireframe_linewidth+"; stroke-opacity: "+s.opacity+"; stroke-linecap: "+s.wireframe_linecap+"; stroke-linejoin: "+s.wireframe_linejoin):u.setAttribute("style","fill: "+F.__styleString+"; fill-opacity: "+s.opacity);j.appendChild(u)}
+function d(L){if(i[L]==null){i[L]=document.createElementNS("http://www.w3.org/2000/svg","path");A==0&&i[L].setAttribute("shape-rendering","crispEdges");return i[L]}return i[L]}function h(L){return L<0?Math.min((1+L)*0.5,0.5):0.5+Math.min(L*0.5,0.5)}var k=null,p=new THREE.Projector,j=document.createElementNS("http://www.w3.org/2000/svg","svg"),n,c,E,D,y,w,J,O,M=new THREE.Rectangle,q=new THREE.Rectangle,P=false,F=new THREE.Color(16777215),K=new THREE.Color(16777215),f=new THREE.Color(0),l=new THREE.Color(0),
+e=new THREE.Color(0),o,m=new THREE.Vector3,i=[],x=[],r=[],u,v,B,Q,A=1;this.domElement=j;this.sortElements=this.sortObjects=this.autoClear=true;this.setQuality=function(L){switch(L){case "high":A=1;break;case "low":A=0}};this.setSize=function(L,X){n=L;c=X;E=n/2;D=c/2;j.setAttribute("viewBox",-E+" "+-D+" "+n+" "+c);j.setAttribute("width",n);j.setAttribute("height",c);M.set(-E,-D,E,D)};this.clear=function(){for(;j.childNodes.length>0;)j.removeChild(j.childNodes[0])};this.render=function(L,X){var U,T,
+z,s,G,R,H,V;this.autoClear&&this.clear();k=p.projectScene(L,X,this.sortElements);Q=B=v=0;if(P=L.lights.length>0){H=L.lights;f.setRGB(0,0,0);l.setRGB(0,0,0);e.setRGB(0,0,0);U=0;for(T=H.length;U<T;U++){z=H[U];s=z.color;if(z instanceof THREE.AmbientLight){f.r+=s.r;f.g+=s.g;f.b+=s.b}else if(z instanceof THREE.DirectionalLight){l.r+=s.r;l.g+=s.g;l.b+=s.b}else if(z instanceof THREE.PointLight){e.r+=s.r;e.g+=s.g;e.b+=s.b}}}U=0;for(T=k.length;U<T;U++){H=k[U];q.empty();if(H instanceof THREE.RenderableParticle){y=
+H;y.x*=E;y.y*=-D;z=0;for(s=H.material.length;z<s;z++)if(V=H.material[z]){G=y;R=H;V=V;var aa=B++;if(x[aa]==null){x[aa]=document.createElementNS("http://www.w3.org/2000/svg","circle");A==0&&x[aa].setAttribute("shape-rendering","crispEdges")}u=x[aa];u.setAttribute("cx",G.x);u.setAttribute("cy",G.y);u.setAttribute("r",R.scale.x*E);if(V instanceof THREE.ParticleCircleMaterial){if(P){K.r=f.r+l.r+e.r;K.g=f.g+l.g+e.g;K.b=f.b+l.b+e.b;F.r=V.color.r*K.r;F.g=V.color.g*K.g;F.b=V.color.b*K.b;F.updateStyleString()}else F=
+V.color;u.setAttribute("style","fill: "+F.__styleString)}j.appendChild(u)}}else if(H instanceof THREE.RenderableLine){y=H.v1;w=H.v2;y.positionScreen.x*=E;y.positionScreen.y*=-D;w.positionScreen.x*=E;w.positionScreen.y*=-D;q.addPoint(y.positionScreen.x,y.positionScreen.y);q.addPoint(w.positionScreen.x,w.positionScreen.y);if(M.instersects(q)){z=0;for(s=H.material.length;z<s;)if(V=H.material[z++]){G=y;R=w;V=V;aa=Q++;if(r[aa]==null){r[aa]=document.createElementNS("http://www.w3.org/2000/svg","line");
+A==0&&r[aa].setAttribute("shape-rendering","crispEdges")}u=r[aa];u.setAttribute("x1",G.positionScreen.x);u.setAttribute("y1",G.positionScreen.y);u.setAttribute("x2",R.positionScreen.x);u.setAttribute("y2",R.positionScreen.y);if(V instanceof THREE.LineBasicMaterial){F.__styleString=V.color.__styleString;u.setAttribute("style","fill: none; stroke: "+F.__styleString+"; stroke-width: "+V.linewidth+"; stroke-opacity: "+V.opacity+"; stroke-linecap: "+V.linecap+"; stroke-linejoin: "+V.linejoin);j.appendChild(u)}}}}else if(H instanceof
+THREE.RenderableFace3){y=H.v1;w=H.v2;J=H.v3;y.positionScreen.x*=E;y.positionScreen.y*=-D;w.positionScreen.x*=E;w.positionScreen.y*=-D;J.positionScreen.x*=E;J.positionScreen.y*=-D;q.addPoint(y.positionScreen.x,y.positionScreen.y);q.addPoint(w.positionScreen.x,w.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);if(M.instersects(q)){z=0;for(s=H.meshMaterial.length;z<s;){V=H.meshMaterial[z++];if(V instanceof THREE.MeshFaceMaterial){G=0;for(R=H.faceMaterial.length;G<R;)(V=H.faceMaterial[G++])&&
+b(y,w,J,H,V,L)}else V&&b(y,w,J,H,V,L)}}}else if(H instanceof THREE.RenderableFace4){y=H.v1;w=H.v2;J=H.v3;O=H.v4;y.positionScreen.x*=E;y.positionScreen.y*=-D;w.positionScreen.x*=E;w.positionScreen.y*=-D;J.positionScreen.x*=E;J.positionScreen.y*=-D;O.positionScreen.x*=E;O.positionScreen.y*=-D;q.addPoint(y.positionScreen.x,y.positionScreen.y);q.addPoint(w.positionScreen.x,w.positionScreen.y);q.addPoint(J.positionScreen.x,J.positionScreen.y);q.addPoint(O.positionScreen.x,O.positionScreen.y);if(M.instersects(q)){z=
+0;for(s=H.meshMaterial.length;z<s;){V=H.meshMaterial[z++];if(V instanceof THREE.MeshFaceMaterial){G=0;for(R=H.faceMaterial.length;G<R;)(V=H.faceMaterial[G++])&&g(y,w,J,O,H,V,L)}else V&&g(y,w,J,O,H,V,L)}}}}}};
+THREE.WebGLRenderer=function(a){function b(f,l){var e=c.createProgram(),o=[c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0?"#define VERTEX_TEXTURES":"","uniform mat4 objectMatrix;\nuniform mat4 modelViewMatrix;\nuniform mat4 projectionMatrix;\nuniform mat4 viewMatrix;\nuniform mat3 normalMatrix;\nuniform vec3 cameraPosition;\nattribute vec3 position;\nattribute vec3 normal;\nattribute vec2 uv;\n"].join("\n");c.attachShader(e,p("fragment","#ifdef GL_ES\nprecision highp float;\n#endif\nuniform mat4 viewMatrix;\nuniform vec3 cameraPosition;\n"+
+f));c.attachShader(e,p("vertex",o+l));c.linkProgram(e);c.getProgramParameter(e,c.LINK_STATUS)||alert("Could not initialise shaders\nVALIDATE_STATUS: "+c.getProgramParameter(e,c.VALIDATE_STATUS)+", gl error ["+c.getError()+"]");e.uniforms={};e.attributes={};return e}function g(f,l){if(f.image.length==6){if(!f.image.__webGLTextureCube&&!f.image.__cubeMapInitialized&&f.image.loadCount==6){f.image.__webGLTextureCube=c.createTexture();c.bindTexture(c.TEXTURE_CUBE_MAP,f.image.__webGLTextureCube);c.texParameteri(c.TEXTURE_CUBE_MAP,
+c.TEXTURE_WRAP_S,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_WRAP_T,c.CLAMP_TO_EDGE);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MAG_FILTER,c.LINEAR);c.texParameteri(c.TEXTURE_CUBE_MAP,c.TEXTURE_MIN_FILTER,c.LINEAR_MIPMAP_LINEAR);for(var e=0;e<6;++e)c.texImage2D(c.TEXTURE_CUBE_MAP_POSITIVE_X+e,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,f.image[e]);c.generateMipmap(c.TEXTURE_CUBE_MAP);c.bindTexture(c.TEXTURE_CUBE_MAP,null);f.image.__cubeMapInitialized=true}c.activeTexture(c.TEXTURE0+l);c.bindTexture(c.TEXTURE_CUBE_MAP,
+f.image.__webGLTextureCube)}}function d(f,l){if(!f.__webGLTexture&&f.image.loaded){f.__webGLTexture=c.createTexture();c.bindTexture(c.TEXTURE_2D,f.__webGLTexture);c.texImage2D(c.TEXTURE_2D,0,c.RGBA,c.RGBA,c.UNSIGNED_BYTE,f.image);c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_S,j(f.wrap_s));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_WRAP_T,j(f.wrap_t));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MAG_FILTER,j(f.mag_filter));c.texParameteri(c.TEXTURE_2D,c.TEXTURE_MIN_FILTER,j(f.min_filter));c.generateMipmap(c.TEXTURE_2D);
+c.bindTexture(c.TEXTURE_2D,null)}c.activeTexture(c.TEXTURE0+l);c.bindTexture(c.TEXTURE_2D,f.__webGLTexture)}function h(f,l){var e,o,m;e=0;for(o=l.length;e<o;e++){m=l[e];f.uniforms[m]=c.getUniformLocation(f,m)}}function k(f,l){var e,o,m;e=0;for(o=l.length;e<o;e++){m=l[e];f.attributes[m]=c.getAttribLocation(f,m)}}function p(f,l){var e;if(f=="fragment")e=c.createShader(c.FRAGMENT_SHADER);else if(f=="vertex")e=c.createShader(c.VERTEX_SHADER);c.shaderSource(e,l);c.compileShader(e);if(!c.getShaderParameter(e,
+c.COMPILE_STATUS)){alert(c.getShaderInfoLog(e));return null}return e}function j(f){switch(f){case THREE.RepeatWrapping:return c.REPEAT;case THREE.ClampToEdgeWrapping:return c.CLAMP_TO_EDGE;case THREE.MirroredRepeatWrapping:return c.MIRRORED_REPEAT;case THREE.NearestFilter:return c.NEAREST;case THREE.NearestMipMapNearestFilter:return c.NEAREST_MIPMAP_NEAREST;case THREE.NearestMipMapLinearFilter:return c.NEAREST_MIPMAP_LINEAR;case THREE.LinearFilter:return c.LINEAR;case THREE.LinearMipMapNearestFilter:return c.LINEAR_MIPMAP_NEAREST;
+case THREE.LinearMipMapLinearFilter:return c.LINEAR_MIPMAP_LINEAR}return 0}var n=document.createElement("canvas"),c,E,D,y=new THREE.Matrix4,w,J=new Float32Array(16),O=new Float32Array(16),M=new Float32Array(16),q=new Float32Array(9),P=new Float32Array(16);a=function(f,l){if(f){var e,o,m,i=pointLights=maxDirLights=maxPointLights=0;e=0;for(o=f.lights.length;e<o;e++){m=f.lights[e];m instanceof THREE.DirectionalLight&&i++;m instanceof THREE.PointLight&&pointLights++}if(pointLights+i<=l){maxDirLights=
+i;maxPointLights=pointLights}else{maxDirLights=Math.ceil(l*i/(pointLights+i));maxPointLights=l-maxDirLights}return{directional:maxDirLights,point:maxPointLights}}return{directional:1,point:l-1}}(a,4);this.domElement=n;this.autoClear=true;try{c=n.getContext("experimental-webgl",{antialias:true})}catch(F){}if(!c){alert("WebGL not supported");throw"cannot create webgl context";}c.clearColor(0,0,0,1);c.clearDepth(1);c.enable(c.DEPTH_TEST);c.depthFunc(c.LEQUAL);c.frontFace(c.CCW);c.cullFace(c.BACK);c.enable(c.CULL_FACE);
+c.enable(c.BLEND);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA);c.clearColor(0,0,0,0);E=D=function(f,l){var e=[f?"#define MAX_DIR_LIGHTS "+f:"",l?"#define MAX_POINT_LIGHTS "+l:"","uniform bool enableLighting;\nuniform bool useRefract;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;\nuniform vec3 ambientLightColor;",f?"uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];":"",f?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":"",l?"uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];":
+"",l?"uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];":"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",l?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nuniform float mRefractionRatio;\nvoid main(void) {\nvec4 mPosition = objectMatrix * vec4( position, 1.0 );\nvViewPosition = cameraPosition - mPosition.xyz;\nvec3 nWorld = mat3( objectMatrix[0].xyz, objectMatrix[1].xyz, objectMatrix[2].xyz ) * normal;\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvec3 transformedNormal = normalize( normalMatrix * normal );\nif ( !enableLighting ) {\nvLightWeighting = vec3( 1.0, 1.0, 1.0 );\n} else {\nvLightWeighting = ambientLightColor;",
+f?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",f?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",f?"float directionalLightWeighting = max( dot( transformedNormal, normalize( lDirection.xyz ) ), 0.0 );":"",f?"vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;":"",f?"}":"",l?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",l?"vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );":"",l?"vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );":
+"",l?"float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );":"",l?"vLightWeighting += pointLightColor[ i ] * pointLightWeighting;":"",l?"}":"","}\nvNormal = transformedNormal;\nvUv = uv;\nif ( useRefract ) {\nvReflect = refract( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz), mRefractionRatio );\n} else {\nvReflect = reflect( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz) );\n}\ngl_Position = projectionMatrix * mvPosition;\n}"].join("\n"),
+o=[f?"#define MAX_DIR_LIGHTS "+f:"",l?"#define MAX_POINT_LIGHTS "+l:"","uniform int material;\nuniform bool enableMap;\nuniform bool enableCubeMap;\nuniform bool mixEnvMap;\nuniform samplerCube tCube;\nuniform float mReflectivity;\nuniform sampler2D tMap;\nuniform vec4 mColor;\nuniform float mOpacity;\nuniform vec4 mAmbient;\nuniform vec4 mSpecular;\nuniform float mShininess;\nuniform int pointLightNumber;\nuniform int directionalLightNumber;",f?"uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];":
+"","varying vec3 vNormal;\nvarying vec2 vUv;\nvarying vec3 vLightWeighting;",l?"varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];":"","varying vec3 vViewPosition;\nvarying vec3 vReflect;\nvoid main() {\nvec4 mapColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nvec4 cubeColor = vec4( 1.0, 1.0, 1.0, 1.0 );\nif ( enableMap ) {\nmapColor = texture2D( tMap, vUv );\n}\nif ( enableCubeMap ) {\ncubeColor = textureCube( tCube, vec3( -vReflect.x, vReflect.yz ) );\n}\nif ( material == 2 ) { \nvec3 normal = normalize( vNormal );\nvec3 viewPosition = normalize( vViewPosition );",
+l?"vec4 pointDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",l?"vec4 pointSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",l?"for( int i = 0; i < MAX_POINT_LIGHTS; i++ ) {":"",l?"vec3 pointVector = normalize( vPointLightVector[ i ] );":"",l?"vec3 pointHalfVector = normalize( vPointLightVector[ i ] + vViewPosition );":"",l?"float pointDotNormalHalf = dot( normal, pointHalfVector );":"",l?"float pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );":"",l?"float pointSpecularWeight = 0.0;":"",l?"if ( pointDotNormalHalf >= 0.0 )":
+"",l?"pointSpecularWeight = pow( pointDotNormalHalf, mShininess );":"",l?"pointDiffuse  += mColor * pointDiffuseWeight;":"",l?"pointSpecular += mSpecular * pointSpecularWeight;":"",l?"}":"",f?"vec4 dirDiffuse  = vec4( 0.0, 0.0, 0.0, 0.0 );":"",f?"vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );":"",f?"for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {":"",f?"vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );":"",f?"vec3 dirVector = normalize( lDirection.xyz );":"",f?"vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );":
+"",f?"float dirDotNormalHalf = dot( normal, dirHalfVector );":"",f?"float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );":"",f?"float dirSpecularWeight = 0.0;":"",f?"if ( dirDotNormalHalf >= 0.0 )":"",f?"dirSpecularWeight = pow( dirDotNormalHalf, mShininess );":"",f?"dirDiffuse  += mColor * dirDiffuseWeight;":"",f?"dirSpecular += mSpecular * dirSpecularWeight;":"",f?"}":"","vec4 totalLight = mAmbient;",f?"totalLight += dirDiffuse + dirSpecular;":"",l?"totalLight += pointDiffuse + pointSpecular;":
+"","if ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mapColor.rgb * totalLight.xyz * vLightWeighting, cubeColor.rgb, mReflectivity ), mapColor.a );\n} else {\ngl_FragColor = vec4( mapColor.rgb * cubeColor.rgb * totalLight.xyz * vLightWeighting, mapColor.a );\n}\n} else if ( material == 1 ) {\nif ( mixEnvMap ) {\ngl_FragColor = vec4( mix( mColor.rgb * mapColor.rgb * vLightWeighting, cubeColor.rgb, mReflectivity ), mColor.a * mapColor.a );\n} else {\ngl_FragColor = vec4( mColor.rgb * mapColor.rgb * cubeColor.rgb * vLightWeighting, mColor.a * mapColor.a );\n}\n} else {\nif ( mixEnvMap ) {\ngl_FragColor = mix( mColor * mapColor, cubeColor, mReflectivity );\n} else {\ngl_FragColor = mColor * mapColor * cubeColor;\n}\n}\n}"].join("\n");
+e=b(o,e);c.useProgram(e);h(e,["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition","enableLighting","ambientLightColor","material","mColor","mAmbient","mSpecular","mShininess","mOpacity","enableMap","tMap","enableCubeMap","tCube","mixEnvMap","mReflectivity","mRefractionRatio","useRefract"]);f&&h(e,["directionalLightNumber","directionalLightColor","directionalLightDirection"]);l&&h(e,["pointLightNumber","pointLightColor","pointLightPosition"]);c.uniform1i(e.uniforms.enableMap,
+0);c.uniform1i(e.uniforms.tMap,0);c.uniform1i(e.uniforms.enableCubeMap,0);c.uniform1i(e.uniforms.tCube,1);c.uniform1i(e.uniforms.mixEnvMap,0);c.uniform1i(e.uniforms.useRefract,0);k(e,["position","normal","uv"]);return e}(a.directional,a.point);this.setSize=function(f,l){n.width=f;n.height=l;c.viewport(0,0,n.width,n.height)};this.clear=function(){c.clear(c.COLOR_BUFFER_BIT|c.DEPTH_BUFFER_BIT)};this.setupLights=function(f,l){var e,o,m,i,x,r=[],u=[],v=[];i=[];x=[];c.uniform1i(f.uniforms.enableLighting,
+l.length);e=0;for(o=l.length;e<o;e++){m=l[e];if(m instanceof THREE.AmbientLight)r.push(m);else if(m instanceof THREE.DirectionalLight)v.push(m);else m instanceof THREE.PointLight&&u.push(m)}e=m=i=x=0;for(o=r.length;e<o;e++){m+=r[e].color.r;i+=r[e].color.g;x+=r[e].color.b}c.uniform3f(f.uniforms.ambientLightColor,m,i,x);i=[];x=[];e=0;for(o=v.length;e<o;e++){m=v[e];i.push(m.color.r*m.intensity);i.push(m.color.g*m.intensity);i.push(m.color.b*m.intensity);x.push(m.position.x);x.push(m.position.y);x.push(m.position.z)}if(v.length){c.uniform1i(f.uniforms.directionalLightNumber,
+v.length);c.uniform3fv(f.uniforms.directionalLightDirection,x);c.uniform3fv(f.uniforms.directionalLightColor,i)}i=[];x=[];e=0;for(o=u.length;e<o;e++){m=u[e];i.push(m.color.r*m.intensity);i.push(m.color.g*m.intensity);i.push(m.color.b*m.intensity);x.push(m.position.x);x.push(m.position.y);x.push(m.position.z)}if(u.length){c.uniform1i(f.uniforms.pointLightNumber,u.length);c.uniform3fv(f.uniforms.pointLightPosition,x);c.uniform3fv(f.uniforms.pointLightColor,i)}};this.createBuffers=function(f,l){var e,
+o,m,i,x,r,u,v,B,Q=[],A=[],L=[],X=[],U=[],T=[],z=0,s=f.geometry.geometryChunks[l],G;m=false;e=0;for(o=f.material.length;e<o;e++){meshMaterial=f.material[e];if(meshMaterial instanceof THREE.MeshFaceMaterial){x=0;for(G=s.material.length;x<G;x++)if(s.material[x]&&s.material[x].shading!=undefined&&s.material[x].shading==THREE.SmoothShading){m=true;break}}else if(meshMaterial&&meshMaterial.shading!=undefined&&meshMaterial.shading==THREE.SmoothShading){m=true;break}if(m)break}G=m;e=0;for(o=s.faces.length;e<
+o;e++){m=s.faces[e];i=f.geometry.faces[m];x=i.vertexNormals;faceNormal=i.normal;m=f.geometry.uvs[m];if(i instanceof THREE.Face3){r=f.geometry.vertices[i.a].position;u=f.geometry.vertices[i.b].position;v=f.geometry.vertices[i.c].position;L.push(r.x,r.y,r.z);L.push(u.x,u.y,u.z);L.push(v.x,v.y,v.z);if(f.geometry.hasTangents){r=f.geometry.vertices[i.a].tangent;u=f.geometry.vertices[i.b].tangent;v=f.geometry.vertices[i.c].tangent;U.push(r.x,r.y,r.z,r.w);U.push(u.x,u.y,u.z,u.w);U.push(v.x,v.y,v.z,v.w)}if(x.length==
+3&&G)for(i=0;i<3;i++)X.push(x[i].x,x[i].y,x[i].z);else for(i=0;i<3;i++)X.push(faceNormal.x,faceNormal.y,faceNormal.z);if(m)for(i=0;i<3;i++)T.push(m[i].u,m[i].v);Q.push(z,z+1,z+2);A.push(z,z+1);A.push(z,z+2);A.push(z+1,z+2);z+=3}else if(i instanceof THREE.Face4){r=f.geometry.vertices[i.a].position;u=f.geometry.vertices[i.b].position;v=f.geometry.vertices[i.c].position;B=f.geometry.vertices[i.d].position;L.push(r.x,r.y,r.z);L.push(u.x,u.y,u.z);L.push(v.x,v.y,v.z);L.push(B.x,B.y,B.z);if(f.geometry.hasTangents){r=
+f.geometry.vertices[i.a].tangent;u=f.geometry.vertices[i.b].tangent;v=f.geometry.vertices[i.c].tangent;i=f.geometry.vertices[i.d].tangent;U.push(r.x,r.y,r.z,r.w);U.push(u.x,u.y,u.z,u.w);U.push(v.x,v.y,v.z,v.w);U.push(i.x,i.y,i.z,i.w)}if(x.length==4&&G)for(i=0;i<4;i++)X.push(x[i].x,x[i].y,x[i].z);else for(i=0;i<4;i++)X.push(faceNormal.x,faceNormal.y,faceNormal.z);if(m)for(i=0;i<4;i++)T.push(m[i].u,m[i].v);Q.push(z,z+1,z+2);Q.push(z,z+2,z+3);A.push(z,z+1);A.push(z,z+2);A.push(z,z+3);A.push(z+1,z+2);
+A.push(z+2,z+3);z+=4}}if(L.length){s.__webGLVertexBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLVertexBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(L),c.STATIC_DRAW);s.__webGLNormalBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLNormalBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(X),c.STATIC_DRAW);if(f.geometry.hasTangents){s.__webGLTangentBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLTangentBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(U),
+c.STATIC_DRAW)}if(T.length>0){s.__webGLUVBuffer=c.createBuffer();c.bindBuffer(c.ARRAY_BUFFER,s.__webGLUVBuffer);c.bufferData(c.ARRAY_BUFFER,new Float32Array(T),c.STATIC_DRAW)}s.__webGLFaceBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,s.__webGLFaceBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(Q),c.STATIC_DRAW);s.__webGLLineBuffer=c.createBuffer();c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,s.__webGLLineBuffer);c.bufferData(c.ELEMENT_ARRAY_BUFFER,new Uint16Array(A),c.STATIC_DRAW);
+s.__webGLFaceCount=Q.length;s.__webGLLineCount=A.length}};this.renderBuffer=function(f,l,e,o){var m,i,x,r,u,v,B,Q,A;if(e instanceof THREE.MeshShaderMaterial||e instanceof THREE.MeshDepthMaterial||e instanceof THREE.MeshNormalMaterial){if(!e.program){if(e instanceof THREE.MeshDepthMaterial){B=K.depth;e.fragment_shader=B.fragment_shader;e.vertex_shader=B.vertex_shader;e.uniforms=B.uniforms;e.uniforms.mNear.value=e.near;e.uniforms.mFar.value=e.far}else if(e instanceof THREE.MeshNormalMaterial){B=K.normal;
+e.fragment_shader=B.fragment_shader;e.vertex_shader=B.vertex_shader;e.uniforms=B.uniforms}e.program=b(e.fragment_shader,e.vertex_shader);B=["viewMatrix","modelViewMatrix","projectionMatrix","normalMatrix","objectMatrix","cameraPosition"];for(A in e.uniforms)B.push(A);h(e.program,B);k(e.program,["position","normal","uv","tangent"])}A=e.program}else A=D;if(A!=E){c.useProgram(A);E=A}A==D&&this.setupLights(A,l);this.loadCamera(A,f);this.loadMatrices(A);if(e instanceof THREE.MeshShaderMaterial||e instanceof
+THREE.MeshDepthMaterial||e instanceof THREE.MeshNormalMaterial){x=e.wireframe;r=e.wireframe_linewidth;f=A;l=e.uniforms;var L;for(m in l){Q=l[m].type;B=l[m].value;L=f.uniforms[m];if(Q=="i")c.uniform1i(L,B);else if(Q=="f")c.uniform1f(L,B);else if(Q=="v3")c.uniform3f(L,B.x,B.y,B.z);else if(Q=="c")c.uniform3f(L,B.r,B.g,B.b);else if(Q=="t"){c.uniform1i(L,B);if(Q=l[m].texture)Q.image instanceof Array&&Q.image.length==6?g(Q,B):d(Q,B)}}}if(e instanceof THREE.MeshPhongMaterial||e instanceof THREE.MeshLambertMaterial||
+e instanceof THREE.MeshBasicMaterial){m=e.color;i=e.opacity;x=e.wireframe;r=e.wireframe_linewidth;u=e.map;v=e.env_map;l=e.combine==THREE.MixOperation;f=e.reflectivity;Q=e.env_map&&e.env_map.mapping instanceof THREE.CubeRefractionMapping;B=e.refraction_ratio;c.uniform4f(A.uniforms.mColor,m.r*i,m.g*i,m.b*i,i);c.uniform1i(A.uniforms.mixEnvMap,l);c.uniform1f(A.uniforms.mReflectivity,f);c.uniform1i(A.uniforms.useRefract,Q);c.uniform1f(A.uniforms.mRefractionRatio,B)}if(e instanceof THREE.MeshPhongMaterial){m=
+e.ambient;f=e.specular;e=e.shininess;c.uniform4f(A.uniforms.mAmbient,m.r,m.g,m.b,i);c.uniform4f(A.uniforms.mSpecular,f.r,f.g,f.b,i);c.uniform1f(A.uniforms.mShininess,e);c.uniform1i(A.uniforms.material,2)}else if(e instanceof THREE.MeshLambertMaterial)c.uniform1i(A.uniforms.material,1);else e instanceof THREE.MeshBasicMaterial&&c.uniform1i(A.uniforms.material,0);if(u){d(u,0);c.uniform1i(A.uniforms.tMap,0);c.uniform1i(A.uniforms.enableMap,1)}else c.uniform1i(A.uniforms.enableMap,0);if(v){g(v,1);c.uniform1i(A.uniforms.tCube,
+1);c.uniform1i(A.uniforms.enableCubeMap,1)}else c.uniform1i(A.uniforms.enableCubeMap,0);i=A.attributes;c.bindBuffer(c.ARRAY_BUFFER,o.__webGLVertexBuffer);c.vertexAttribPointer(i.position,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.position);if(i.normal>=0){c.bindBuffer(c.ARRAY_BUFFER,o.__webGLNormalBuffer);c.vertexAttribPointer(i.normal,3,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.normal)}if(i.tangent>=0){c.bindBuffer(c.ARRAY_BUFFER,o.__webGLTangentBuffer);c.vertexAttribPointer(i.tangent,
+4,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.tangent)}if(i.uv>=0)if(o.__webGLUVBuffer){c.bindBuffer(c.ARRAY_BUFFER,o.__webGLUVBuffer);c.vertexAttribPointer(i.uv,2,c.FLOAT,false,0,0);c.enableVertexAttribArray(i.uv)}else c.disableVertexAttribArray(i.uv);if(x){c.lineWidth(r);c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,o.__webGLLineBuffer);c.drawElements(c.LINES,o.__webGLLineCount,c.UNSIGNED_SHORT,0)}else{c.bindBuffer(c.ELEMENT_ARRAY_BUFFER,o.__webGLFaceBuffer);c.drawElements(c.TRIANGLES,o.__webGLFaceCount,
+c.UNSIGNED_SHORT,0)}};this.renderPass=function(f,l,e,o,m,i){var x,r,u,v,B;u=0;for(v=e.material.length;u<v;u++){x=e.material[u];if(x instanceof THREE.MeshFaceMaterial){x=0;for(r=o.material.length;x<r;x++)if((B=o.material[x])&&B.blending==m&&B.opacity<1==i){this.setBlending(B.blending);this.renderBuffer(f,l,B,o)}}else if((B=x)&&B.blending==m&&B.opacity<1==i){this.setBlending(B.blending);this.renderBuffer(f,l,B,o)}}};this.render=function(f,l){var e,o,m,i,x=f.lights;this.initWebGLObjects(f);this.autoClear&&
+this.clear();l.autoUpdateMatrix&&l.updateMatrix();J.set(l.matrix.flatten());M.set(l.projectionMatrix.flatten());e=0;for(o=f.__webGLObjects.length;e<o;e++){m=f.__webGLObjects[e];i=m.object;m=m.buffer;if(i.visible){this.setupMatrices(i,l);this.renderPass(l,x,i,m,THREE.NormalBlending,false)}}e=0;for(o=f.__webGLObjects.length;e<o;e++){m=f.__webGLObjects[e];i=m.object;m=m.buffer;if(i.visible){this.setupMatrices(i,l);this.renderPass(l,x,i,m,THREE.AdditiveBlending,false);this.renderPass(l,x,i,m,THREE.SubtractiveBlending,
+false);this.renderPass(l,x,i,m,THREE.AdditiveBlending,true);this.renderPass(l,x,i,m,THREE.SubtractiveBlending,true);this.renderPass(l,x,i,m,THREE.NormalBlending,true)}}};this.initWebGLObjects=function(f){var l,e,o,m,i,x;if(!f.__webGLObjects){f.__webGLObjects=[];f.__webGLObjectsMap={}}l=0;for(e=f.objects.length;l<e;l++){o=f.objects[l];if(f.__webGLObjectsMap[o.id]==undefined)f.__webGLObjectsMap[o.id]={};x=f.__webGLObjectsMap[o.id];if(o instanceof THREE.Mesh)for(i in o.geometry.geometryChunks){m=o.geometry.geometryChunks[i];
+m.__webGLVertexBuffer||this.createBuffers(o,i);if(x[i]==undefined){m={buffer:m,object:o};f.__webGLObjects.push(m);x[i]=1}}}};this.removeObject=function(f,l){var e,o;for(e=f.__webGLObjects.length-1;e>=0;e--){o=f.__webGLObjects[e].object;l==o&&f.__webGLObjects.splice(e,1)}};this.setupMatrices=function(f,l){f.autoUpdateMatrix&&f.updateMatrix();y.multiply(l.matrix,f.matrix);O.set(y.flatten());w=THREE.Matrix4.makeInvert3x3(y).transpose();q.set(w.m);P.set(f.matrix.flatten())};this.loadMatrices=function(f){c.uniformMatrix4fv(f.uniforms.viewMatrix,
+false,J);c.uniformMatrix4fv(f.uniforms.modelViewMatrix,false,O);c.uniformMatrix4fv(f.uniforms.projectionMatrix,false,M);c.uniformMatrix3fv(f.uniforms.normalMatrix,false,q);c.uniformMatrix4fv(f.uniforms.objectMatrix,false,P)};this.loadCamera=function(f,l){c.uniform3f(f.uniforms.cameraPosition,l.position.x,l.position.y,l.position.z)};this.setBlending=function(f){switch(f){case THREE.AdditiveBlending:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,c.ONE);break;case THREE.SubtractiveBlending:c.blendFunc(c.DST_COLOR,
+c.ZERO);break;default:c.blendEquation(c.FUNC_ADD);c.blendFunc(c.ONE,c.ONE_MINUS_SRC_ALPHA)}};this.setFaceCulling=function(f,l){if(f){!l||l=="ccw"?c.frontFace(c.CCW):c.frontFace(c.CW);if(f=="back")c.cullFace(c.BACK);else f=="front"?c.cullFace(c.FRONT):c.cullFace(c.FRONT_AND_BACK);c.enable(c.CULL_FACE)}else c.disable(c.CULL_FACE)};this.supportsVertexTextures=function(){return c.getParameter(c.MAX_VERTEX_TEXTURE_IMAGE_UNITS)>0};var K={depth:{uniforms:{mNear:{type:"f",value:1},mFar:{type:"f",value:2E3}},
+fragment_shader:"uniform float mNear;\nuniform float mFar;\nvoid main() {\nfloat depth = gl_FragCoord.z / gl_FragCoord.w;\nfloat color = 1.0 - smoothstep( mNear, mFar, depth );\ngl_FragColor = vec4( vec3( color ), 1.0 );\n}",vertex_shader:"void main() {\ngl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );\n}"},normal:{uniforms:{},fragment_shader:"varying vec3 vNormal;\nvoid main() {\ngl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, 1.0 );\n}",vertex_shader:"varying vec3 vNormal;\nvoid main() {\nvec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );\nvNormal = normalize( normalMatrix * normal );\ngl_Position = projectionMatrix * mvPosition;\n}"}}};
+THREE.RenderableObject=function(){this.z=this.object=null};THREE.RenderableFace3=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.v3=new THREE.Vertex;this.centroidWorld=new THREE.Vector3;this.centroidScreen=new THREE.Vector3;this.normalWorld=new THREE.Vector3;this.vertexNormalsWorld=[];this.faceMaterial=this.meshMaterial=null;this.overdraw=false;this.uvs=[null,null,null]};
+THREE.RenderableParticle=function(){this.rotation=this.z=this.y=this.x=null;this.scale=new THREE.Vector2;this.material=null};THREE.RenderableLine=function(){this.z=null;this.v1=new THREE.Vertex;this.v2=new THREE.Vertex;this.material=null};

File diff suppressed because it is too large
+ 0 - 187
build/ThreeExtras.js


+ 1 - 4
examples/materials_gl.html

@@ -17,10 +17,7 @@
 
 		<pre id="log"></pre>
 		
-		<script type="text/javascript" src="../build/Three.js"></script>
-
-		<script type="text/javascript" src="../src/extras/primitives/Sphere.js"></script>
-		<script type="text/javascript" src="../src/extras/primitives/Plane.js"></script>
+		<script type="text/javascript" src="../build/ThreeExtras.js"></script>
 
 		<script type="text/javascript" src="js/Stats.js"></script>
 

+ 7 - 0
src/materials/MeshDepthMaterial.js

@@ -13,9 +13,16 @@ THREE.MeshDepthMaterial = function ( parameters ) {
 
 	this.near = 1;
 	this.far = 1000;
+	
 	this.opacity = 1;
+	this.shading = THREE.SmoothShading;
 	this.blending = THREE.NormalBlending;
 
+	this.wireframe = false;
+	this.wireframe_linewidth = 1;
+	this.wireframe_linecap = 'round';
+	this.wireframe_linejoin = 'round';
+
 	if ( parameters ) {
 
 		if ( parameters.near !== undefined ) this.near = parameters.near;

+ 102 - 55
src/renderers/WebGLRenderer.js

@@ -31,7 +31,7 @@ THREE.WebGLRenderer = function ( scene ) {
 
 	// ubershader material constants
 
-	BASIC = 0, LAMBERT = 1, PHONG = 2, DEPTH = 3, NORMAL = 4,
+	BASIC = 0, LAMBERT = 1, PHONG = 2,
 
 	// heuristics to create shader parameters according to lights in the scene
 	// (not to blow over maxLights budget)
@@ -359,6 +359,14 @@ THREE.WebGLRenderer = function ( scene ) {
 
 	};
 
+	function setMaterialShaders( material, shaders ) {
+		
+		material.fragment_shader = shaders.fragment_shader;
+		material.vertex_shader = shaders.vertex_shader;
+		material.uniforms = shaders.uniforms;
+		
+	};
+	
 	this.renderBuffer = function ( camera, lights, material, geometryChunk ) {
 
 		var mColor, mOpacity, mReflectivity,
@@ -369,10 +377,25 @@ THREE.WebGLRenderer = function ( scene ) {
 			program, u, identifiers, attributes;
 
 
-		if ( material instanceof THREE.MeshShaderMaterial ) {
+		if ( material instanceof THREE.MeshShaderMaterial ||
+			 material instanceof THREE.MeshDepthMaterial ||
+			 material instanceof THREE.MeshNormalMaterial ) {
 
 			if ( !material.program ) {
 
+				if ( material instanceof THREE.MeshDepthMaterial ) {
+					
+					setMaterialShaders( material, ShaderLib[ 'depth' ] );
+					
+					material.uniforms.mNear.value = material.near;
+					material.uniforms.mFar.value = material.far;
+					
+				} else if ( material instanceof THREE.MeshNormalMaterial ) {
+					
+					setMaterialShaders( material, ShaderLib[ 'normal' ] );
+					
+				}					
+				
 				material.program = buildProgram( material.fragment_shader, material.vertex_shader );
 
 				identifiers = [ 'viewMatrix', 'modelViewMatrix', 'projectionMatrix', 'normalMatrix', 'objectMatrix', 'cameraPosition' ];
@@ -381,6 +404,7 @@ THREE.WebGLRenderer = function ( scene ) {
 					identifiers.push(u);
 
 				}
+				
 				cacheUniformLocations( material.program, identifiers );
 				cacheAttributeLocations( material.program, [ "position", "normal", "uv", "tangent" ] );
 
@@ -410,7 +434,9 @@ THREE.WebGLRenderer = function ( scene ) {
 		this.loadCamera( program, camera );
 		this.loadMatrices( program );
 
-		if ( material instanceof THREE.MeshShaderMaterial ) {
+		if ( material instanceof THREE.MeshShaderMaterial || 
+		     material instanceof THREE.MeshDepthMaterial ||
+			 material instanceof THREE.MeshNormalMaterial ) {
 
 			mWireframe = material.wireframe;
 			mLineWidth = material.wireframe_linewidth;
@@ -452,31 +478,7 @@ THREE.WebGLRenderer = function ( scene ) {
 
 		}
 
-		if ( material instanceof THREE.MeshNormalMaterial ) {
-
-			mOpacity = material.opacity;
-			mBlending = material.blending;
-
-			_gl.uniform1f( program.uniforms.mOpacity, mOpacity );
-
-			_gl.uniform1i( program.uniforms.material, NORMAL );
-
-		} else if ( material instanceof THREE.MeshDepthMaterial ) {
-
-			mOpacity = material.opacity;
-
-			mWireframe = material.wireframe;
-			mLineWidth = material.wireframe_linewidth;
-
-			_gl.uniform1f( program.uniforms.mOpacity, mOpacity );
-
-			_gl.uniform1f( program.uniforms.m2Near, material.__2near );
-			_gl.uniform1f( program.uniforms.mFarPlusNear, material.__farPlusNear );
-			_gl.uniform1f( program.uniforms.mFarMinusNear, material.__farMinusNear );
-
-			_gl.uniform1i( program.uniforms.material, DEPTH );
-
-		} else if ( material instanceof THREE.MeshPhongMaterial ) {
+		if ( material instanceof THREE.MeshPhongMaterial ) {
 
 			mAmbient  = material.ambient;
 			mSpecular = material.specular;
@@ -924,7 +926,7 @@ THREE.WebGLRenderer = function ( scene ) {
 			maxDirLights   ? "#define MAX_DIR_LIGHTS " + maxDirLights     : "",
 			maxPointLights ? "#define MAX_POINT_LIGHTS " + maxPointLights : "",
 
-			"uniform int material;", // 0 - Basic, 1 - Lambert, 2 - Phong, 3 - Depth, 4 - Normal
+			"uniform int material;", // 0 - Basic, 1 - Lambert, 2 - Phong
 
 			"uniform bool enableMap;",
 			"uniform bool enableCubeMap;",
@@ -941,10 +943,6 @@ THREE.WebGLRenderer = function ( scene ) {
 			"uniform vec4 mSpecular;",
 			"uniform float mShininess;",
 
-			"uniform float m2Near;",
-			"uniform float mFarPlusNear;",
-			"uniform float mFarMinusNear;",
-
 			"uniform int pointLightNumber;",
 			"uniform int directionalLightNumber;",
 
@@ -985,28 +983,10 @@ THREE.WebGLRenderer = function ( scene ) {
 
 				"}",
 
-				// Normals
-
-				"if ( material == 4 ) { ",
-
-					"gl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, mOpacity );",
-
-				// Depth
-
-				"} else if ( material == 3 ) { ",
-
-					// this breaks shader validation in Chrome 9.0.576.0 dev
-					// and also latest continuous build Chromium 9.0.583.0 (66089)
-					// (curiously it works in Chrome 9.0.576.0 canary build and Firefox 4b7)
-					//"float w = 1.0 - ( m2Near / ( mFarPlusNear - gl_FragCoord.z * mFarMinusNear ) );",
-					"float w = 0.5;",
-
-					"gl_FragColor = vec4( w, w, w, mOpacity );",
-
 				// Blinn-Phong
 				// based on o3d example
 
-				"} else if ( material == 2 ) { ",
+				"if ( material == 2 ) { ",
 
 					"vec3 normal = normalize( vNormal );",
 					"vec3 viewPosition = normalize( vViewPosition );",
@@ -1420,15 +1400,13 @@ THREE.WebGLRenderer = function ( scene ) {
 		// matrices
 		// lights
 		// material properties (Basic / Lambert / Blinn-Phong shader)
-		// material properties (Depth)
 
 		cacheUniformLocations( program, [ 'viewMatrix', 'modelViewMatrix', 'projectionMatrix', 'normalMatrix', 'objectMatrix', 'cameraPosition',
 										   'enableLighting', 'ambientLightColor',
 										   'material', 'mColor', 'mAmbient', 'mSpecular', 'mShininess', 'mOpacity',
 										   'enableMap', 'tMap',
 										   'enableCubeMap', 'tCube', 'mixEnvMap', 'mReflectivity',
-										   'mRefractionRatio', 'useRefract',
-										   'm2Near', 'mFarPlusNear', 'mFarMinusNear'
+										   'mRefractionRatio', 'useRefract'
 		] );
 
 
@@ -1629,5 +1607,74 @@ THREE.WebGLRenderer = function ( scene ) {
 		return str;
 	}
 	*/
+	
+	var ShaderLib = {
+		
+		'depth': {
+
+			uniforms: { "mNear": { type: "f", value: 1.0 }, 
+						"mFar" : { type: "f", value: 2000.0 } },
+
+			fragment_shader: [
+				
+				"uniform float mNear;",
+				"uniform float mFar;",
+
+				"void main() {",
+						
+					"float depth = gl_FragCoord.z / gl_FragCoord.w;",
+					"float color = 1.0 - smoothstep( mNear, mFar, depth );",
+					"gl_FragColor = vec4( vec3( color ), 1.0 );",
+					
+				"}"
+
+			].join("\n"),
+						
+			vertex_shader: [
+
+				"void main() {",
+
+					"gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );",
+
+				"}"
+
+			].join("\n")
+
+		},
+		
+		'normal': {
+			
+			uniforms: { },
+			
+			fragment_shader: [
+				
+				"varying vec3 vNormal;",
+			
+				"void main() {",
+						
+					"gl_FragColor = vec4( 0.5 * normalize( vNormal ) + 0.5, 1.0 );",
+					
+				"}"
+
+			].join("\n"),
+			
+			vertex_shader: [
+			
+				"varying vec3 vNormal;",
+
+				"void main() {",
+			
+					"vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
+					"vNormal = normalize( normalMatrix * normal );",
+
+					"gl_Position = projectionMatrix * mvPosition;",
+
+				"}"
+
+			].join("\n")
+			
+		}
+		
+	};
 
 };

Some files were not shown because too many files changed in this diff