three-low-poly 0.9.7 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +9 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +921 -742
- package/dist/index.es.js.map +1 -1
- package/dist/index.iife.js +8 -8
- package/dist/index.iife.js.map +1 -1
- package/dist/index.umd.js +9 -9
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.iife.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var ThreeLowPoly=function(d,e,x,j,W,N,ee){"use strict";const g={UP:new e.Vector3(0,1,0),DOWN:new e.Vector3(0,-1,0),LEFT:new e.Vector3(-1,0,0),RIGHT:new e.Vector3(1,0,0),FORWARD:new e.Vector3(0,0,1),BACKWARD:new e.Vector3(0,0,-1),X:new e.Vector3(1,0,0),Y:new e.Vector3(0,1,0),Z:new e.Vector3(0,0,1),XY:new e.Vector3(1,1,0).normalize(),XZ:new e.Vector3(1,0,1).normalize(),YZ:new e.Vector3(0,1,1).normalize(),XYZ:new e.Vector3(1,1,1).normalize()},I={LINEAR:(m,o)=>1-m/o,QUADRATIC:(m,o)=>Math.pow(1-m/o,2),SQUARE_ROOT:(m,o)=>Math.pow(1-m/o,.5),LOGARITHMIC:(m,o)=>Math.log(1+(o-m))/Math.log(1+o),SINE:(m,o)=>Math.cos(m/o*Math.PI/2),EXPONENTIAL:(m,o)=>Math.exp(-m/o),CUBIC:(m,o)=>Math.pow(1-m/o,3),GAUSSIAN:(m,o)=>Math.exp(-Math.pow(m,2)/(2*Math.pow(o/3,2))),INVERSE:(m,o)=>o/(o+m),SMOOTHSTEP:(m,o)=>{const t=Math.max(0,Math.min(1,1-m/o));return t*t*(3-2*t)}},oe=(m,o,t,n,c=g.UP,l=I.LINEAR)=>{const s=m.attributes.position;for(let a=0;a<s.count;a++){const i=new e.Vector3;i.fromBufferAttribute(s,a);const r=i.distanceTo(o);if(r<t){const M=l(r,t)*n;i.add(c.clone().multiplyScalar(M)),s.setXYZ(a,i.x,i.y,i.z)}}s.needsUpdate=!0},te=(m,o,t,n,c,l=g.UP,s=I.LINEAR)=>{const a=m.attributes.position;for(let i=0;i<a.count;i++){const r=new e.Vector3;r.fromBufferAttribute(a,i);const u=r.distanceTo(o);if(u<t){const f=s(u,t)*c,w=r.dot(l.normalize()),y=n-w;r.add(l.clone().multiplyScalar(y*f)),a.setXYZ(i,r.x,r.y,r.z)}}a.needsUpdate=!0},ne=(m,o,t,n,c=g.UP,l=I.LINEAR)=>{const s=m.attributes.position;for(let a=0;a<s.count;a++){const i=new e.Vector3;i.fromBufferAttribute(s,a);const r=i.distanceTo(o);if(r<t){const u=l(r,t),M=n*u,f=c.clone().normalize();f.x!==0&&(i.x+=e.MathUtils.randFloatSpread(M)*f.x),f.y!==0&&(i.y+=e.MathUtils.randFloatSpread(M)*f.y),f.z!==0&&(i.z+=e.MathUtils.randFloatSpread(M)*f.z),s.setXYZ(a,i.x,i.y,i.z)}}s.needsUpdate=!0},se=(m,o,t,n)=>{const c=m.attributes.position,l=new e.Vector3;for(let s=0;s<c.count;s++){const a=new e.Vector3;if(a.fromBufferAttribute(c,s),a.distanceTo(o)<t){let r=new e.Vector3,u=0;for(let M=0;M<c.count;M++)l.fromBufferAttribute(c,M),l.distanceTo(a)<t&&(r.add(l),u++);u>0&&(r.divideScalar(u),a.lerp(r,n),c.setXYZ(s,a.x,a.y,a.z))}}c.needsUpdate=!0},ae=(m,o,t,n,c=!1,l=I.LINEAR)=>{const s=m.attributes.position;for(let a=0;a<s.count;a++){const i=new e.Vector3;i.fromBufferAttribute(s,a);const r=i.distanceTo(o);if(r<t){const M=l(r,t)*n*(c?-1:1),f=i.clone().sub(o).normalize();i.add(f.multiplyScalar(M)),s.setXYZ(a,i.x,i.y,i.z)}}s.needsUpdate=!0},re=(m,o,t,n,c=g.UP,l=I.LINEAR)=>{const s=m.attributes.position,a=new e.Quaternion;for(let i=0;i<s.count;i++){const r=new e.Vector3;r.fromBufferAttribute(s,i);const u=r.distanceTo(o);if(u<t){const f=l(u,t)*n;a.setFromAxisAngle(c,f),r.sub(o).applyQuaternion(a).add(o),s.setXYZ(i,r.x,r.y,r.z)}}s.needsUpdate=!0},ce={LINEAR:m=>m,QUADRATIC_EASE_IN:m=>m*m,QUADRATIC_EASE_OUT:m=>1-Math.pow(1-m,2),SQUARE_ROOT_EASING:m=>Math.sqrt(m),LOGARITHMIC_EASING:m=>Math.log(1+m)/Math.log(2),SINE_EASE_IN:m=>1-Math.cos(m*Math.PI/2),SINE_EASE_OUT:m=>Math.sin(m*Math.PI/2),EXPONENTIAL_EASE_IN:m=>Math.pow(2,10*(m-1)),EXPONENTIAL_EASE_OUT:m=>1-Math.pow(2,-10*m),CUBIC_EASE_IN:m=>m*m*m,CUBIC_EASE_OUT:m=>1-Math.pow(1-m,3),GAUSSIAN_EASING:m=>Math.exp(-Math.pow(m-.5,2)/(2*.1)),INVERSE_EASING:m=>1/(1+m),SMOOTHSTEP_EASING:m=>m*m*(3-2*m)};class ie extends e.Group{constructor(){super();const o=[],t=20,n=new e.SphereGeometry(.1,6,6),c=new e.MeshStandardMaterial({color:16777215,transparent:!0,opacity:.6,roughness:.3,metalness:.3});for(let a=0;a<t;a++){const i=new e.Mesh(n,c);i.position.set((Math.random()-.5)*1.5,Math.random()*3,(Math.random()-.5)*1.5),o.push(i),this.add(i)}function l(){o.forEach(a=>{a.position.y+=.02,a.position.y>3&&(a.position.y=0,a.position.x=(Math.random()-.5)*1.5,a.position.z=(Math.random()-.5)*1.5)})}function s(){requestAnimationFrame(s),l()}s()}}class le extends e.BufferGeometry{constructor(o=2,t=.3,n=.6,c=5,l=5,s=Math.PI/4){super();const a=[],i=[];for(let w=0;w<c;w++){const y=w*t,G=y+t,p=w*n,v=p+n;a.push(-o/2,y,p,o/2,y,p,o/2,G,p,-o/2,G,p,-o/2,G,p,o/2,G,p,o/2,G,v,-o/2,G,v);const S=w*8;i.push(S,S+1,S+2,S,S+2,S+3),i.push(S+4,S+5,S+6,S+4,S+6,S+7)}const r=c*t,u=c*n,M=o*2;a.push(-M/2,r,u,M/2,r,u,M/2,r,u+n,-M/2,r,u+n);const f=c*8;i.push(f,f+1,f+2,f,f+2,f+3);for(let w=0;w<2;w++){const y=w===0?1:-1;for(let G=0;G<l;G++){const p=r+G*t,v=p+t,S=y*(M/4),P=u+n,C=G*n*Math.cos(s),b=G*n*Math.sin(s),B=S+y*C-o/2*Math.cos(s),E=S+y*C+o/2*Math.cos(s),k=P+b,ao=B+y*n*Math.cos(s),ro=E+y*n*Math.cos(s),$=k+n*Math.sin(s);a.push(B,p,k,E,p,k,E,v,k,B,v,k,B,v,k,E,v,k,ro,v,$,ao,v,$);const h=f+4+w*l*8+G*8;i.push(h,h+1,h+2,h,h+2,h+3),i.push(h+4,h+5,h+6,h+4,h+6,h+7)}}this.setIndex(i),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class me extends e.BufferGeometry{constructor(o=5,t=3,n=5,c=.2){super();const l=[-o/2,0,-n/2,o/2,0,-n/2,o/2,0,n/2,-o/2,0,n/2,-o/2,0,-n/2,o/2,0,-n/2,o/2,t,-n/2,-o/2,t,-n/2,-o/2,0,-n/2,-o/2,0,n/2,-o/2,t,n/2,-o/2,t,-n/2],s=[0,1,2,0,2,3,4,5,6,4,6,7,8,9,10,8,10,11];this.setIndex(s),this.setAttribute("position",new e.Float32BufferAttribute(l,3)),this.computeVertexNormals()}}class ue extends e.BufferGeometry{constructor(o=2,t=.3,n=.5,c=5,l=2){super();const s=[],a=[];for(let M=0;M<c;M++){const f=M*t,w=f+t,y=M*n,G=y+n;s.push(-o/2,f,y,o/2,f,y,o/2,w,y,-o/2,w,y,-o/2,w,y,o/2,w,y,o/2,w,G,-o/2,w,G);const p=M*8;a.push(p,p+1,p+2,p,p+2,p+3),a.push(p+4,p+5,p+6,p+4,p+6,p+7)}const i=c*t,r=c*n;s.push(-o/2,i,r,o/2,i,r,o/2,i,r+l,-o/2,i,r+l);const u=c*8;a.push(u,u+1,u+2,u,u+2,u+3);for(let M=0;M<c;M++){const f=i+M*t,w=f+t,y=-o/2-M*n,G=y-n;s.push(y,f,r+l,y,f,r+l-o,y,w,r+l-o,y,w,r+l,y,w,r+l,y,w,r+l-o,G,w,r+l-o,G,w,r+l);const p=u+4+M*8;a.push(p,p+1,p+2,p,p+2,p+3),a.push(p+4,p+5,p+6,p+4,p+6,p+7)}this.setIndex(a),this.setAttribute("position",new e.Float32BufferAttribute(s,3)),this.computeVertexNormals()}}class de extends e.BufferGeometry{constructor(o=1,t=.4,n=.2,c=20,l=2,s=Math.PI/8){super();const a=[],i=[];let r=0;for(let u=0;u<c;u++){const M=l*Math.cos(r),f=l*Math.sin(r),w=u*n,y=w+n;a.push(M-o/2*Math.cos(r),w,f-o/2*Math.sin(r),M+o/2*Math.cos(r),w,f+o/2*Math.sin(r),M+o/2*Math.cos(r),y,f+o/2*Math.sin(r),M-o/2*Math.cos(r),y,f-o/2*Math.sin(r)),a.push(M-o/2*Math.cos(r),y,f-o/2*Math.sin(r),M+o/2*Math.cos(r),y,f+o/2*Math.sin(r),M+o/2*Math.cos(r)-t*Math.sin(r),y,f+o/2*Math.sin(r)+t*Math.cos(r),M-o/2*Math.cos(r)-t*Math.sin(r),y,f-o/2*Math.sin(r)+t*Math.cos(r));const G=u*8;i.push(G,G+1,G+2,G,G+2,G+3),i.push(G+4,G+5,G+6,G+4,G+6,G+7),r+=s}this.setIndex(i),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class Me extends e.BufferGeometry{constructor(o=2,t=.3,n=.5,c=10){super();const l=[],s=[];for(let a=0;a<c;a++){const i=a*t,r=i+t,u=a*n,M=u+n;l.push(-o/2,i,u,o/2,i,u,o/2,r,u,-o/2,r,u,-o/2,r,u,o/2,r,u,o/2,r,M,-o/2,r,M);const f=a*8;s.push(f,f+1,f+2,f,f+2,f+3),s.push(f+4,f+6,f+5,f+4,f+7,f+6)}this.setIndex(s),this.setAttribute("position",new e.Float32BufferAttribute(l,3)),this.computeVertexNormals()}}class F extends e.BufferGeometry{constructor(o=1,t=1.5,n=.5,c=.05,l=.05){super();const s=o,a=t,i=n,r=c,u=l,M=[0,0,0,s,0,0,s,a,0,0,a,0,s,0,-i,0,0,-i,0,a,-i,s,a,-i,0,0,-i,0,0,0,0,a,0,0,a,-i,s,0,-r,r,0,-r,r,a,-r,s,a,-r,r,0,-i+r,s,0,-i+r,s,a,-i+r,r,a,-i+r,r,0,-r,r,0,-i+r,r,a,-i+r,r,a,-r,0,a,0,s,a,0,s,a,-r,r,a,-r,0,a,-i,r,a,-i+r,s,a,-i+r,s,a,-i,0,a,0,r,a,-r,r,a,-i+r,0,a,-i,0,0,0,r,0,-r,s,0,-r,s,0,0,0,0,-i,s,0,-i,s,0,-i+r,r,0,-i+r,0,0,0,0,0,-i,r,0,-i+r,r,0,-r,s,0,0,s,0,-r,s,a,-r,s,a,0,s,0,-i,s,a,-i,s,a,-i+r,s,0,-i+r],f=[0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0],w=o/(o*2+n),y=(o+n)/(o*2+n),G=[y,0,1,0,1,1,y,1,0,0,w,0,w,1,0,1,w,0,y,0,y,1,w,1,1,0,y,0,y,1,1,1,w,0,0,0,0,1,w,1,y,0,w,0,w,1,y,1,y,0,1,0,1,1,y,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1],p=[0,1,2,0,2,3,4,5,6,4,6,7,8,9,10,8,10,11,12,13,14,12,14,15,16,17,18,16,18,19,20,21,22,20,22,23,24,25,26,24,26,27,28,29,30,28,30,31,32,33,34,32,34,35,36,37,38,36,38,39,40,41,42,40,42,43,44,45,46,44,46,47,48,49,50,48,50,51,52,53,54,52,54,55],v=new Float32Array(M),S=new Float32Array(f),P=new Float32Array(G),C=new Uint16Array(p),b=new e.BufferGeometry;b.setAttribute("position",new e.BufferAttribute(v,3)),b.setAttribute("normal",new e.BufferAttribute(S,3)),b.setAttribute("uv",new e.BufferAttribute(P,2)),b.setIndex(new e.BufferAttribute(C,1));const B=new e.BoxGeometry(o-r-u,a-u*2,i-r*2);B.translate((o-r-u)/2+r,a/2,-i/2),this.copy(x.mergeGeometries([b,B],!0))}}class L extends e.BufferGeometry{constructor(o=.4,t=1.2,n=.2){super();const c=t*.6,l=new e.BoxGeometry(o/2,c,n);l.translate(0,c/2,0);const s=o*1.5,a=new e.BoxGeometry(s,o/4,n);a.translate(0,c*.75,0),this.copy(x.mergeGeometries([l,a],!1)),this.computeVertexNormals()}}class z extends e.BufferGeometry{constructor(o=1.75,t=.75){super();const n=o*.05,c=o*.15,l=o*.15,s=o*.75;let a=0;const i=new e.BoxGeometry(t,n,t);i.translate(0,a+n/2,0),a+=n;const r=new e.BoxGeometry(t*.8,c,t*.8);r.translate(0,a+c/2,0),a+=c;const u=new e.BoxGeometry(t*.6,l,t*.6);u.translate(0,a+l/2,0),a+=l;const M=new e.BoxGeometry(t*.4,s,t*.4);M.translate(0,a+s/2,0),a+=s;const f=new e.ConeGeometry(t*.4/Math.sqrt(2),.1,4,1,!1,Math.PI/4);f.translate(0,a+.05,0),this.copy(x.mergeGeometries([i,r,u,M,f],!1)),this.computeVertexNormals()}}class q extends e.BufferGeometry{constructor(o=.6,t=1,n=.2,c=.6){super();const l=t-c/2,s=new e.BoxGeometry(o,l,n);s.translate(0,l/2,0);const a=new e.CylinderGeometry(c/2,c/2,n,16,1,!1,0,Math.PI);a.rotateY(Math.PI/2),a.rotateX(Math.PI/2),a.translate(0,l,0),this.copy(x.mergeGeometries([s,a],!1)),this.computeVertexNormals()}}class U extends e.BufferGeometry{constructor(o=.5,t=.8,n=.15){super();const c=new e.BoxGeometry(o,t,n);c.translate(0,t/2,0),this.copy(c)}}class fe extends e.BufferGeometry{constructor(o=2.25){super();const t=new e.BoxGeometry(1.2,.5,1.2);t.translate(0,.25,0);const n=new e.BoxGeometry(1,o,1);n.translate(0,.5+o/2,0);const c=new e.BoxGeometry(1.4,.3,1.4);c.translate(0,.5+o+.15,0),this.copy(x.mergeGeometries([t,n,c],!1))}}class ye extends e.BufferGeometry{constructor(o=2,t=.05,n=.3){super();const c=new e.CylinderGeometry(t,t,o,8);c.translate(0,o/2,0);const l=new e.ConeGeometry(t*1.5,n,8);l.translate(0,o+n/2,0),this.copy(x.mergeGeometries([c,l],!1))}}class we extends e.BufferGeometry{constructor(o=.1){super();const t=[],n=[],c=[[0,1],[.5,.75],[.75,.25],[.5,-.5],[0,-1],[-.5,-.5],[-.75,.25],[-.5,.75]];for(let s=0;s<c.length;s++){const[a,i]=c[s];t.push(a*o,i*o,0)}for(let s=1;s<c.length-1;s++)n.push(0,s,s+1);n.push(0,c.length-1,1);const l=new e.Float32BufferAttribute(t,3);this.setAttribute("position",l),this.setIndex(n),this.computeVertexNormals()}}function O(m,o=g.XYZ,t=.5,n=2){m.deleteAttribute("uv"),m.deleteAttribute("normal"),m=x.mergeVertices(m),m.computeVertexNormals();const c=m.getAttribute("position");for(let l=0;l<c.count;l++){const s=new e.Vector3().fromBufferAttribute(c,l),a=Math.random()*(n-t)+t,i=o.clone().multiplyScalar(a);s.add(i),c.setXYZ(l,s.x,s.y,s.z)}return c.needsUpdate=!0,m.computeVertexNormals(),m}class D extends e.BufferGeometry{constructor(o=1,t=4,n=4){super();const c=new e.SphereGeometry(o,t,n);this.copy(O(c,g.XYZ,.5,1)),this.computeVertexNormals(),this.center()}}class pe extends e.BufferGeometry{constructor(o=.1,t=.1,n=.4,c=8){super();const l=new e.CylinderGeometry(o*.6,t*.6,n,c);l.translate(0,0,0);const s=new e.SphereGeometry(o,c,c),a=s.clone(),i=s.clone(),r=s.clone(),u=s.clone();a.translate(0,n/2+o*.6,-o*.6),i.translate(0,n/2+o*.6,o*.6),r.translate(0,-n/2-t*.6,-t*.6),u.translate(0,-n/2-t*.6,t*.6),this.copy(x.mergeGeometries([l,a,i,r,u],!1))}}class X extends e.BufferGeometry{constructor(){super();const o=new e.SphereGeometry(1,16,16),t=new e.CylinderGeometry(.2,.2,2,16,1,!0);t.translate(0,1.5,0),t.rotateX(Math.PI/2),this.copy(x.mergeGeometries([o,t],!1))}}class _ extends e.BufferGeometry{constructor(){super();const o=[new e.Vector2(1,0),new e.Vector2(1.2,.5),new e.Vector2(1.4,1.5),new e.Vector2(1.3,1.8),new e.Vector2(.8,1.8)],t=new e.LatheGeometry(o,12),n=new e.CircleGeometry(1,12);n.rotateX(-Math.PI/2),n.translate(0,0,0),this.copy(x.mergeGeometries([t,n],!1))}}class T extends e.BufferGeometry{constructor(o=.2,t=.2,n=3,c=32,l=!0){super();const s=new e.CylinderGeometry(o,t,n,c,1,l),a=new e.SphereGeometry(t,c,c/2,0,Math.PI*2,Math.PI/2,Math.PI/2);a.translate(0,-(n/2),0),this.copy(x.mergeGeometries([s,a],!1))}}class H extends e.BufferGeometry{constructor({radius:o=.5,neckRadius:t=.2,height:n=3,neckHeight:c=1,segments:l=16}={}){super();const s=n-c,a=new e.CylinderGeometry(o,o,s,l);a.translate(0,s/2,0);const i=.3,r=new e.CylinderGeometry(t,o,i,l);r.translate(0,s+i/2,0);const u=new e.CylinderGeometry(t,t,c,l);u.translate(0,s+i+c/2,0),this.copy(x.mergeGeometries([a,r,u],!1))}}class Y extends e.BufferGeometry{constructor({trunkRadiusTop:o=.25,trunkRadiusBottom:t=.4,trunkHeight:n=2.5,trunkSegments:c=14,leafSize:l=.8,leafCount:s=6,leafDetail:a=0,leafSpreadRadius:i=1.5}={}){super();const r=new e.CylinderGeometry(o,t,n,c);r.translate(0,n/2,0);const u=[];for(let M=0;M<s;M++){const f=new e.DodecahedronGeometry(l,a);f.translate((Math.random()-.5)*i,(Math.random()-.5)*l+n,(Math.random()-.5)*i),u.push(f)}this.copy(x.mergeGeometries([r.toNonIndexed(),x.mergeGeometries(u,!1)],!0)),this.computeVertexNormals()}}class Ge extends e.Group{constructor(){super();const o=new e.SphereGeometry(5,32,32),t=new e.ShaderMaterial({uniforms:{time:{value:0}},vertexShader:`
|
|
1
|
+
var ThreeLowPoly=function(u,e,x,ae,re,L,ce){"use strict";const g={UP:new e.Vector3(0,1,0),DOWN:new e.Vector3(0,-1,0),LEFT:new e.Vector3(-1,0,0),RIGHT:new e.Vector3(1,0,0),FORWARD:new e.Vector3(0,0,1),BACKWARD:new e.Vector3(0,0,-1),X:new e.Vector3(1,0,0),Y:new e.Vector3(0,1,0),Z:new e.Vector3(0,0,1),XY:new e.Vector3(1,1,0).normalize(),XZ:new e.Vector3(1,0,1).normalize(),YZ:new e.Vector3(0,1,1).normalize(),XYZ:new e.Vector3(1,1,1).normalize()},P={LINEAR:(l,o)=>1-l/o,QUADRATIC:(l,o)=>Math.pow(1-l/o,2),SQUARE_ROOT:(l,o)=>Math.pow(1-l/o,.5),LOGARITHMIC:(l,o)=>Math.log(1+(o-l))/Math.log(1+o),SINE:(l,o)=>Math.cos(l/o*Math.PI/2),EXPONENTIAL:(l,o)=>Math.exp(-l/o),CUBIC:(l,o)=>Math.pow(1-l/o,3),GAUSSIAN:(l,o)=>Math.exp(-Math.pow(l,2)/(2*Math.pow(o/3,2))),INVERSE:(l,o)=>o/(o+l),SMOOTHSTEP:(l,o)=>{const t=Math.max(0,Math.min(1,1-l/o));return t*t*(3-2*t)}},ie=(l,o,t,n,r=g.UP,m=P.LINEAR)=>{const s=l.attributes.position;for(let a=0;a<s.count;a++){const c=new e.Vector3;c.fromBufferAttribute(s,a);const i=c.distanceTo(o);if(i<t){const M=m(i,t)*n;c.add(r.clone().multiplyScalar(M)),s.setXYZ(a,c.x,c.y,c.z)}}s.needsUpdate=!0},le=(l,o,t,n,r,m=g.UP,s=P.LINEAR)=>{const a=l.attributes.position;for(let c=0;c<a.count;c++){const i=new e.Vector3;i.fromBufferAttribute(a,c);const d=i.distanceTo(o);if(d<t){const y=s(d,t)*r,w=i.dot(m.normalize()),f=n-w;i.add(m.clone().multiplyScalar(f*y)),a.setXYZ(c,i.x,i.y,i.z)}}a.needsUpdate=!0},me=(l,o,t,n,r=g.UP,m=P.LINEAR)=>{const s=l.attributes.position;for(let a=0;a<s.count;a++){const c=new e.Vector3;c.fromBufferAttribute(s,a);const i=c.distanceTo(o);if(i<t){const d=m(i,t),M=n*d,y=r.clone().normalize();c.x+=e.MathUtils.randFloatSpread(M)*y.x,c.y+=e.MathUtils.randFloatSpread(M)*y.y,c.z+=e.MathUtils.randFloatSpread(M)*y.z,s.setXYZ(a,c.x,c.y,c.z)}}s.needsUpdate=!0},ue=(l,o,t,n)=>{const r=l.attributes.position,m=new e.Vector3;for(let s=0;s<r.count;s++){const a=new e.Vector3;if(a.fromBufferAttribute(r,s),a.distanceTo(o)<t){let i=new e.Vector3,d=0;for(let M=0;M<r.count;M++)m.fromBufferAttribute(r,M),m.distanceTo(a)<t&&(i.add(m),d++);d>0&&(i.divideScalar(d),a.lerp(i,n),r.setXYZ(s,a.x,a.y,a.z))}}r.needsUpdate=!0},de=(l,o,t,n,r=!1,m=P.LINEAR)=>{const s=l.attributes.position;for(let a=0;a<s.count;a++){const c=new e.Vector3;c.fromBufferAttribute(s,a);const i=c.distanceTo(o);if(i<t){const M=m(i,t)*n*(r?-1:1),y=c.clone().sub(o).normalize();c.add(y.multiplyScalar(M)),s.setXYZ(a,c.x,c.y,c.z)}}s.needsUpdate=!0},Me=(l,o,t,n,r=g.UP,m=P.LINEAR)=>{const s=l.attributes.position,a=new e.Quaternion;for(let c=0;c<s.count;c++){const i=new e.Vector3;i.fromBufferAttribute(s,c);const d=i.distanceTo(o);if(d<t){const y=m(d,t)*n;a.setFromAxisAngle(r,y),i.sub(o).applyQuaternion(a).add(o),s.setXYZ(c,i.x,i.y,i.z)}}s.needsUpdate=!0},ye={LINEAR:l=>l,QUADRATIC_EASE_IN:l=>l*l,QUADRATIC_EASE_OUT:l=>1-Math.pow(1-l,2),SQUARE_ROOT_EASING:l=>Math.sqrt(l),LOGARITHMIC_EASING:l=>Math.log(1+l)/Math.log(2),SINE_EASE_IN:l=>1-Math.cos(l*Math.PI/2),SINE_EASE_OUT:l=>Math.sin(l*Math.PI/2),EXPONENTIAL_EASE_IN:l=>Math.pow(2,10*(l-1)),EXPONENTIAL_EASE_OUT:l=>1-Math.pow(2,-10*l),CUBIC_EASE_IN:l=>l*l*l,CUBIC_EASE_OUT:l=>1-Math.pow(1-l,3),GAUSSIAN_EASING:l=>Math.exp(-Math.pow(l-.5,2)/(2*.1)),INVERSE_EASING:l=>1/(1+l),SMOOTHSTEP_EASING:l=>l*l*(3-2*l)};class fe extends e.Group{constructor(){super();const o=[],t=20,n=new e.SphereGeometry(.1,6,6),r=new e.MeshStandardMaterial({color:16777215,transparent:!0,opacity:.6,roughness:.3,metalness:.3});for(let a=0;a<t;a++){const c=new e.Mesh(n,r);c.position.set((Math.random()-.5)*1.5,Math.random()*3,(Math.random()-.5)*1.5),o.push(c),this.add(c)}function m(){o.forEach(a=>{a.position.y+=.02,a.position.y>3&&(a.position.y=0,a.position.x=(Math.random()-.5)*1.5,a.position.z=(Math.random()-.5)*1.5)})}function s(){requestAnimationFrame(s),m()}s()}}class we extends e.BufferGeometry{constructor(o=2,t=.3,n=.6,r=5,m=5,s=Math.PI/4){super();const a=[],c=[];for(let w=0;w<r;w++){const f=w*t,G=f+t,p=w*n,h=p+n;a.push(-o/2,f,p,o/2,f,p,o/2,G,p,-o/2,G,p,-o/2,G,p,o/2,G,p,o/2,G,h,-o/2,G,h);const S=w*8;c.push(S,S+1,S+2,S,S+2,S+3),c.push(S+4,S+5,S+6,S+4,S+6,S+7)}const i=r*t,d=r*n,M=o*2;a.push(-M/2,i,d,M/2,i,d,M/2,i,d+n,-M/2,i,d+n);const y=r*8;c.push(y,y+1,y+2,y,y+2,y+3);for(let w=0;w<2;w++){const f=w===0?1:-1;for(let G=0;G<m;G++){const p=i+G*t,h=p+t,S=f*(M/4),k=d+n,C=G*n*Math.cos(s),b=G*n*Math.sin(s),B=S+f*C-o/2*Math.cos(s),V=S+f*C+o/2*Math.cos(s),I=k+b,So=B+f*n*Math.cos(s),xo=V+f*n*Math.cos(s),se=I+n*Math.sin(s);a.push(B,p,I,V,p,I,V,h,I,B,h,I,B,h,I,V,h,I,xo,h,se,So,h,se);const v=y+4+w*m*8+G*8;c.push(v,v+1,v+2,v,v+2,v+3),c.push(v+4,v+5,v+6,v+4,v+6,v+7)}}this.setIndex(c),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class pe extends e.BufferGeometry{constructor(o=5,t=3,n=5,r=.2){super();const m=[-o/2,0,-n/2,o/2,0,-n/2,o/2,0,n/2,-o/2,0,n/2,-o/2,0,-n/2,o/2,0,-n/2,o/2,t,-n/2,-o/2,t,-n/2,-o/2,0,-n/2,-o/2,0,n/2,-o/2,t,n/2,-o/2,t,-n/2],s=[0,1,2,0,2,3,4,5,6,4,6,7,8,9,10,8,10,11];this.setIndex(s),this.setAttribute("position",new e.Float32BufferAttribute(m,3)),this.computeVertexNormals()}}class Ge extends e.BufferGeometry{constructor(o=2,t=.3,n=.5,r=5,m=2){super();const s=[],a=[];for(let M=0;M<r;M++){const y=M*t,w=y+t,f=M*n,G=f+n;s.push(-o/2,y,f,o/2,y,f,o/2,w,f,-o/2,w,f,-o/2,w,f,o/2,w,f,o/2,w,G,-o/2,w,G);const p=M*8;a.push(p,p+1,p+2,p,p+2,p+3),a.push(p+4,p+5,p+6,p+4,p+6,p+7)}const c=r*t,i=r*n;s.push(-o/2,c,i,o/2,c,i,o/2,c,i+m,-o/2,c,i+m);const d=r*8;a.push(d,d+1,d+2,d,d+2,d+3);for(let M=0;M<r;M++){const y=c+M*t,w=y+t,f=-o/2-M*n,G=f-n;s.push(f,y,i+m,f,y,i+m-o,f,w,i+m-o,f,w,i+m,f,w,i+m,f,w,i+m-o,G,w,i+m-o,G,w,i+m);const p=d+4+M*8;a.push(p,p+1,p+2,p,p+2,p+3),a.push(p+4,p+5,p+6,p+4,p+6,p+7)}this.setIndex(a),this.setAttribute("position",new e.Float32BufferAttribute(s,3)),this.computeVertexNormals()}}class he extends e.BufferGeometry{constructor(o=1,t=.4,n=.2,r=20,m=2,s=Math.PI/8){super();const a=[],c=[];let i=0;for(let d=0;d<r;d++){const M=m*Math.cos(i),y=m*Math.sin(i),w=d*n,f=w+n;a.push(M-o/2*Math.cos(i),w,y-o/2*Math.sin(i),M+o/2*Math.cos(i),w,y+o/2*Math.sin(i),M+o/2*Math.cos(i),f,y+o/2*Math.sin(i),M-o/2*Math.cos(i),f,y-o/2*Math.sin(i)),a.push(M-o/2*Math.cos(i),f,y-o/2*Math.sin(i),M+o/2*Math.cos(i),f,y+o/2*Math.sin(i),M+o/2*Math.cos(i)-t*Math.sin(i),f,y+o/2*Math.sin(i)+t*Math.cos(i),M-o/2*Math.cos(i)-t*Math.sin(i),f,y-o/2*Math.sin(i)+t*Math.cos(i));const G=d*8;c.push(G,G+1,G+2,G,G+2,G+3),c.push(G+4,G+5,G+6,G+4,G+6,G+7),i+=s}this.setIndex(c),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class Se extends e.BufferGeometry{constructor(o=2,t=.3,n=.5,r=10){super();const m=[],s=[];for(let a=0;a<r;a++){const c=a*t,i=c+t,d=a*n,M=d+n;m.push(-o/2,c,d,o/2,c,d,o/2,i,d,-o/2,i,d,-o/2,i,d,o/2,i,d,o/2,i,M,-o/2,i,M);const y=a*8;s.push(y,y+1,y+2,y,y+2,y+3),s.push(y+4,y+6,y+5,y+4,y+7,y+6)}this.setIndex(s),this.setAttribute("position",new e.Float32BufferAttribute(m,3)),this.computeVertexNormals()}}class z extends e.BufferGeometry{constructor(o=1,t=1.5,n=.5,r=.05,m=.05){super();const s=o,a=t,c=n,i=r,d=m,M=[0,0,0,s,0,0,s,a,0,0,a,0,s,0,-c,0,0,-c,0,a,-c,s,a,-c,0,0,-c,0,0,0,0,a,0,0,a,-c,s,0,-i,i,0,-i,i,a,-i,s,a,-i,i,0,-c+i,s,0,-c+i,s,a,-c+i,i,a,-c+i,i,0,-i,i,0,-c+i,i,a,-c+i,i,a,-i,0,a,0,s,a,0,s,a,-i,i,a,-i,0,a,-c,i,a,-c+i,s,a,-c+i,s,a,-c,0,a,0,i,a,-i,i,a,-c+i,0,a,-c,0,0,0,i,0,-i,s,0,-i,s,0,0,0,0,-c,s,0,-c,s,0,-c+i,i,0,-c+i,0,0,0,0,0,-c,i,0,-c+i,i,0,-i,s,0,0,s,0,-i,s,a,-i,s,a,0,s,0,-c,s,a,-c,s,a,-c+i,s,0,-c+i],y=[0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0],w=o/(o*2+n),f=(o+n)/(o*2+n),G=[f,0,1,0,1,1,f,1,0,0,w,0,w,1,0,1,w,0,f,0,f,1,w,1,1,0,f,0,f,1,1,1,w,0,0,0,0,1,w,1,f,0,w,0,w,1,f,1,f,0,1,0,1,1,f,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1],p=[0,1,2,0,2,3,4,5,6,4,6,7,8,9,10,8,10,11,12,13,14,12,14,15,16,17,18,16,18,19,20,21,22,20,22,23,24,25,26,24,26,27,28,29,30,28,30,31,32,33,34,32,34,35,36,37,38,36,38,39,40,41,42,40,42,43,44,45,46,44,46,47,48,49,50,48,50,51,52,53,54,52,54,55],h=new Float32Array(M),S=new Float32Array(y),k=new Float32Array(G),C=new Uint16Array(p),b=new e.BufferGeometry;b.setAttribute("position",new e.BufferAttribute(h,3)),b.setAttribute("normal",new e.BufferAttribute(S,3)),b.setAttribute("uv",new e.BufferAttribute(k,2)),b.setIndex(new e.BufferAttribute(C,1));const B=new e.BoxGeometry(o-i-d,a-d*2,c-i*2);B.translate((o-i-d)/2+i,a/2,-c/2),this.copy(x.mergeGeometries([b,B],!0))}}class q extends e.BufferGeometry{constructor(o=.4,t=1.2,n=.2){super();const r=t*.6,m=new e.BoxGeometry(o/2,r,n);m.translate(0,r/2,0);const s=o*1.5,a=new e.BoxGeometry(s,o/4,n);a.translate(0,r*.75,0),this.copy(x.mergeGeometries([m,a],!1)),this.computeVertexNormals()}}class U extends e.BufferGeometry{constructor(o=1.75,t=.75){super();const n=o*.05,r=o*.15,m=o*.15,s=o*.75;let a=0;const c=new e.BoxGeometry(t,n,t);c.translate(0,a+n/2,0),a+=n;const i=new e.BoxGeometry(t*.8,r,t*.8);i.translate(0,a+r/2,0),a+=r;const d=new e.BoxGeometry(t*.6,m,t*.6);d.translate(0,a+m/2,0),a+=m;const M=new e.BoxGeometry(t*.4,s,t*.4);M.translate(0,a+s/2,0),a+=s;const y=new e.ConeGeometry(t*.4/Math.sqrt(2),.1,4,1,!1,Math.PI/4);y.translate(0,a+.05,0),this.copy(x.mergeGeometries([c,i,d,M,y],!1)),this.computeVertexNormals()}}class O extends e.BufferGeometry{constructor(o=.6,t=1,n=.2,r=.6){super();const m=t-r/2,s=new e.BoxGeometry(o,m,n);s.translate(0,m/2,0);const a=new e.CylinderGeometry(r/2,r/2,n,16,1,!1,0,Math.PI);a.rotateY(Math.PI/2),a.rotateX(Math.PI/2),a.translate(0,m,0),this.copy(x.mergeGeometries([s,a],!1)),this.computeVertexNormals()}}class D extends e.BufferGeometry{constructor(o=.5,t=.8,n=.15){super();const r=new e.BoxGeometry(o,t,n);r.translate(0,t/2,0),this.copy(r)}}class H extends e.BufferGeometry{constructor({height:o=2.25}={}){super();const t=new e.BoxGeometry(1.2,.5,1.2);t.translate(0,.25,0);const n=new e.BoxGeometry(1,o,1);n.translate(0,.5+o/2,0);const r=new e.BoxGeometry(1.4,.3,1.4);r.translate(0,.5+o+.15,0),this.copy(x.mergeGeometries([t,n,r],!1))}}class E extends e.BufferGeometry{constructor({barHeight:o=2,barRadius:t=.05,spikeHeight:n=.3,spikeRadius:r=.075,spikeScaleZ:m=1,radialSegments:s=8}={}){super();const a=new e.CylinderGeometry(t,t,o,s);a.translate(0,o/2,0);const c=new e.ConeGeometry(r,n,s);c.translate(0,o+n/2,0),c.scale(1,1,m),this.copy(x.mergeGeometries([a,c],!1))}}class R extends e.BufferGeometry{constructor({count:o=20,spacing:t=.4,barHeight:n=2,barRadius:r=.05,spikeHeight:m=.3,spikeRadius:s=.075,spikeScaleZ:a=1,railHeight:c=.1,railDepth:i=.05,railOffset:d=0}={}){super();const M=[],y=new E({barHeight:n,barRadius:r,spikeHeight:m,spikeRadius:s,spikeScaleZ:a}),w=new e.BoxGeometry(o*t,c,i);for(let p=0;p<o;p++){const h=y.clone();h.translate(p*t,0,0),M.push(h)}const f=w.clone();f.translate(t*(o-1)/2,n-d-c/2,0),M.push(f);const G=w.clone();G.translate(t*(o-1)/2,c/2,0),M.push(G),this.copy(x.mergeGeometries(M))}}class xe extends e.BufferGeometry{constructor(o=.1){super();const t=[],n=[],r=[[0,1],[.5,.75],[.75,.25],[.5,-.5],[0,-1],[-.5,-.5],[-.75,.25],[-.5,.75]];for(let s=0;s<r.length;s++){const[a,c]=r[s];t.push(a*o,c*o,0)}for(let s=1;s<r.length-1;s++)n.push(0,s,s+1);n.push(0,r.length-1,1);const m=new e.Float32BufferAttribute(t,3);this.setAttribute("position",m),this.setIndex(n),this.computeVertexNormals()}}function X(l,o=g.XYZ,t=.5,n=2){l.deleteAttribute("uv"),l.deleteAttribute("normal"),l=x.mergeVertices(l),l.computeVertexNormals();const r=l.getAttribute("position");for(let m=0;m<r.count;m++){const s=new e.Vector3().fromBufferAttribute(r,m),a=Math.random()*(n-t)+t,c=o.clone().multiplyScalar(a);s.add(c),r.setXYZ(m,s.x,s.y,s.z)}return r.needsUpdate=!0,l.computeVertexNormals(),l}class Y extends e.BufferGeometry{constructor(o=1,t=4,n=4){super();const r=new e.SphereGeometry(o,t,n);this.copy(X(r,g.XYZ,.5,1)),this.computeVertexNormals(),this.center()}}class ve extends e.BufferGeometry{constructor(o=.1,t=.1,n=.4,r=8){super();const m=new e.CylinderGeometry(o*.6,t*.6,n,r);m.translate(0,0,0);const s=new e.SphereGeometry(o,r,r),a=s.clone(),c=s.clone(),i=s.clone(),d=s.clone();a.translate(0,n/2+o*.6,-o*.6),c.translate(0,n/2+o*.6,o*.6),i.translate(0,-n/2-t*.6,-t*.6),d.translate(0,-n/2-t*.6,t*.6),this.copy(x.mergeGeometries([m,a,c,i,d],!1))}}class Z extends e.BufferGeometry{constructor(){super();const o=new e.SphereGeometry(1,16,16),t=new e.CylinderGeometry(.2,.2,2,16,1,!0);t.translate(0,1.5,0),t.rotateX(Math.PI/2),this.copy(x.mergeGeometries([o,t],!1))}}class _ extends e.BufferGeometry{constructor(){super();const o=[new e.Vector2(1,0),new e.Vector2(1.2,.5),new e.Vector2(1.4,1.5),new e.Vector2(1.3,1.8),new e.Vector2(.8,1.8)],t=new e.LatheGeometry(o,12),n=new e.CircleGeometry(1,12);n.rotateX(-Math.PI/2),n.translate(0,0,0),this.copy(x.mergeGeometries([t,n],!1))}}class T extends e.BufferGeometry{constructor(o=.2,t=.2,n=3,r=32,m=!0){super();const s=new e.CylinderGeometry(o,t,n,r,1,m),a=new e.SphereGeometry(t,r,r/2,0,Math.PI*2,Math.PI/2,Math.PI/2);a.translate(0,-(n/2),0),this.copy(x.mergeGeometries([s,a],!1))}}class Q extends e.BufferGeometry{constructor({radius:o=.5,neckRadius:t=.2,height:n=3,neckHeight:r=1,segments:m=16}={}){super();const s=n-r,a=new e.CylinderGeometry(o,o,s,m);a.translate(0,s/2,0);const c=.3,i=new e.CylinderGeometry(t,o,c,m);i.translate(0,s+c/2,0);const d=new e.CylinderGeometry(t,t,r,m);d.translate(0,s+c+r/2,0),this.copy(x.mergeGeometries([a,i,d],!1))}}class K extends e.BufferGeometry{constructor({radius:o=3,height:t=.6,widthSegments:n=64,heightSegments:r=16,phiStart:m=0,phiLength:s=Math.PI*2}={}){super(),this.copy(new e.SphereGeometry(o,n,r,m,s,0,Math.PI/2)),this.scale(1,t/o,1)}}const ge=(l,o)=>l/(1-Math.cos(o)),F=(l,o)=>l/(2*Math.sin(o)),J=(l,o)=>l*(1-Math.cos(o)),be=(l,o)=>2*l*Math.sin(o);class $ extends e.BufferGeometry{constructor({radius:o=F(5,Math.PI/10),widthSegments:t=64,heightSegments:n=32,phiStart:r=0,phiLength:m=Math.PI*2,thetaLength:s=Math.PI/10}={}){super(),this.copy(new e.SphereGeometry(o,t,n,r,m,0,s));const a=J(o,s);this.translate(0,-o+a,0)}}class j extends e.BufferGeometry{constructor({trunkRadiusTop:o=.25,trunkRadiusBottom:t=.4,trunkHeight:n=2.5,trunkSegments:r=14,leafSize:m=.8,leafCount:s=6,leafDetail:a=0,leafSpreadRadius:c=1.5}={}){super();const i=new e.CylinderGeometry(o,t,n,r);i.translate(0,n/2,0);const d=[];for(let M=0;M<s;M++){const y=new e.DodecahedronGeometry(m,a);y.translate((Math.random()-.5)*c,(Math.random()-.5)*m+n,(Math.random()-.5)*c),d.push(y)}this.copy(x.mergeGeometries([i.toNonIndexed(),x.mergeGeometries(d,!1)],!0)),this.computeVertexNormals()}}class Be extends e.Group{constructor(){super();const o=new e.SphereGeometry(5,32,32),t=new e.ShaderMaterial({uniforms:{time:{value:0}},vertexShader:`
|
|
2
2
|
varying vec3 vNormal;
|
|
3
3
|
varying vec3 vPosition;
|
|
4
4
|
void main() {
|
|
@@ -35,7 +35,7 @@ var ThreeLowPoly=function(d,e,x,j,W,N,ee){"use strict";const g={UP:new e.Vector3
|
|
|
35
35
|
color *= 0.8 + 0.2 * n; // Modulate color by noise
|
|
36
36
|
gl_FragColor = vec4(color, 1.0);
|
|
37
37
|
}
|
|
38
|
-
`}),n=new e.Mesh(o,t);this.add(n)}}class Se extends e.Mesh{constructor({width:o=1,height:t=1.5,depth:n=.5,coverThickness:c=.05,pageIndent:l=.05,coverColor:s=9109504,pageColor:a=16777215}={}){super(),this.geometry=new F(o,t,n,c,l),this.material=[new e.MeshStandardMaterial({color:s,metalness:.1,roughness:.7,flatShading:!0}),new e.MeshStandardMaterial({color:a,flatShading:!0})]}}class ve extends e.Mesh{constructor(o=.4,t=1.2,n=.2){super(),this.geometry=new L(o,t,n),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class xe extends e.Group{constructor(){super();const o=new e.BoxGeometry(5,1,5),t=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),n=new e.Mesh(o,t);n.position.set(0,.5,0),this.add(n);const c=new e.BoxGeometry(4,3,4),l=new e.MeshStandardMaterial({color:6908265,flatShading:!0}),s=new e.Mesh(c,l);s.position.set(0,2.5,0),this.add(s);const a=new e.ConeGeometry(3.5,2,4),i=new e.MeshStandardMaterial({color:5263440,flatShading:!0}),r=new e.Mesh(a,i);r.rotation.y=Math.PI/4,r.position.set(0,5,0),this.add(r);const u=new e.CylinderGeometry(.2,.2,3.5,16),M=new e.MeshStandardMaterial({color:6908265,flatShading:!0});[[-1.8,2.3,-2.2],[1.8,2.3,-2.2],[-1.8,2.3,2.2],[1.8,2.3,2.2]].forEach(S=>{const P=new e.Mesh(u,M);P.position.set(...S),this.add(P)});const w=new e.Shape;w.moveTo(-1,0),w.lineTo(-1,2),w.absarc(0,2,1,Math.PI,0,!0),w.lineTo(1,0);const y={depth:.5,bevelEnabled:!1},G=new e.ExtrudeGeometry(w,y),p=new e.MeshStandardMaterial({color:4210752,flatShading:!0}),v=new e.Mesh(G,p);v.position.set(0,.5,1.7),this.add(v)}}class he extends e.Mesh{constructor(o=1.75,t=.75){super(),this.geometry=new z(o,t),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class ge extends e.Mesh{constructor(o=.6,t=1,n=.2,c=.6){super(),this.geometry=new q(o,t,n,c),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class be extends e.Mesh{constructor(o=.5,t=.8,n=.15){super(),this.geometry=new U(o,t,n),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class Be extends e.Group{constructor(){super();const o=new e.BoxGeometry(5,.3,3),t=new e.MeshStandardMaterial({color:9132587}),n=new e.Mesh(o,t);n.position.set(0,3.15,0);const c=[];c.push(new e.Vector2(.2,0)),c.push(new e.Vector2(.25,.5)),c.push(new e.Vector2(.15,1.5)),c.push(new e.Vector2(.3,3));const l=new e.LatheGeometry(c,32),s=new e.MeshStandardMaterial({color:4929057});[[2.2,0,1.2],[-2.2,0,1.2],[2.2,0,-1.2],[-2.2,0,-1.2]].forEach(i=>{const r=new e.Mesh(l,s);r.position.set(...i),this.add(r)}),this.add(n)}}class ke extends e.Group{constructor(o=1,t=.2){super(),this.height=o,this.radius=t,this.createCandle(),this.animateFlicker()}createCandle(){const o=new e.CylinderGeometry(this.radius,this.radius,this.height,32),t=new e.MeshStandardMaterial({color:16777215});this.candle=new e.Mesh(o,t),this.candle.position.set(0,this.height/2,0),this.add(this.candle);const n=new e.SphereGeometry(.05,16,16),c=new e.MeshBasicMaterial({color:16753920});this.flame=new e.Mesh(n,c),this.flame.position.set(0,this.height+.05,0),this.add(this.flame),this.candleLight=new e.PointLight(16753920,1,5),this.candleLight.position.set(0,this.height+.05,0),this.candleLight.castShadow=!0,this.add(this.candleLight)}animateFlicker(){const o=()=>{this.candleLight.intensity=1+(Math.random()*.4-.2),this.candleLight.position.x=Math.random()*.02-.01,this.candleLight.position.z=Math.random()*.02-.01,requestAnimationFrame(o)};o()}}class Ie extends e.Group{constructor(o=1.3,t=.5){super();const n=new e.CylinderGeometry(t,t,.2,16),c=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),l=new e.Mesh(n,c);l.position.set(0,0,0),this.add(l);const s=new e.CylinderGeometry(t*.9,t*.9,o),a=new e.MeshStandardMaterial({color:16766720,flatShading:!0,transparent:!0,opacity:.6}),i=new e.Mesh(s,a);i.position.set(0,o/2+.1,0),this.add(i);const r=new e.ConeGeometry(t*1.1,.5,8),u=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),M=new e.Mesh(r,u);M.position.set(0,o+.35,0),this.add(M);const f=new e.TorusGeometry(t*.8,.05,8,16),w=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),y=new e.Mesh(f,w);y.position.set(0,o+.85,0),this.add(y);const G=new e.PointLight(16755200,1.5,15);G.position.set(0,o/2+.1,0),G.castShadow=!0,this.add(G)}}class Pe extends e.Group{constructor(){super();const o=new e.DodecahedronGeometry(1,0),t=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),n=new e.MeshStandardMaterial({color:4950843,flatShading:!0,opacity:.8,transparent:!0});for(let c=0;c<5;c++){const l=new e.Mesh(o,t);l.scale.set(.8+Math.random()*.4,.8+Math.random()*.4,.8+Math.random()*.4),l.rotation.set(Math.random()*Math.PI,Math.random()*Math.PI,Math.random()*Math.PI),l.position.set((Math.random()-.5)*4,0,(Math.random()-.5)*4),this.add(l);const s=new e.Mesh(o,n);s.scale.set(l.scale.x*.9,l.scale.y*.5,l.scale.z*.9),s.rotation.copy(l.rotation),s.position.copy(l.position),s.position.y+=.3,this.add(s)}}}class Te extends e.Mesh{constructor(o=1,t=4,n=4){super(),this.geometry=new D(o,t,n),this.material=new e.MeshStandardMaterial({color:8421504,flatShading:!0})}}class Ae extends e.Group{constructor(){super();const o=new e.DodecahedronGeometry(1,0),t=new e.MeshStandardMaterial({color:8421504,flatShading:!0});for(let n=0;n<5;n++){const c=new e.Mesh(o,t);c.scale.set(.8+Math.random()*.4,.8+Math.random()*.4,.8+Math.random()*.4),c.rotation.set(Math.random()*Math.PI,Math.random()*Math.PI,Math.random()*Math.PI),c.position.set((Math.random()-.5)*4,0,(Math.random()-.5)*4),this.add(c)}}}class Ce extends e.Group{constructor(){super();const o=new X,t=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),n=new e.Mesh(o,t);n.rotation.x=-Math.PI/2,this.add(n)}}class Ee extends e.Group{constructor(){super();const o=[new e.Vector2(0,0),new e.Vector2(.8,0),new e.Vector2(1,1.5),new e.Vector2(.5,2.2),new e.Vector2(.6,2.5)],t=new e.LatheGeometry(o,10),n=new e.CylinderGeometry(.3,.4,.2,8),c=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.5,roughness:.1,metalness:.3}),l=new e.MeshStandardMaterial({color:16724838,transparent:!0,opacity:.6}),s=new e.MeshStandardMaterial({color:9127187,roughness:1}),a=new e.Mesh(t,c),i=new e.Mesh(t,l),r=new e.Mesh(n,s);i.scale.set(.8,.8,.8),i.position.y=.1,r.position.y=2.5;const u=new e.Group;u.add(a,i,r),this.add(u)}}class Ve extends e.Group{constructor(){super();const o=new e.CylinderGeometry(.3,.4,.1,16),t=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.3}),n=new e.Mesh(o,t);n.position.y=.05;const c=new e.CylinderGeometry(.1,.1,.7,16),l=new e.MeshStandardMaterial({color:5592405,roughness:.5,metalness:.4}),s=new e.Mesh(c,l);s.position.y=.4;const a=new e.ConeGeometry(.075,.2,16),i=new e.MeshStandardMaterial({color:16733440,emissive:16733440,emissiveIntensity:.6,transparent:!0,opacity:.8}),r=new e.Mesh(a,i);r.position.y=.8,this.add(n,s,r)}}class Ne extends e.Group{constructor(){super();const o=new e.BoxGeometry(3,4,.1),t=new e.MeshStandardMaterial({color:3026478,roughness:.8,metalness:.6}),n=new e.BoxGeometry(.2,.5,.2),c=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7}),l=new e.CylinderGeometry(.3,.3,.1,16),s=new e.MeshStandardMaterial({color:5592405,roughness:.7,metalness:.5}),a=new e.Mesh(o,t);for(let p=-1;p<=1;p++){const v=new e.Mesh(n,c);v.position.set(p,1.5,.1),a.add(v)}const i=new e.Mesh(l,s);i.rotation.x=Math.PI/2,i.position.set(0,.5,.15),a.add(i);const r=new e.SphereGeometry(.15,8,8),u=new e.MeshStandardMaterial({color:16711680,emissive:16711680,emissiveIntensity:.5}),M=new e.Mesh(r,u);M.position.set(0,-1,.1),a.add(M),this.add(a);let f=.015,w=.8,y=.2;function G(){requestAnimationFrame(G);const p=y+Math.abs(Math.sin(Date.now()*f))*(w-y);M.material.emissiveIntensity=p}G()}}class Fe extends e.Group{constructor(){super();const o=[new e.Vector2(0,0),new e.Vector2(1.2,0),new e.Vector2(1.5,1.5),new e.Vector2(1,3),new e.Vector2(.6,3.5)],t=new e.LatheGeometry(o,12),n=new e.CylinderGeometry(.6,.7,.3,8),c=new e.MeshStandardMaterial({color:8965290,transparent:!0,opacity:.4,roughness:.1,metalness:.5}),l=new e.MeshStandardMaterial({color:9127187,roughness:1}),s=new e.Mesh(t,c),a=new e.Mesh(n,l);a.position.y=3.5,this.add(s,a)}}class Le extends e.Group{constructor(){super();const o=new e.BoxGeometry(2,3,.1),t=new e.MeshStandardMaterial({color:3355443,roughness:.8,metalness:.5}),n=new e.Mesh(o,t),c=new e.CylinderGeometry(.1,.1,.2,8),l=new e.CylinderGeometry(.05,.05,1,8),s=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7});for(let a=-.5;a<=.5;a+=.5){const i=new e.Mesh(c,s);i.position.set(a,1,.1);const r=new e.Mesh(l,s);r.position.y=.5,i.add(r),this.add(i)}this.add(n)}}class ze extends e.Group{constructor(){super();const o=new e.BoxGeometry(1,.2,.5),t=new e.MeshStandardMaterial({color:4473924,roughness:.6,metalness:.3}),n=new e.Mesh(o,t);n.position.y=.1;const c=new e.BoxGeometry(.2,1,.2),l=new e.Mesh(c,t);l.position.set(0,.6,-.2);const s=new e.CylinderGeometry(.1,.1,.4,8),a=new e.MeshStandardMaterial({color:3355443,roughness:.5,metalness:.6}),i=new e.Mesh(s,a);i.position.set(0,1.1,-.35),i.rotation.x=-Math.PI/4;const r=new e.BoxGeometry(.6,.1,.6),u=new e.MeshStandardMaterial({color:5592405,roughness:.8,metalness:.2}),M=new e.Mesh(r,u);M.position.set(0,.6,0),this.add(n,l,i,M)}}class qe extends e.Group{constructor(){super();const o=new _,t=new e.CylinderGeometry(.2,.3,1.5,8);t.translate(0,.75,0);const n=new e.MeshStandardMaterial({color:6045747,roughness:1,metalness:0,side:e.DoubleSide}),c=new e.MeshStandardMaterial({color:9132587,roughness:.8,metalness:.1}),l=new e.Mesh(o,n),s=new e.Mesh(t,c);s.position.set(.3,1.3,0),s.rotation.z=Math.PI/4,this.add(l,s)}}class Ue extends e.Group{constructor(){super();const o=100,t=.05,n=new e.CatmullRomCurve3(Array.from({length:o},(r,u)=>{const M=u*.2;return new e.Vector3(Math.cos(M)*.4,u*t,Math.sin(M)*.4)})),c=new e.TubeGeometry(n,200,.1,8,!1),l=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.3,roughness:.1,metalness:.2,emissive:8965375}),s=new e.Mesh(c,l);this.add(s);function a(){l.emissiveIntensity=.2+Math.sin(Date.now()*.005)*.1}function i(){requestAnimationFrame(i),a()}i()}}class Oe extends e.Group{constructor(){super();const o=new e.TorusGeometry(.3,.03,8,16),t=new e.MeshStandardMaterial({color:8947848,roughness:.7,metalness:.3}),n=new e.Mesh(o,t);n.rotation.x=Math.PI/2,n.position.y=.4;const c=new e.CylinderGeometry(.02,.02,.4,8),l=new e.MeshStandardMaterial({color:6710886,roughness:.8,metalness:.3}),s=[];for(let a=0;a<3;a++){const i=a/3*Math.PI*2,r=new e.Mesh(c,l);r.position.set(Math.cos(i)*.25,.2,Math.sin(i)*.25),s.push(r)}this.add(n,...s)}}class De extends e.Group{constructor(){super();const o=new e.CylinderGeometry(.5,.6,.3,16),t=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.5}),n=new e.Mesh(o,t);n.position.y=.15;const c=new e.CylinderGeometry(.15,.15,2,12,1,!0),l=new e.MeshStandardMaterial({color:16737792,roughness:.5,metalness:.8,side:e.DoubleSide}),s=new e.Mesh(c,l);s.position.y=1.3;const a=new e.SphereGeometry(.3,16,16),i=new e.Mesh(a,l);i.position.y=2.4,this.add(n,s,i);const r=[];for(let f=0;f<5;f++){const w=new e.LineBasicMaterial({color:10079487}),y=[new e.Vector3(0,2.4,0),new e.Vector3((Math.random()-.5)*1.5,Math.random()*2.4,(Math.random()-.5)*1.5)],G=new e.BufferGeometry().setFromPoints(y),p=new e.Line(G,w);this.add(p),r.push(p)}function u(){r.forEach(f=>{const w=[new e.Vector3(0,2.4,0),new e.Vector3((Math.random()-.5)*1.5,Math.random()*2.4,(Math.random()-.5)*1.5)];f.geometry.setFromPoints(w)})}function M(){requestAnimationFrame(M),u()}M()}}class Xe extends e.Group{constructor(o=.2,t=.2,n=3,c=32){super();const l=new T(o,t,n,c),s=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),a=new e.Mesh(l,s);this.add(a)}}class _e extends e.Group{constructor(o=3,t=[65450,16711850,11141375]){super();const n=new e.BoxGeometry(3,.2,1),c=new e.MeshStandardMaterial({color:9127187,roughness:.7,metalness:.3}),l=new e.Mesh(n,c);l.position.y=.5;const s=new T(.1,.1,1,16),a=new e.MeshStandardMaterial({color:11184810,transparent:!0,opacity:.4,roughness:.1,metalness:.5,side:e.DoubleSide});for(let i=0;i<o;i++){const r=new e.Mesh(s,a),u=(i-(o-1)/2)*.8;r.position.set(u,1,0);const M=new T(.099,.099,.5,16,!1),f=t[i%t.length],w=new e.MeshStandardMaterial({color:f,emissive:f,emissiveIntensity:.5,transparent:!0,opacity:.6}),y=new e.Mesh(M,w);y.position.set(0,-.25,0),r.add(y),l.add(r)}this.add(l)}}class He extends e.Mesh{constructor(){super();const o=new H,t=new e.MeshPhysicalMaterial({color:5597999,roughness:.1,transmission:.9,thickness:.2,metalness:0,clearcoat:1,clearcoatRoughness:.1});this.geometry=o,this.material=t}}class R extends e.Shape{constructor(o=5,t=.5,n=1){super();const c=Math.PI*2/o,l=c/2,s=c/4;this.moveTo(Math.cos(0)*n,-Math.sin(0)*n);for(let a=1;a<=o;++a){let i=Math.cos(c*a-s*3)*(t/Math.cos(s)),r=-Math.sin(c*a-s*3)*(t/Math.cos(s)),u=Math.cos(c*a-l)*t,M=-Math.sin(c*a-l)*t;this.quadraticCurveTo(i,r,u,M),i=Math.cos(c*a-s)*(t/Math.cos(s)),r=-Math.sin(c*a-s)*(t/Math.cos(s)),u=Math.cos(c*a)*n,M=-Math.sin(c*a)*n,this.quadraticCurveTo(i,r,u,M)}this.closePath()}}class Ye extends e.Mesh{constructor(o=5,t=.5,n=1,c=.25){super();const l=new R(o,t,n),s=new e.ExtrudeGeometry(l,{depth:c,bevelEnabled:c>0,bevelThickness:0,bevelSize:0}),a=new e.MeshStandardMaterial({color:16776960,emissive:16766720,emissiveIntensity:.25,metalness:.1,roughness:.3,flatShading:!0});s.center(),this.geometry=s,this.material=a}}class Z extends e.Shape{constructor(o=5,t=.5,n=1,c=5,l=.25){super();const s=Math.PI*2/o,a=s/4;this.moveTo(Math.cos(0)*n,-Math.sin(0)*n);for(let i=1;i<=o;++i)this.lineTo(Math.cos(s*i-a*3)*t,-Math.sin(s*i-a*3)*t),this.lineTo(Math.cos(s*i-a*2)*t,-Math.sin(s*i-a*2)*t),this.lineTo(Math.cos(s*i-a)*n,-Math.sin(s*i-a)*n),this.lineTo(Math.cos(s*i)*n,-Math.sin(s*i)*n);if(this.closePath(),l>0&&c>2){const i=new e.Path,r=Math.PI*2/c;i.moveTo(Math.cos(0)*l,-Math.sin(0)*l);for(let u=1;u<c;++u)i.lineTo(Math.cos(r*u)*l,-Math.sin(r*u)*l);i.lineTo(Math.cos(0)*l,-Math.sin(0)*l),this.holes.push(i)}}}class Re extends e.Mesh{constructor(o=5,t=.5,n=1,c=5,l=.25,s=.25){super();const a=new Z(o,t,n,c,l),i=new e.ExtrudeGeometry(a,{depth:s,bevelEnabled:s>0,bevelThickness:0,bevelSize:0}),r=new e.MeshStandardMaterial({color:11184810,metalness:.8,roughness:.2,reflectivity:.5});i.center(),this.geometry=i,this.material=r}}class Q extends e.Shape{constructor(o=1,t=2.1,n=1.4,c=1.6){super(),this.moveTo(0,n*o/3),this.bezierCurveTo(-t*.375*o,n*o,-t*o,n*o/3,0,-c*o),this.bezierCurveTo(t*o,n*o/3,t*.375*o,n*o,0,n*o/3)}}class Ze extends e.Mesh{constructor(o=1,t=1,n=1,c=10,l=.25){super();const s=new Q(o,t,n,c),a=new e.ExtrudeGeometry(s,{depth:l,bevelEnabled:l>0,bevelThickness:0,bevelSize:0}),i=new e.MeshStandardMaterial({color:12986408,emissive:12981270,emissiveIntensity:.25,metalness:.1,roughness:.3,flatShading:!0});a.center(),this.geometry=a,this.material=i}}class K extends e.Shape{constructor(o=5,t=.5,n=1){super();const c=Math.PI*2/o,l=c/2;this.moveTo(Math.cos(0)*n,Math.sin(0)*n);for(let s=1;s<=o;++s)this.lineTo(Math.cos(c*s-l)*t,Math.sin(c*s-l)*t),this.lineTo(Math.cos(c*s)*n,Math.sin(c*s)*n);this.closePath()}}class Qe extends e.Mesh{constructor(o=5,t=.5,n=1,c=.25){super();const l=new K(o,t,n),s=new e.ExtrudeGeometry(l,{depth:c,bevelEnabled:c>0,bevelThickness:0,bevelSize:0}),a=new e.MeshStandardMaterial({color:16776960,emissive:16766720,emissiveIntensity:.25,metalness:.1,roughness:.3,flatShading:!0});s.center(),this.geometry=s,this.material=a}}class Ke extends e.Mesh{constructor({trunkRadiusTop:o=.25,trunkRadiusBottom:t=.4,trunkHeight:n=2.5,trunkSegments:c=14,trunkColor:l=9127187,leafSize:s=.8,leafCount:a=6,leafDetail:i=0,leafSpreadRadius:r=1.5,leafColor:u=2263842}={}){super();const M=new Y({trunkRadiusTop:o,trunkRadiusBottom:t,trunkHeight:n,trunkSegments:c,trunkColor:l,leafSize:s,leafCount:a,leafDetail:i,leafSpreadRadius:r,leafColor:u}),f=new e.MeshStandardMaterial({color:l,roughness:.9,metalness:0,flatShading:!0}),w=new e.MeshStandardMaterial({color:u,roughness:.8,metalness:0,flatShading:!0});this.geometry=M,this.material=[f,w]}}function Je(m,{time:o=0,waveFrequency:t=.2,waveAmplitude:n=.5}={}){m.onBeforeCompile=c=>{c.uniforms.time={value:o},c.uniforms.waveFrequency={value:t},c.uniforms.waveAmplitude={value:n},c.vertexShader=`
|
|
38
|
+
`}),n=new e.Mesh(o,t);this.add(n)}}class Ie extends e.Mesh{constructor({width:o=1,height:t=1.5,depth:n=.5,coverThickness:r=.05,pageIndent:m=.05,coverColor:s=9109504,pageColor:a=16777215}={}){super(),this.geometry=new z(o,t,n,r,m),this.material=[new e.MeshStandardMaterial({color:s,metalness:.1,roughness:.7,flatShading:!0}),new e.MeshStandardMaterial({color:a,flatShading:!0})]}}class Pe extends e.Mesh{constructor(o=.4,t=1.2,n=.2){super(),this.geometry=new q(o,t,n),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class ke extends e.Group{constructor(){super();const o=new e.BoxGeometry(5,1,5),t=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),n=new e.Mesh(o,t);n.position.set(0,.5,0),this.add(n);const r=new e.BoxGeometry(4,3,4),m=new e.MeshStandardMaterial({color:6908265,flatShading:!0}),s=new e.Mesh(r,m);s.position.set(0,2.5,0),this.add(s);const a=new e.ConeGeometry(3.5,2,4),c=new e.MeshStandardMaterial({color:5263440,flatShading:!0}),i=new e.Mesh(a,c);i.rotation.y=Math.PI/4,i.position.set(0,5,0),this.add(i);const d=new e.CylinderGeometry(.2,.2,3.5,16),M=new e.MeshStandardMaterial({color:6908265,flatShading:!0});[[-1.8,2.3,-2.2],[1.8,2.3,-2.2],[-1.8,2.3,2.2],[1.8,2.3,2.2]].forEach(S=>{const k=new e.Mesh(d,M);k.position.set(...S),this.add(k)});const w=new e.Shape;w.moveTo(-1,0),w.lineTo(-1,2),w.absarc(0,2,1,Math.PI,0,!0),w.lineTo(1,0);const f={depth:.5,bevelEnabled:!1},G=new e.ExtrudeGeometry(w,f),p=new e.MeshStandardMaterial({color:4210752,flatShading:!0}),h=new e.Mesh(G,p);h.position.set(0,.5,1.7),this.add(h)}}class Te extends e.Mesh{constructor(o=1.75,t=.75){super(),this.geometry=new U(o,t),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class Ae extends e.Mesh{constructor(o=.6,t=1,n=.2,r=.6){super(),this.geometry=new O(o,t,n,r),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class Ce extends e.Mesh{constructor(o=.5,t=.8,n=.15){super(),this.geometry=new D(o,t,n),this.material=new e.MeshStandardMaterial({color:7829367,roughness:.8})}}class Ve extends e.Mesh{constructor({height:o=2.25}={}){super(),this.geometry=new H({height:o}),this.material=new e.MeshStandardMaterial({color:9141627,flatShading:!0})}}class Ee extends e.Mesh{constructor({barHeight:o=2,barRadius:t=.05,spikeHeight:n=.3,spikeRadius:r=.075,spikeScaleZ:m=1,radialSegments:s=8}={}){super(),this.geometry=new E({barHeight:o,barRadius:t,spikeHeight:n,spikeRadius:r,spikeScaleZ:m,radialSegments:s}),this.material=new e.MeshStandardMaterial({color:3355443,metalness:.8,roughness:.4})}}class Fe extends e.Mesh{constructor({count:o=20,spacing:t=.4,barHeight:n=2,barRadius:r=.05,spikeHeight:m=.3,spikeRadius:s=.075,spikeScaleZ:a=1,railHeight:c=.1,railDepth:i=.05,railOffset:d=0}={}){super(),this.geometry=new R({count:o,spacing:t,barHeight:n,barRadius:r,spikeHeight:m,spikeRadius:s,spikeScaleZ:a,railHeight:c,railDepth:i,railOffset:d}),this.material=new e.MeshStandardMaterial({color:3355443,metalness:.8,roughness:.4})}}class Ne extends e.Group{constructor(){super();const o=new e.BoxGeometry(5,.3,3),t=new e.MeshStandardMaterial({color:9132587}),n=new e.Mesh(o,t);n.position.set(0,3.15,0);const r=[];r.push(new e.Vector2(.2,0)),r.push(new e.Vector2(.25,.5)),r.push(new e.Vector2(.15,1.5)),r.push(new e.Vector2(.3,3));const m=new e.LatheGeometry(r,32),s=new e.MeshStandardMaterial({color:4929057});[[2.2,0,1.2],[-2.2,0,1.2],[2.2,0,-1.2],[-2.2,0,-1.2]].forEach(c=>{const i=new e.Mesh(m,s);i.position.set(...c),this.add(i)}),this.add(n)}}class Le extends e.Group{constructor(o=1,t=.2){super(),this.height=o,this.radius=t,this.createCandle(),this.animateFlicker()}createCandle(){const o=new e.CylinderGeometry(this.radius,this.radius,this.height,32),t=new e.MeshStandardMaterial({color:16777215});this.candle=new e.Mesh(o,t),this.candle.position.set(0,this.height/2,0),this.add(this.candle);const n=new e.SphereGeometry(.05,16,16),r=new e.MeshBasicMaterial({color:16753920});this.flame=new e.Mesh(n,r),this.flame.position.set(0,this.height+.05,0),this.add(this.flame),this.candleLight=new e.PointLight(16753920,1,5),this.candleLight.position.set(0,this.height+.05,0),this.candleLight.castShadow=!0,this.add(this.candleLight)}animateFlicker(){const o=()=>{this.candleLight.intensity=1+(Math.random()*.4-.2),this.candleLight.position.x=Math.random()*.02-.01,this.candleLight.position.z=Math.random()*.02-.01,requestAnimationFrame(o)};o()}}class ze extends e.Group{constructor(o=1.3,t=.5){super();const n=new e.CylinderGeometry(t,t,.2,16),r=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),m=new e.Mesh(n,r);m.position.set(0,0,0),this.add(m);const s=new e.CylinderGeometry(t*.9,t*.9,o),a=new e.MeshStandardMaterial({color:16766720,flatShading:!0,transparent:!0,opacity:.6}),c=new e.Mesh(s,a);c.position.set(0,o/2+.1,0),this.add(c);const i=new e.ConeGeometry(t*1.1,.5,8),d=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),M=new e.Mesh(i,d);M.position.set(0,o+.35,0),this.add(M);const y=new e.TorusGeometry(t*.8,.05,8,16),w=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),f=new e.Mesh(y,w);f.position.set(0,o+.85,0),this.add(f);const G=new e.PointLight(16755200,1.5,15);G.position.set(0,o/2+.1,0),G.castShadow=!0,this.add(G)}}class qe extends e.Group{constructor(){super();const o=new e.DodecahedronGeometry(1,0),t=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),n=new e.MeshStandardMaterial({color:4950843,flatShading:!0,opacity:.8,transparent:!0});for(let r=0;r<5;r++){const m=new e.Mesh(o,t);m.scale.set(.8+Math.random()*.4,.8+Math.random()*.4,.8+Math.random()*.4),m.rotation.set(Math.random()*Math.PI,Math.random()*Math.PI,Math.random()*Math.PI),m.position.set((Math.random()-.5)*4,0,(Math.random()-.5)*4),this.add(m);const s=new e.Mesh(o,n);s.scale.set(m.scale.x*.9,m.scale.y*.5,m.scale.z*.9),s.rotation.copy(m.rotation),s.position.copy(m.position),s.position.y+=.3,this.add(s)}}}class Ue extends e.Mesh{constructor(o=1,t=4,n=4){super(),this.geometry=new Y(o,t,n),this.material=new e.MeshStandardMaterial({color:8421504,flatShading:!0})}}class Oe extends e.Group{constructor(){super();const o=new e.DodecahedronGeometry(1,0),t=new e.MeshStandardMaterial({color:8421504,flatShading:!0});for(let n=0;n<5;n++){const r=new e.Mesh(o,t);r.scale.set(.8+Math.random()*.4,.8+Math.random()*.4,.8+Math.random()*.4),r.rotation.set(Math.random()*Math.PI,Math.random()*Math.PI,Math.random()*Math.PI),r.position.set((Math.random()-.5)*4,0,(Math.random()-.5)*4),this.add(r)}}}class De extends e.Group{constructor(){super();const o=new Z,t=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),n=new e.Mesh(o,t);n.rotation.x=-Math.PI/2,this.add(n)}}class He extends e.Group{constructor(){super();const o=[new e.Vector2(0,0),new e.Vector2(.8,0),new e.Vector2(1,1.5),new e.Vector2(.5,2.2),new e.Vector2(.6,2.5)],t=new e.LatheGeometry(o,10),n=new e.CylinderGeometry(.3,.4,.2,8),r=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.5,roughness:.1,metalness:.3}),m=new e.MeshStandardMaterial({color:16724838,transparent:!0,opacity:.6}),s=new e.MeshStandardMaterial({color:9127187,roughness:1}),a=new e.Mesh(t,r),c=new e.Mesh(t,m),i=new e.Mesh(n,s);c.scale.set(.8,.8,.8),c.position.y=.1,i.position.y=2.5;const d=new e.Group;d.add(a,c,i),this.add(d)}}class Re extends e.Group{constructor(){super();const o=new e.CylinderGeometry(.3,.4,.1,16),t=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.3}),n=new e.Mesh(o,t);n.position.y=.05;const r=new e.CylinderGeometry(.1,.1,.7,16),m=new e.MeshStandardMaterial({color:5592405,roughness:.5,metalness:.4}),s=new e.Mesh(r,m);s.position.y=.4;const a=new e.ConeGeometry(.075,.2,16),c=new e.MeshStandardMaterial({color:16733440,emissive:16733440,emissiveIntensity:.6,transparent:!0,opacity:.8}),i=new e.Mesh(a,c);i.position.y=.8,this.add(n,s,i)}}class Xe extends e.Group{constructor(){super();const o=new e.BoxGeometry(3,4,.1),t=new e.MeshStandardMaterial({color:3026478,roughness:.8,metalness:.6}),n=new e.BoxGeometry(.2,.5,.2),r=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7}),m=new e.CylinderGeometry(.3,.3,.1,16),s=new e.MeshStandardMaterial({color:5592405,roughness:.7,metalness:.5}),a=new e.Mesh(o,t);for(let p=-1;p<=1;p++){const h=new e.Mesh(n,r);h.position.set(p,1.5,.1),a.add(h)}const c=new e.Mesh(m,s);c.rotation.x=Math.PI/2,c.position.set(0,.5,.15),a.add(c);const i=new e.SphereGeometry(.15,8,8),d=new e.MeshStandardMaterial({color:16711680,emissive:16711680,emissiveIntensity:.5}),M=new e.Mesh(i,d);M.position.set(0,-1,.1),a.add(M),this.add(a);let y=.015,w=.8,f=.2;function G(){requestAnimationFrame(G);const p=f+Math.abs(Math.sin(Date.now()*y))*(w-f);M.material.emissiveIntensity=p}G()}}class Ye extends e.Group{constructor(){super();const o=[new e.Vector2(0,0),new e.Vector2(1.2,0),new e.Vector2(1.5,1.5),new e.Vector2(1,3),new e.Vector2(.6,3.5)],t=new e.LatheGeometry(o,12),n=new e.CylinderGeometry(.6,.7,.3,8),r=new e.MeshStandardMaterial({color:8965290,transparent:!0,opacity:.4,roughness:.1,metalness:.5}),m=new e.MeshStandardMaterial({color:9127187,roughness:1}),s=new e.Mesh(t,r),a=new e.Mesh(n,m);a.position.y=3.5,this.add(s,a)}}class Ze extends e.Group{constructor(){super();const o=new e.BoxGeometry(2,3,.1),t=new e.MeshStandardMaterial({color:3355443,roughness:.8,metalness:.5}),n=new e.Mesh(o,t),r=new e.CylinderGeometry(.1,.1,.2,8),m=new e.CylinderGeometry(.05,.05,1,8),s=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7});for(let a=-.5;a<=.5;a+=.5){const c=new e.Mesh(r,s);c.position.set(a,1,.1);const i=new e.Mesh(m,s);i.position.y=.5,c.add(i),this.add(c)}this.add(n)}}class _e extends e.Group{constructor(){super();const o=new e.BoxGeometry(1,.2,.5),t=new e.MeshStandardMaterial({color:4473924,roughness:.6,metalness:.3}),n=new e.Mesh(o,t);n.position.y=.1;const r=new e.BoxGeometry(.2,1,.2),m=new e.Mesh(r,t);m.position.set(0,.6,-.2);const s=new e.CylinderGeometry(.1,.1,.4,8),a=new e.MeshStandardMaterial({color:3355443,roughness:.5,metalness:.6}),c=new e.Mesh(s,a);c.position.set(0,1.1,-.35),c.rotation.x=-Math.PI/4;const i=new e.BoxGeometry(.6,.1,.6),d=new e.MeshStandardMaterial({color:5592405,roughness:.8,metalness:.2}),M=new e.Mesh(i,d);M.position.set(0,.6,0),this.add(n,m,c,M)}}class Qe extends e.Group{constructor(){super();const o=new _,t=new e.CylinderGeometry(.2,.3,1.5,8);t.translate(0,.75,0);const n=new e.MeshStandardMaterial({color:6045747,roughness:1,metalness:0,side:e.DoubleSide}),r=new e.MeshStandardMaterial({color:9132587,roughness:.8,metalness:.1}),m=new e.Mesh(o,n),s=new e.Mesh(t,r);s.position.set(.3,1.3,0),s.rotation.z=Math.PI/4,this.add(m,s)}}class Ke extends e.Group{constructor(){super();const o=100,t=.05,n=new e.CatmullRomCurve3(Array.from({length:o},(i,d)=>{const M=d*.2;return new e.Vector3(Math.cos(M)*.4,d*t,Math.sin(M)*.4)})),r=new e.TubeGeometry(n,200,.1,8,!1),m=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.3,roughness:.1,metalness:.2,emissive:8965375}),s=new e.Mesh(r,m);this.add(s);function a(){m.emissiveIntensity=.2+Math.sin(Date.now()*.005)*.1}function c(){requestAnimationFrame(c),a()}c()}}class Je extends e.Group{constructor(){super();const o=new e.TorusGeometry(.3,.03,8,16),t=new e.MeshStandardMaterial({color:8947848,roughness:.7,metalness:.3}),n=new e.Mesh(o,t);n.rotation.x=Math.PI/2,n.position.y=.4;const r=new e.CylinderGeometry(.02,.02,.4,8),m=new e.MeshStandardMaterial({color:6710886,roughness:.8,metalness:.3}),s=[];for(let a=0;a<3;a++){const c=a/3*Math.PI*2,i=new e.Mesh(r,m);i.position.set(Math.cos(c)*.25,.2,Math.sin(c)*.25),s.push(i)}this.add(n,...s)}}class $e extends e.Group{constructor(){super();const o=new e.CylinderGeometry(.5,.6,.3,16),t=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.5}),n=new e.Mesh(o,t);n.position.y=.15;const r=new e.CylinderGeometry(.15,.15,2,12,1,!0),m=new e.MeshStandardMaterial({color:16737792,roughness:.5,metalness:.8,side:e.DoubleSide}),s=new e.Mesh(r,m);s.position.y=1.3;const a=new e.SphereGeometry(.3,16,16),c=new e.Mesh(a,m);c.position.y=2.4,this.add(n,s,c);const i=[];for(let y=0;y<5;y++){const w=new e.LineBasicMaterial({color:10079487}),f=[new e.Vector3(0,2.4,0),new e.Vector3((Math.random()-.5)*1.5,Math.random()*2.4,(Math.random()-.5)*1.5)],G=new e.BufferGeometry().setFromPoints(f),p=new e.Line(G,w);this.add(p),i.push(p)}function d(){i.forEach(y=>{const w=[new e.Vector3(0,2.4,0),new e.Vector3((Math.random()-.5)*1.5,Math.random()*2.4,(Math.random()-.5)*1.5)];y.geometry.setFromPoints(w)})}function M(){requestAnimationFrame(M),d()}M()}}class je extends e.Group{constructor(o=.2,t=.2,n=3,r=32){super();const m=new T(o,t,n,r),s=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),a=new e.Mesh(m,s);this.add(a)}}class We extends e.Group{constructor(o=3,t=[65450,16711850,11141375]){super();const n=new e.BoxGeometry(3,.2,1),r=new e.MeshStandardMaterial({color:9127187,roughness:.7,metalness:.3}),m=new e.Mesh(n,r);m.position.y=.5;const s=new T(.1,.1,1,16),a=new e.MeshStandardMaterial({color:11184810,transparent:!0,opacity:.4,roughness:.1,metalness:.5,side:e.DoubleSide});for(let c=0;c<o;c++){const i=new e.Mesh(s,a),d=(c-(o-1)/2)*.8;i.position.set(d,1,0);const M=new T(.099,.099,.5,16,!1),y=t[c%t.length],w=new e.MeshStandardMaterial({color:y,emissive:y,emissiveIntensity:.5,transparent:!0,opacity:.6}),f=new e.Mesh(M,w);f.position.set(0,-.25,0),i.add(f),m.add(i)}this.add(m)}}class eo extends e.Mesh{constructor(){super();const o=new Q,t=new e.MeshPhysicalMaterial({color:5597999,roughness:.1,transmission:.9,thickness:.2,metalness:0,clearcoat:1,clearcoatRoughness:.1});this.geometry=o,this.material=t}}class W extends e.Shape{constructor(o=5,t=.5,n=1){super();const r=Math.PI*2/o,m=r/2,s=r/4;this.moveTo(Math.cos(0)*n,-Math.sin(0)*n);for(let a=1;a<=o;++a){let c=Math.cos(r*a-s*3)*(t/Math.cos(s)),i=-Math.sin(r*a-s*3)*(t/Math.cos(s)),d=Math.cos(r*a-m)*t,M=-Math.sin(r*a-m)*t;this.quadraticCurveTo(c,i,d,M),c=Math.cos(r*a-s)*(t/Math.cos(s)),i=-Math.sin(r*a-s)*(t/Math.cos(s)),d=Math.cos(r*a)*n,M=-Math.sin(r*a)*n,this.quadraticCurveTo(c,i,d,M)}this.closePath()}}class oo extends e.Mesh{constructor(o=5,t=.5,n=1,r=.25){super();const m=new W(o,t,n),s=new e.ExtrudeGeometry(m,{depth:r,bevelEnabled:r>0,bevelThickness:0,bevelSize:0}),a=new e.MeshStandardMaterial({color:16776960,emissive:16766720,emissiveIntensity:.25,metalness:.1,roughness:.3,flatShading:!0});s.center(),this.geometry=s,this.material=a}}class ee extends e.Shape{constructor(o=5,t=.5,n=1,r=5,m=.25){super();const s=Math.PI*2/o,a=s/4;this.moveTo(Math.cos(0)*n,-Math.sin(0)*n);for(let c=1;c<=o;++c)this.lineTo(Math.cos(s*c-a*3)*t,-Math.sin(s*c-a*3)*t),this.lineTo(Math.cos(s*c-a*2)*t,-Math.sin(s*c-a*2)*t),this.lineTo(Math.cos(s*c-a)*n,-Math.sin(s*c-a)*n),this.lineTo(Math.cos(s*c)*n,-Math.sin(s*c)*n);if(this.closePath(),m>0&&r>2){const c=new e.Path,i=Math.PI*2/r;c.moveTo(Math.cos(0)*m,-Math.sin(0)*m);for(let d=1;d<r;++d)c.lineTo(Math.cos(i*d)*m,-Math.sin(i*d)*m);c.lineTo(Math.cos(0)*m,-Math.sin(0)*m),this.holes.push(c)}}}class to extends e.Mesh{constructor(o=5,t=.5,n=1,r=5,m=.25,s=.25){super();const a=new ee(o,t,n,r,m),c=new e.ExtrudeGeometry(a,{depth:s,bevelEnabled:s>0,bevelThickness:0,bevelSize:0}),i=new e.MeshStandardMaterial({color:11184810,metalness:.8,roughness:.2,reflectivity:.5});c.center(),this.geometry=c,this.material=i}}class oe extends e.Shape{constructor(o=1,t=2.1,n=1.4,r=1.6){super(),this.moveTo(0,n*o/3),this.bezierCurveTo(-t*.375*o,n*o,-t*o,n*o/3,0,-r*o),this.bezierCurveTo(t*o,n*o/3,t*.375*o,n*o,0,n*o/3)}}class no extends e.Mesh{constructor(o=1,t=1,n=1,r=10,m=.25){super();const s=new oe(o,t,n,r),a=new e.ExtrudeGeometry(s,{depth:m,bevelEnabled:m>0,bevelThickness:0,bevelSize:0}),c=new e.MeshStandardMaterial({color:12986408,emissive:12981270,emissiveIntensity:.25,metalness:.1,roughness:.3,flatShading:!0});a.center(),this.geometry=a,this.material=c}}class te extends e.Shape{constructor(o=5,t=.5,n=1){super();const r=Math.PI*2/o,m=r/2;this.moveTo(Math.cos(0)*n,Math.sin(0)*n);for(let s=1;s<=o;++s)this.lineTo(Math.cos(r*s-m)*t,Math.sin(r*s-m)*t),this.lineTo(Math.cos(r*s)*n,Math.sin(r*s)*n);this.closePath()}}class so extends e.Mesh{constructor(o=5,t=.5,n=1,r=.25){super();const m=new te(o,t,n),s=new e.ExtrudeGeometry(m,{depth:r,bevelEnabled:r>0,bevelThickness:0,bevelSize:0}),a=new e.MeshStandardMaterial({color:16776960,emissive:16766720,emissiveIntensity:.25,metalness:.1,roughness:.3,flatShading:!0});s.center(),this.geometry=s,this.material=a}}class ao extends e.Mesh{constructor({trunkRadiusTop:o=.25,trunkRadiusBottom:t=.4,trunkHeight:n=2.5,trunkSegments:r=14,trunkColor:m=9127187,leafSize:s=.8,leafCount:a=6,leafDetail:c=0,leafSpreadRadius:i=1.5,leafColor:d=2263842}={}){super();const M=new j({trunkRadiusTop:o,trunkRadiusBottom:t,trunkHeight:n,trunkSegments:r,trunkColor:m,leafSize:s,leafCount:a,leafDetail:c,leafSpreadRadius:i,leafColor:d}),y=new e.MeshStandardMaterial({color:m,roughness:.9,metalness:0,flatShading:!0}),w=new e.MeshStandardMaterial({color:d,roughness:.8,metalness:0,flatShading:!0});this.geometry=M,this.material=[y,w]}}class ro extends e.Mesh{constructor({radius:o=3,height:t=.6,widthSegments:n=64,heightSegments:r=16,phiStart:m=0,phiLength:s=Math.PI*2}={}){super(),this.geometry=new K({radius:o,height:t,widthSegments:n,heightSegments:r,phiStart:m,phiLength:s}),this.material=new e.MeshStandardMaterial({color:65280,flatShading:!0})}}class co extends e.Mesh{constructor({radius:o=F(5,Math.PI/10),widthSegments:t=64,heightSegments:n=32,phiStart:r=0,phiLength:m=Math.PI*2,thetaLength:s=Math.PI/10}={}){super(),this.geometry=new $({radius:o,widthSegments:t,heightSegments:n,phiStart:r,phiLength:m,thetaLength:s}),this.material=new e.MeshStandardMaterial({color:65280,flatShading:!0})}}function io(l,{time:o=0,waveFrequency:t=.2,waveAmplitude:n=.5}={}){l.onBeforeCompile=r=>{r.uniforms.time={value:o},r.uniforms.waveFrequency={value:t},r.uniforms.waveAmplitude={value:n},r.vertexShader=`
|
|
39
39
|
uniform float time;
|
|
40
40
|
uniform float waveFrequency;
|
|
41
41
|
uniform float waveAmplitude;
|
|
@@ -49,9 +49,9 @@ var ThreeLowPoly=function(d,e,x,j,W,N,ee){"use strict";const g={UP:new e.Vector3
|
|
|
49
49
|
|
|
50
50
|
return displaced;
|
|
51
51
|
}
|
|
52
|
-
`+
|
|
52
|
+
`+r.vertexShader,r.vertexShader=r.vertexShader.replace("#include <begin_vertex>",`
|
|
53
53
|
vec3 transformed = waterDisplacement(position, normal);
|
|
54
|
-
`),
|
|
54
|
+
`),l.userData.shader=r}}function lo(l,o){l.userData.shader&&(l.userData.shader.uniforms.time.value+=o)}function mo(l,{time:o=0,intensity:t=1,direction:n=g.XYZ,scale:r=10}={}){l.onBeforeCompile=m=>{m.uniforms.time={value:o},m.uniforms.direction={value:n},m.uniforms.intensity={value:t},m.uniforms.scale={value:r},m.vertexShader=`
|
|
55
55
|
uniform float time;
|
|
56
56
|
uniform vec3 direction;
|
|
57
57
|
uniform float intensity;
|
|
@@ -82,12 +82,12 @@ var ThreeLowPoly=function(d,e,x,j,W,N,ee){"use strict";const g={UP:new e.Vector3
|
|
|
82
82
|
|
|
83
83
|
return o4.y * d.y + o4.x * (1.0 - d.y);
|
|
84
84
|
}
|
|
85
|
-
`+
|
|
85
|
+
`+m.vertexShader,m.vertexShader=m.vertexShader.replace("#include <begin_vertex>",`
|
|
86
86
|
vec3 transformed = vec3(position);
|
|
87
87
|
float n = noise(transformed * scale + time);
|
|
88
88
|
transformed += normalize(direction) * n * intensity;
|
|
89
89
|
vec3 transformedNormal = normal;
|
|
90
|
-
`),
|
|
90
|
+
`),l.userData.shader=m}}function uo(l,o){l.userData.shader&&(l.userData.shader.uniforms.time.value+=o)}const N={uniforms:{},vertexShader:`
|
|
91
91
|
varying vec3 vPosition;
|
|
92
92
|
void main() {
|
|
93
93
|
vPosition = position;
|
|
@@ -101,7 +101,7 @@ var ThreeLowPoly=function(d,e,x,j,W,N,ee){"use strict";const g={UP:new e.Vector3
|
|
|
101
101
|
vec3 bottomColor = vec3(1.0, 1.0, 1.0); // Light white/gray for the horizon
|
|
102
102
|
gl_FragColor = vec4(mix(bottomColor, topColor, y), 1.0);
|
|
103
103
|
}
|
|
104
|
-
`},
|
|
104
|
+
`},ne={uniforms:{tDiffuse:{value:null},opacity:{value:1}},vertexShader:`
|
|
105
105
|
varying vec2 vUv;
|
|
106
106
|
void main() {
|
|
107
107
|
vUv = uv;
|
|
@@ -132,5 +132,5 @@ var ThreeLowPoly=function(d,e,x,j,W,N,ee){"use strict";const g={UP:new e.Vector3
|
|
|
132
132
|
float h = normalize(vWorldPosition + offset).y;
|
|
133
133
|
gl_FragColor = vec4(mix(bottomColor, topColor, max(pow(max(h, 0.0), exponent), 0.0)), 1.0);
|
|
134
134
|
}
|
|
135
|
-
`};class
|
|
135
|
+
`};class Mo extends e.Mesh{constructor(o=1e3){super(),this.geometry=new e.BoxGeometry(o,o,o),this.material=new e.ShaderMaterial({vertexShader:N.vertexShader,fragmentShader:N.fragmentShader,side:e.BackSide})}}class yo extends e.Mesh{constructor(o=1e3){super(),this.geometry=new e.SphereGeometry(o,32,15),this.material=new e.ShaderMaterial({vertexShader:A.vertexShader,fragmentShader:A.fragmentShader,uniforms:A.uniforms,side:e.BackSide})}}class fo extends e.Mesh{constructor(o=Math.PI*.49,t=2*Math.PI*.25,n=10,r=2,m=.005,s=.8){super();const a=new ae.Sky;a.scale.setScalar(45e4),this.add(a);const c=a.material.uniforms;c.turbidity.value=n,c.rayleigh.value=r,c.mieCoefficient.value=m,c.mieDirectionalG.value=s,this.skyUniforms=c,this.sunPosition(o,t)}sunPosition(o,t){const n=new e.Vector3,r=this.skyUniforms;n.setFromSphericalCoords(1,o,t),r.sunPosition.value.copy(n)}}const wo=l=>{const o=new Uint8Array(4*l*l);for(let n=0;n<l*l;n++){const r=n*4,m=(n%l^Math.floor(n/l))&1?255:0;o[r]=m,o[r+1]=m,o[r+2]=m,o[r+3]=255}const t=new e.DataTexture(o,l,l,e.RGBAFormat,e.UnsignedByteType);return t.wrapS=e.RepeatWrapping,t.wrapT=e.RepeatWrapping,t.minFilter=e.NearestFilter,t.needsUpdate=!0,t};function po(l){const t=new e.Box3().setFromObject(l).getCenter(new e.Vector3);l.translateX(-t.x),l.translateY(-t.y),l.translateZ(-t.z),l.updateMatrixWorld(!0)}function Go(l){l.geometry.computeBoundingBox();const t=l.geometry.boundingBox.getCenter(new e.Vector3);l.geometry.translate(-t.x,-t.y,-t.z)}class ho{static dispose(o){o==null||o.traverse(t=>{t.geometry&&t.geometry.dispose(),t.material&&(Array.isArray(t.material)?t.material.forEach(n=>n.dispose()):t.material.dispose())})}static fadeBetween(o,t,n,r,m=1){const s=new re.EffectComposer(o),a=new L.RenderPass(n,t);s.addPass(a);const c=new ce.ShaderPass(ne);c.uniforms.opacity.value=1,s.addPass(c);let i=null;function d(y){i||(i=y);const f=(y-i)/1e3/m;c.uniforms.opacity.value=Math.max(1-f,0),f<1?(s.render(),requestAnimationFrame(d)):(s.passes[0]=new L.RenderPass(r,t),i=null,requestAnimationFrame(M))}function M(y){i||(i=y);const f=(y-i)/1e3/m;c.uniforms.opacity.value=Math.min(f,1),f<1&&(s.render(),requestAnimationFrame(M))}requestAnimationFrame(d)}}return u.Beaker=De,u.BeakerGeometry=Z,u.BifurcatedStaircaseGeometry=we,u.BoneGeometry=ve,u.Book=Ie,u.BookGeometry=z,u.Bottle=He,u.Bubbling=fe,u.BunsenBurner=Re,u.Burst=oo,u.BurstShape=W,u.Candle=Le,u.CrossHeadstone=Pe,u.CrossHeadstoneGeometry=q,u.DaySkybox=Mo,u.Desk=Ne,u.DioramaGeometry=pe,u.Direction=g,u.Easing=ye,u.ElectricPanel=Xe,u.Falloff=P,u.FenceColumn=Ve,u.FenceColumnGeometry=H,u.Flask=Ye,u.Gear=to,u.GearShape=ee,u.Heart=no,u.HeartShape=oe,u.Hill=ro,u.HillGeometry=K,u.LShapedStaircaseGeometry=Ge,u.Lantern=ze,u.LeverPanel=Ze,u.Mausoleum=ke,u.Microscope=_e,u.Moon=Be,u.MortarAndPestle=Qe,u.MortarGeometry=_,u.MossyRocks=qe,u.Mound=co,u.MoundGeometry=$,u.NightSkybox=yo,u.ObeliskHeadstone=Te,u.ObeliskHeadstoneGeometry=U,u.Rock=Ue,u.RockGeometry=Y,u.Rocks=Oe,u.RoundedHeadstone=Ae,u.RoundedHeadstoneGeometry=O,u.SceneUtils=ho,u.SimpleLeafGeometry=xe,u.SpiralStaircaseGeometry=he,u.SpiralTube=Ke,u.SquareHeadstone=Ce,u.SquareHeadstoneGeometry=D,u.StaircaseGeometry=Se,u.Stand=Je,u.Star=so,u.StarShape=te,u.TeslaCoil=$e,u.TestTube=je,u.TestTubeGeometry=T,u.TestTubeRack=We,u.Tree=ao,u.TreeGeometry=j,u.TwilightSkybox=fo,u.WineBottle=eo,u.WineBottleGeometry=Q,u.WroughtIronBar=Ee,u.WroughtIronBarGeometry=E,u.WroughtIronFence=Fe,u.WroughtIronFenceGeometry=R,u.addNoiseDisplacement=mo,u.addWaterDisplacement=io,u.calculateSphereCapHeight=J,u.calculateSphereCapWidth=be,u.centerMesh=po,u.centerMeshGeometry=Go,u.checkerboardTexture=wo,u.daySkyShader=N,u.displacementBrush=ie,u.fadeShader=ne,u.flattenBrush=le,u.nightSkyShader=A,u.noiseBrush=me,u.radiusForSphereCapHeight=ge,u.radiusForSphereCapWidth=F,u.randomTransformVertices=X,u.smoothBrush=ue,u.spikeBrush=de,u.twistBrush=Me,u.updateNoiseDisplacementTime=uo,u.updateWaterDisplacementTime=lo,Object.defineProperty(u,Symbol.toStringTag,{value:"Module"}),u}({},THREE,BufferGeometryUtils,Sky,EffectComposer,RenderPass,ShaderPass);
|
|
136
136
|
//# sourceMappingURL=index.iife.js.map
|