three-low-poly 0.9.2 → 0.9.4

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/README.md CHANGED
@@ -1,7 +1,32 @@
1
1
  # Three.js Low Poly
2
2
 
3
- Collection of low poly assets for Three.js.
3
+ Collection of procedurally generated low poly assets for Three.js.
4
4
 
5
5
  Example Graveyard Scene:
6
6
 
7
7
  ![screen-capture](https://github.com/user-attachments/assets/d97345cc-bdaa-46d5-a267-531559919ee5)
8
+
9
+ ## Getting Started
10
+
11
+ To install, execute:
12
+
13
+ ```shell
14
+ npm i lunarphase-js
15
+ ```
16
+
17
+ Then, import into a project and use as:
18
+
19
+ ```js
20
+ import { MossyRocks } from "three-low-poly";
21
+
22
+ const rocks = new MossyRocks();
23
+ scene.add(rocks);
24
+ ```
25
+
26
+ See the examples folder for more information.
27
+
28
+ ## Usage
29
+
30
+ Assets are procedurally generated and can be customized with parameters, generally featuring a base geometry that can be implemented as a mesh with material.
31
+
32
+ In addition to geometries are prefabricated models, either mesh or group that may be directly added to the scene with default materials.
package/dist/index.cjs.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("three"),S=require("three/addons/utils/BufferGeometryUtils.js");class q extends e.Group{constructor(){super();const t=[],o=20,s=new e.SphereGeometry(.1,6,6),n=new e.MeshStandardMaterial({color:16777215,transparent:!0,opacity:.6,roughness:.3,metalness:.3});for(let a=0;a<o;a++){const l=new e.Mesh(s,n);l.position.set((Math.random()-.5)*1.5,Math.random()*3,(Math.random()-.5)*1.5),t.push(l),this.add(l)}function c(){t.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 r(){requestAnimationFrame(r),c()}r()}}class A extends e.BufferGeometry{constructor(t=2,o=.3,s=.6,n=5,c=5,r=Math.PI/4){super();const a=[],l=[];for(let d=0;d<n;d++){const y=d*o,G=y+o,h=d*s,p=h+s;a.push(-t/2,y,h,t/2,y,h,t/2,G,h,-t/2,G,h,-t/2,G,h,t/2,G,h,t/2,G,p,-t/2,G,p);const w=d*8;l.push(w,w+1,w+2,w,w+2,w+3),l.push(w+4,w+5,w+6,w+4,w+6,w+7)}const i=n*o,m=n*s,u=t*2;a.push(-u/2,i,m,u/2,i,m,u/2,i,m+s,-u/2,i,m+s);const M=n*8;l.push(M,M+1,M+2,M,M+2,M+3);for(let d=0;d<2;d++){const y=d===0?1:-1;for(let G=0;G<c;G++){const h=i+G*o,p=h+o,w=y*(u/4),B=m+s,P=G*s*Math.cos(r),L=G*s*Math.sin(r),g=w+y*P-t/2*Math.cos(r),v=w+y*P+t/2*Math.cos(r),b=B+L,F=g+y*s*Math.cos(r),z=v+y*s*Math.cos(r),I=b+s*Math.sin(r);a.push(g,h,b,v,h,b,v,p,b,g,p,b,g,p,b,v,p,b,z,p,I,F,p,I);const x=M+4+d*c*8+G*8;l.push(x,x+1,x+2,x,x+2,x+3),l.push(x+4,x+5,x+6,x+4,x+6,x+7)}}this.setIndex(l),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class N extends e.BufferGeometry{constructor(t=5,o=3,s=5,n=.2){super();const c=[-t/2,0,-s/2,t/2,0,-s/2,t/2,0,s/2,-t/2,0,s/2,-t/2,0,-s/2,t/2,0,-s/2,t/2,o,-s/2,-t/2,o,-s/2,-t/2,0,-s/2,-t/2,0,s/2,-t/2,o,s/2,-t/2,o,-s/2],r=[0,1,2,0,2,3,4,5,6,4,6,7,8,9,10,8,10,11];this.setIndex(r),this.setAttribute("position",new e.Float32BufferAttribute(c,3)),this.computeVertexNormals()}}class E extends e.BufferGeometry{constructor(t=2,o=.3,s=.5,n=5,c=2){super();const r=[],a=[];for(let u=0;u<n;u++){const M=u*o,d=M+o,y=u*s,G=y+s;r.push(-t/2,M,y,t/2,M,y,t/2,d,y,-t/2,d,y,-t/2,d,y,t/2,d,y,t/2,d,G,-t/2,d,G);const h=u*8;a.push(h,h+1,h+2,h,h+2,h+3),a.push(h+4,h+5,h+6,h+4,h+6,h+7)}const l=n*o,i=n*s;r.push(-t/2,l,i,t/2,l,i,t/2,l,i+c,-t/2,l,i+c);const m=n*8;a.push(m,m+1,m+2,m,m+2,m+3);for(let u=0;u<n;u++){const M=l+u*o,d=M+o,y=-t/2-u*s,G=y-s;r.push(y,M,i+c,y,M,i+c-t,y,d,i+c-t,y,d,i+c,y,d,i+c,y,d,i+c-t,G,d,i+c-t,G,d,i+c);const h=m+4+u*8;a.push(h,h+1,h+2,h,h+2,h+3),a.push(h+4,h+5,h+6,h+4,h+6,h+7)}this.setIndex(a),this.setAttribute("position",new e.Float32BufferAttribute(r,3)),this.computeVertexNormals()}}class R extends e.BufferGeometry{constructor(t=1,o=.4,s=.2,n=20,c=2,r=Math.PI/8){super();const a=[],l=[];let i=0;for(let m=0;m<n;m++){const u=c*Math.cos(i),M=c*Math.sin(i),d=m*s,y=d+s;a.push(u-t/2*Math.cos(i),d,M-t/2*Math.sin(i),u+t/2*Math.cos(i),d,M+t/2*Math.sin(i),u+t/2*Math.cos(i),y,M+t/2*Math.sin(i),u-t/2*Math.cos(i),y,M-t/2*Math.sin(i)),a.push(u-t/2*Math.cos(i),y,M-t/2*Math.sin(i),u+t/2*Math.cos(i),y,M+t/2*Math.sin(i),u+t/2*Math.cos(i)-o*Math.sin(i),y,M+t/2*Math.sin(i)+o*Math.cos(i),u-t/2*Math.cos(i)-o*Math.sin(i),y,M-t/2*Math.sin(i)+o*Math.cos(i));const G=m*8;l.push(G,G+1,G+2,G,G+2,G+3),l.push(G+4,G+5,G+6,G+4,G+6,G+7),i+=r}this.setIndex(l),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class O extends e.BufferGeometry{constructor(t=2,o=.3,s=.5,n=10){super();const c=[],r=[];for(let a=0;a<n;a++){const l=a*o,i=l+o,m=a*s,u=m+s;c.push(-t/2,l,m,t/2,l,m,t/2,i,m,-t/2,i,m,-t/2,i,m,t/2,i,m,t/2,i,u,-t/2,i,u);const M=a*8;r.push(M,M+1,M+2,M,M+2,M+3),r.push(M+4,M+6,M+5,M+4,M+7,M+6)}this.setIndex(r),this.setAttribute("position",new e.Float32BufferAttribute(c,3)),this.computeVertexNormals()}}class Y extends e.BufferGeometry{constructor(t=.4,o=1.2,s=.2){super();const n=o*.6,c=new e.BoxGeometry(t/2,n,s);c.translate(0,n/2,0);const r=t*1.5,a=new e.BoxGeometry(r,t/4,s);a.translate(0,n*.75,0),this.copy(S.mergeGeometries([c,a],!0))}}class j extends e.BufferGeometry{constructor(t=1.75,o=.75){super();const s=t*.05,n=t*.15,c=t*.15,r=t*.75;let a=0;const l=new e.BoxGeometry(o,s,o);l.translate(0,a+s/2,0),a+=s;const i=new e.BoxGeometry(o*.8,n,o*.8);i.translate(0,a+n/2,0),a+=n;const m=new e.BoxGeometry(o*.6,c,o*.6);m.translate(0,a+c/2,0),a+=c;const u=new e.BoxGeometry(o*.4,r,o*.4);u.translate(0,a+r/2,0),a+=r;const M=new e.ConeGeometry(o*.4/Math.sqrt(2),.1,4,1,!1,Math.PI/4);M.translate(0,a+.1/2,0),this.copy(S.mergeGeometries([l,i,m,u,M],!0))}}class Z extends e.BufferGeometry{constructor(t=.6,o=1,s=.2){super();const n=o*.7,c=new e.BoxGeometry(t,n,s);c.translate(0,n/2,0);const r=o-n,a=new e.CylinderGeometry(t/2,t/2,s,16,1,!1,0,Math.PI);a.rotateY(Math.PI/2),a.rotateX(Math.PI/2),a.translate(0,n+r/2-s/2-.05,0),this.copy(S.mergeGeometries([c,a],!0))}}class _ extends e.BufferGeometry{constructor(t=.5,o=.8,s=.15){super();const n=new e.BoxGeometry(t,o,s);n.translate(0,o/2,0),this.copy(n)}}class X extends e.BufferGeometry{constructor(t=2.25){super();const o=new e.BoxGeometry(1.2,.5,1.2);o.translate(0,.25,0);const s=new e.BoxGeometry(1,t,1);s.translate(0,.5+t/2,0);const n=new e.BoxGeometry(1.4,.3,1.4);n.translate(0,.5+t+.15,0),this.copy(S.mergeGeometries([o,s,n],!0))}}class H extends e.BufferGeometry{constructor(t=2,o=.05,s=.3){super();const n=new e.CylinderGeometry(o,o,t,8);n.translate(0,t/2,0);const c=new e.ConeGeometry(o*1.5,s,8);c.translate(0,t+s/2,0),this.copy(S.mergeGeometries([n,c],!0))}}class U extends e.BufferGeometry{constructor(t=.1){super();const o=[],s=[],n=[[0,1],[.5,.75],[.75,.25],[.5,-.5],[0,-1],[-.5,-.5],[-.75,.25],[-.5,.75]];for(let r=0;r<n.length;r++){const[a,l]=n[r];o.push(a*t,l*t,0)}for(let r=1;r<n.length-1;r++)s.push(0,r,r+1);s.push(0,n.length-1,1);const c=new e.Float32BufferAttribute(o,3);this.setAttribute("position",c),this.setIndex(s),this.computeVertexNormals()}}class J extends e.BufferGeometry{constructor(t=.1,o=.1,s=.4,n=8){super();const c=new e.CylinderGeometry(t*.6,o*.6,s,n);c.translate(0,0,0);const r=new e.SphereGeometry(t,n,n),a=r.clone(),l=r.clone(),i=r.clone(),m=r.clone();a.translate(0,s/2+t*.6,-t*.6),l.translate(0,s/2+t*.6,t*.6),i.translate(0,-s/2-o*.6,-o*.6),m.translate(0,-s/2-o*.6,o*.6),this.copy(S.mergeGeometries([c,a,l,i,m],!0))}}class C extends e.BufferGeometry{constructor(){super();const t=new e.SphereGeometry(1,16,16),o=new e.CylinderGeometry(.2,.2,2,16,1,!0);o.translate(0,1.5,0),o.rotateX(Math.PI/2),this.copy(S.mergeGeometries([t,o],!0))}}class V extends e.BufferGeometry{constructor(){super();const t=[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)],o=new e.LatheGeometry(t,12),s=new e.CircleGeometry(1,12);s.rotateX(-Math.PI/2),s.translate(0,0,0),this.copy(S.mergeGeometries([o,s],!0))}}class k extends e.BufferGeometry{constructor(t=.2,o=.2,s=3,n=32,c=!0){super();const r=new e.CylinderGeometry(t,o,s,n,1,c),a=new e.SphereGeometry(o,n,n/2,0,Math.PI*2,Math.PI/2,Math.PI/2);a.translate(0,-(s/2),0),this.copy(S.mergeGeometries([r,a],!0))}}class T extends e.BufferGeometry{constructor({radius:t=.5,neckRadius:o=.2,height:s=3,neckHeight:n=1,segments:c=16}={}){super();const r=s-n,a=new e.CylinderGeometry(t,t,r,c);a.translate(0,r/2,0);const l=.3,i=new e.CylinderGeometry(o,t,l,c);i.translate(0,r+l/2,0);const m=new e.CylinderGeometry(o,o,n,c);m.translate(0,r+l+n/2,0),this.copy(S.mergeGeometries([a,i,m],!0))}}class K extends e.Group{constructor(){super();const t=new e.SphereGeometry(5,32,32),o=new e.ShaderMaterial({uniforms:{time:{value:0}},vertexShader:`
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("three"),S=require("three/addons/utils/BufferGeometryUtils.js");class N extends e.Group{constructor(){super();const t=[],s=20,o=new e.SphereGeometry(.1,6,6),n=new e.MeshStandardMaterial({color:16777215,transparent:!0,opacity:.6,roughness:.3,metalness:.3});for(let a=0;a<s;a++){const l=new e.Mesh(o,n);l.position.set((Math.random()-.5)*1.5,Math.random()*3,(Math.random()-.5)*1.5),t.push(l),this.add(l)}function c(){t.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 r(){requestAnimationFrame(r),c()}r()}}class U extends e.BufferGeometry{constructor(t=2,s=.3,o=.6,n=5,c=5,r=Math.PI/4){super();const a=[],l=[];for(let f=0;f<n;f++){const d=f*s,p=d+s,u=f*o,w=u+o;a.push(-t/2,d,u,t/2,d,u,t/2,p,u,-t/2,p,u,-t/2,p,u,t/2,p,u,t/2,p,w,-t/2,p,w);const G=f*8;l.push(G,G+1,G+2,G,G+2,G+3),l.push(G+4,G+5,G+6,G+4,G+6,G+7)}const i=n*s,h=n*o,m=t*2;a.push(-m/2,i,h,m/2,i,h,m/2,i,h+o,-m/2,i,h+o);const y=n*8;l.push(y,y+1,y+2,y,y+2,y+3);for(let f=0;f<2;f++){const d=f===0?1:-1;for(let p=0;p<c;p++){const u=i+p*s,w=u+s,G=d*(m/4),v=h+o,P=p*o*Math.cos(r),A=p*o*Math.sin(r),g=G+d*P-t/2*Math.cos(r),B=G+d*P+t/2*Math.cos(r),b=v+A,z=g+d*o*Math.cos(r),E=B+d*o*Math.cos(r),I=b+o*Math.sin(r);a.push(g,u,b,B,u,b,B,w,b,g,w,b,g,w,b,B,w,b,E,w,I,z,w,I);const x=y+4+f*c*8+p*8;l.push(x,x+1,x+2,x,x+2,x+3),l.push(x+4,x+5,x+6,x+4,x+6,x+7)}}this.setIndex(l),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class _ extends e.BufferGeometry{constructor(t=5,s=3,o=5,n=.2){super();const c=[-t/2,0,-o/2,t/2,0,-o/2,t/2,0,o/2,-t/2,0,o/2,-t/2,0,-o/2,t/2,0,-o/2,t/2,s,-o/2,-t/2,s,-o/2,-t/2,0,-o/2,-t/2,0,o/2,-t/2,s,o/2,-t/2,s,-o/2],r=[0,1,2,0,2,3,4,5,6,4,6,7,8,9,10,8,10,11];this.setIndex(r),this.setAttribute("position",new e.Float32BufferAttribute(c,3)),this.computeVertexNormals()}}class j extends e.BufferGeometry{constructor(t=2,s=.3,o=.5,n=5,c=2){super();const r=[],a=[];for(let m=0;m<n;m++){const y=m*s,f=y+s,d=m*o,p=d+o;r.push(-t/2,y,d,t/2,y,d,t/2,f,d,-t/2,f,d,-t/2,f,d,t/2,f,d,t/2,f,p,-t/2,f,p);const u=m*8;a.push(u,u+1,u+2,u,u+2,u+3),a.push(u+4,u+5,u+6,u+4,u+6,u+7)}const l=n*s,i=n*o;r.push(-t/2,l,i,t/2,l,i,t/2,l,i+c,-t/2,l,i+c);const h=n*8;a.push(h,h+1,h+2,h,h+2,h+3);for(let m=0;m<n;m++){const y=l+m*s,f=y+s,d=-t/2-m*o,p=d-o;r.push(d,y,i+c,d,y,i+c-t,d,f,i+c-t,d,f,i+c,d,f,i+c,d,f,i+c-t,p,f,i+c-t,p,f,i+c);const u=h+4+m*8;a.push(u,u+1,u+2,u,u+2,u+3),a.push(u+4,u+5,u+6,u+4,u+6,u+7)}this.setIndex(a),this.setAttribute("position",new e.Float32BufferAttribute(r,3)),this.computeVertexNormals()}}class O extends e.BufferGeometry{constructor(t=1,s=.4,o=.2,n=20,c=2,r=Math.PI/8){super();const a=[],l=[];let i=0;for(let h=0;h<n;h++){const m=c*Math.cos(i),y=c*Math.sin(i),f=h*o,d=f+o;a.push(m-t/2*Math.cos(i),f,y-t/2*Math.sin(i),m+t/2*Math.cos(i),f,y+t/2*Math.sin(i),m+t/2*Math.cos(i),d,y+t/2*Math.sin(i),m-t/2*Math.cos(i),d,y-t/2*Math.sin(i)),a.push(m-t/2*Math.cos(i),d,y-t/2*Math.sin(i),m+t/2*Math.cos(i),d,y+t/2*Math.sin(i),m+t/2*Math.cos(i)-s*Math.sin(i),d,y+t/2*Math.sin(i)+s*Math.cos(i),m-t/2*Math.cos(i)-s*Math.sin(i),d,y-t/2*Math.sin(i)+s*Math.cos(i));const p=h*8;l.push(p,p+1,p+2,p,p+2,p+3),l.push(p+4,p+5,p+6,p+4,p+6,p+7),i+=r}this.setIndex(l),this.setAttribute("position",new e.Float32BufferAttribute(a,3)),this.computeVertexNormals()}}class Y extends e.BufferGeometry{constructor(t=2,s=.3,o=.5,n=10){super();const c=[],r=[];for(let a=0;a<n;a++){const l=a*s,i=l+s,h=a*o,m=h+o;c.push(-t/2,l,h,t/2,l,h,t/2,i,h,-t/2,i,h,-t/2,i,h,t/2,i,h,t/2,i,m,-t/2,i,m);const y=a*8;r.push(y,y+1,y+2,y,y+2,y+3),r.push(y+4,y+6,y+5,y+4,y+7,y+6)}this.setIndex(r),this.setAttribute("position",new e.Float32BufferAttribute(c,3)),this.computeVertexNormals()}}class Z extends e.BufferGeometry{constructor(t=.4,s=1.2,o=.2){super();const n=s*.6,c=new e.BoxGeometry(t/2,n,o);c.translate(0,n/2,0);const r=t*1.5,a=new e.BoxGeometry(r,t/4,o);a.translate(0,n*.75,0),this.copy(S.mergeGeometries([c,a],!1))}}class X extends e.BufferGeometry{constructor(t=1.75,s=.75){super();const o=t*.05,n=t*.15,c=t*.15,r=t*.75;let a=0;const l=new e.BoxGeometry(s,o,s);l.translate(0,a+o/2,0),a+=o;const i=new e.BoxGeometry(s*.8,n,s*.8);i.translate(0,a+n/2,0),a+=n;const h=new e.BoxGeometry(s*.6,c,s*.6);h.translate(0,a+c/2,0),a+=c;const m=new e.BoxGeometry(s*.4,r,s*.4);m.translate(0,a+r/2,0),a+=r;const y=new e.ConeGeometry(s*.4/Math.sqrt(2),.1,4,1,!1,Math.PI/4);y.translate(0,a+.1/2,0),this.copy(S.mergeGeometries([l,i,h,m,y],!1))}}class H extends e.BufferGeometry{constructor(t=.6,s=1,o=.2){super();const n=s*.7,c=new e.BoxGeometry(t,n,o);c.translate(0,n/2,0);const r=s-n,a=new e.CylinderGeometry(t/2,t/2,o,16,1,!1,0,Math.PI);a.rotateY(Math.PI/2),a.rotateX(Math.PI/2),a.translate(0,n+r/2-o/2-.05,0),this.copy(S.mergeGeometries([c,a],!1))}}class J extends e.BufferGeometry{constructor(t=.5,s=.8,o=.15){super();const n=new e.BoxGeometry(t,s,o);n.translate(0,s/2,0),this.copy(n)}}class K extends e.BufferGeometry{constructor(t=2.25){super();const s=new e.BoxGeometry(1.2,.5,1.2);s.translate(0,.25,0);const o=new e.BoxGeometry(1,t,1);o.translate(0,.5+t/2,0);const n=new e.BoxGeometry(1.4,.3,1.4);n.translate(0,.5+t+.15,0),this.copy(S.mergeGeometries([s,o,n],!1))}}class Q extends e.BufferGeometry{constructor(t=2,s=.05,o=.3){super();const n=new e.CylinderGeometry(s,s,t,8);n.translate(0,t/2,0);const c=new e.ConeGeometry(s*1.5,o,8);c.translate(0,t+o/2,0),this.copy(S.mergeGeometries([n,c],!1))}}class $ extends e.BufferGeometry{constructor(t=.1){super();const s=[],o=[],n=[[0,1],[.5,.75],[.75,.25],[.5,-.5],[0,-1],[-.5,-.5],[-.75,.25],[-.5,.75]];for(let r=0;r<n.length;r++){const[a,l]=n[r];s.push(a*t,l*t,0)}for(let r=1;r<n.length-1;r++)o.push(0,r,r+1);o.push(0,n.length-1,1);const c=new e.Float32BufferAttribute(s,3);this.setAttribute("position",c),this.setIndex(o),this.computeVertexNormals()}}class D extends e.BufferGeometry{constructor(t=.1,s=.1,o=.4,n=8){super();const c=new e.CylinderGeometry(t*.6,s*.6,o,n);c.translate(0,0,0);const r=new e.SphereGeometry(t,n,n),a=r.clone(),l=r.clone(),i=r.clone(),h=r.clone();a.translate(0,o/2+t*.6,-t*.6),l.translate(0,o/2+t*.6,t*.6),i.translate(0,-o/2-s*.6,-s*.6),h.translate(0,-o/2-s*.6,s*.6),this.copy(S.mergeGeometries([c,a,l,i,h],!1))}}class T extends e.BufferGeometry{constructor(){super();const t=new e.SphereGeometry(1,16,16),s=new e.CylinderGeometry(.2,.2,2,16,1,!0);s.translate(0,1.5,0),s.rotateX(Math.PI/2),this.copy(S.mergeGeometries([t,s],!1))}}class C extends e.BufferGeometry{constructor(){super();const t=[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)],s=new e.LatheGeometry(t,12),o=new e.CircleGeometry(1,12);o.rotateX(-Math.PI/2),o.translate(0,0,0),this.copy(S.mergeGeometries([s,o],!1))}}class k extends e.BufferGeometry{constructor(t=.2,s=.2,o=3,n=32,c=!0){super();const r=new e.CylinderGeometry(t,s,o,n,1,c),a=new e.SphereGeometry(s,n,n/2,0,Math.PI*2,Math.PI/2,Math.PI/2);a.translate(0,-(o/2),0),this.copy(S.mergeGeometries([r,a],!1))}}class V extends e.BufferGeometry{constructor({radius:t=.5,neckRadius:s=.2,height:o=3,neckHeight:n=1,segments:c=16}={}){super();const r=o-n,a=new e.CylinderGeometry(t,t,r,c);a.translate(0,r/2,0);const l=.3,i=new e.CylinderGeometry(s,t,l,c);i.translate(0,r+l/2,0);const h=new e.CylinderGeometry(s,s,n,c);h.translate(0,r+l+n/2,0),this.copy(S.mergeGeometries([a,i,h],!1))}}class R extends e.Group{constructor(){super();const t=new e.SphereGeometry(5,32,32),s=new e.ShaderMaterial({uniforms:{time:{value:0}},vertexShader:`
2
2
  varying vec3 vNormal;
3
3
  varying vec3 vPosition;
4
4
  void main() {
@@ -35,5 +35,19 @@
35
35
  color *= 0.8 + 0.2 * n; // Modulate color by noise
36
36
  gl_FragColor = vec4(color, 1.0);
37
37
  }
38
- `}),s=new e.Mesh(t,o);this.add(s)}}class Q extends e.Group{constructor(){super();const t=new e.BoxGeometry(5,1,5),o=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),s=new e.Mesh(t,o);s.position.set(0,.5,0),this.add(s);const n=new e.BoxGeometry(4,3,4),c=new e.MeshStandardMaterial({color:6908265,flatShading:!0}),r=new e.Mesh(n,c);r.position.set(0,2.5,0),this.add(r);const a=new e.ConeGeometry(3.5,2,4),l=new e.MeshStandardMaterial({color:5263440,flatShading:!0}),i=new e.Mesh(a,l);i.rotation.y=Math.PI/4,i.position.set(0,5,0),this.add(i);const m=new e.CylinderGeometry(.2,.2,3.5,16),u=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(w=>{const B=new e.Mesh(m,u);B.position.set(...w),this.add(B)});const d=new e.Shape;d.moveTo(-1,0),d.lineTo(-1,2),d.absarc(0,2,1,Math.PI,0,!0),d.lineTo(1,0);const y={depth:.5,bevelEnabled:!1},G=new e.ExtrudeGeometry(d,y),h=new e.MeshStandardMaterial({color:4210752,flatShading:!0}),p=new e.Mesh(G,h);p.position.set(0,.5,1.7),this.add(p)}}class $ extends e.Group{constructor(){super();const t=new e.BoxGeometry(5,.3,3),o=new e.MeshStandardMaterial({color:9132587}),s=new e.Mesh(t,o);s.position.set(0,3.15,0);const n=[];n.push(new e.Vector2(.2,0)),n.push(new e.Vector2(.25,.5)),n.push(new e.Vector2(.15,1.5)),n.push(new e.Vector2(.3,3));const c=new e.LatheGeometry(n,32),r=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(l=>{const i=new e.Mesh(c,r);i.position.set(...l),this.add(i)}),this.add(s)}}class D extends e.Group{constructor(t=1,o=.2){super(),this.height=t,this.radius=o,this.createCandle(),this.animateFlicker()}createCandle(){const t=new e.CylinderGeometry(this.radius,this.radius,this.height,32),o=new e.MeshStandardMaterial({color:16777215});this.candle=new e.Mesh(t,o),this.candle.position.set(0,this.height/2,0),this.add(this.candle);const s=new e.SphereGeometry(.05,16,16),n=new e.MeshBasicMaterial({color:16753920});this.flame=new e.Mesh(s,n),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 t=()=>{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(t)};t()}}class W extends e.Group{constructor(t=1.3,o=.5){super();const s=new e.CylinderGeometry(o,o,.2,16),n=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),c=new e.Mesh(s,n);c.position.set(0,0,0),this.add(c);const r=new e.CylinderGeometry(o*.9,o*.9,t),a=new e.MeshStandardMaterial({color:16766720,flatShading:!0,transparent:!0,opacity:.6}),l=new e.Mesh(r,a);l.position.set(0,t/2+.1,0),this.add(l);const i=new e.ConeGeometry(o*1.1,.5,8),m=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),u=new e.Mesh(i,m);u.position.set(0,t+.35,0),this.add(u);const M=new e.TorusGeometry(o*.8,.05,8,16),d=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),y=new e.Mesh(M,d);y.position.set(0,t+.85,0),this.add(y);const G=new e.PointLight(16755200,1.5,15);G.position.set(0,t/2+.1,0),G.castShadow=!0,this.add(G)}}class ee extends e.Group{constructor(){super();const t=new e.DodecahedronGeometry(1,0),o=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),s=new e.MeshStandardMaterial({color:4950843,flatShading:!0,opacity:.8,transparent:!0});for(let n=0;n<5;n++){const c=new e.Mesh(t,o);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);const r=new e.Mesh(t,s);r.scale.set(c.scale.x*.9,c.scale.y*.5,c.scale.z*.9),r.rotation.copy(c.rotation),r.position.copy(c.position),r.position.y+=.3,this.add(r)}}}class te extends e.Group{constructor(){super();const t=new e.DodecahedronGeometry(1,0),o=new e.MeshStandardMaterial({color:8421504,flatShading:!0});for(let s=0;s<5;s++){const n=new e.Mesh(t,o);n.scale.set(.8+Math.random()*.4,.8+Math.random()*.4,.8+Math.random()*.4),n.rotation.set(Math.random()*Math.PI,Math.random()*Math.PI,Math.random()*Math.PI),n.position.set((Math.random()-.5)*4,0,(Math.random()-.5)*4),this.add(n)}}}class oe extends e.Group{constructor(){super();const t=new C,o=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),s=new e.Mesh(t,o);s.rotation.x=-Math.PI/2,this.add(s)}}class se extends e.Group{constructor(){super();const t=new e.BoxGeometry(1.6,.05,2.1),o=new e.MeshStandardMaterial({color:9109504}),s=new e.Mesh(t,o),n=new e.Mesh(t,o);s.position.set(0,.125,0),n.position.set(0,-.125,0);const c=new e.BoxGeometry(1.55,.2,2),r=new e.MeshStandardMaterial({color:16777215}),a=new e.Mesh(c,r);a.position.set(-.025,0,0);const l=new e.BoxGeometry(.05,.25,2.1),i=new e.MeshStandardMaterial({color:4915200}),m=new e.Mesh(l,i);m.position.set(-.8,0,0),this.add(s),this.add(n),this.add(a),this.add(m)}}class ne extends e.Group{constructor(){super();const t=[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)],o=new e.LatheGeometry(t,10),s=new e.CylinderGeometry(.3,.4,.2,8),n=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.5,roughness:.1,metalness:.3}),c=new e.MeshStandardMaterial({color:16724838,transparent:!0,opacity:.6}),r=new e.MeshStandardMaterial({color:9127187,roughness:1}),a=new e.Mesh(o,n),l=new e.Mesh(o,c),i=new e.Mesh(s,r);l.scale.set(.8,.8,.8),l.position.y=.1,i.position.y=2.5;const m=new e.Group;m.add(a,l,i),this.add(m)}}class re extends e.Group{constructor(){super();const t=new e.CylinderGeometry(.3,.4,.1,16),o=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.3}),s=new e.Mesh(t,o);s.position.y=.05;const n=new e.CylinderGeometry(.1,.1,.7,16),c=new e.MeshStandardMaterial({color:5592405,roughness:.5,metalness:.4}),r=new e.Mesh(n,c);r.position.y=.4;const a=new e.ConeGeometry(.075,.2,16),l=new e.MeshStandardMaterial({color:16733440,emissive:16733440,emissiveIntensity:.6,transparent:!0,opacity:.8}),i=new e.Mesh(a,l);i.position.y=.8,this.add(s,r,i)}}class ae extends e.Group{constructor(){super();const t=new e.BoxGeometry(3,4,.1),o=new e.MeshStandardMaterial({color:3026478,roughness:.8,metalness:.6}),s=new e.BoxGeometry(.2,.5,.2),n=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7}),c=new e.CylinderGeometry(.3,.3,.1,16),r=new e.MeshStandardMaterial({color:5592405,roughness:.7,metalness:.5}),a=new e.Mesh(t,o);for(let h=-1;h<=1;h++){const p=new e.Mesh(s,n);p.position.set(h,1.5,.1),a.add(p)}const l=new e.Mesh(c,r);l.rotation.x=Math.PI/2,l.position.set(0,.5,.15),a.add(l);const i=new e.SphereGeometry(.15,8,8),m=new e.MeshStandardMaterial({color:16711680,emissive:16711680,emissiveIntensity:.5}),u=new e.Mesh(i,m);u.position.set(0,-1,.1),a.add(u),this.add(a);let M=.015,d=.8,y=.2;function G(){requestAnimationFrame(G);const h=y+Math.abs(Math.sin(Date.now()*M))*(d-y);u.material.emissiveIntensity=h}G()}}class ce extends e.Group{constructor(){super();const t=[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)],o=new e.LatheGeometry(t,12),s=new e.CylinderGeometry(.6,.7,.3,8),n=new e.MeshStandardMaterial({color:8965290,transparent:!0,opacity:.4,roughness:.1,metalness:.5}),c=new e.MeshStandardMaterial({color:9127187,roughness:1}),r=new e.Mesh(o,n),a=new e.Mesh(s,c);a.position.y=3.5,this.add(r,a)}}class ie extends e.Group{constructor(){super();const t=new e.BoxGeometry(2,3,.1),o=new e.MeshStandardMaterial({color:3355443,roughness:.8,metalness:.5}),s=new e.Mesh(t,o),n=new e.CylinderGeometry(.1,.1,.2,8),c=new e.CylinderGeometry(.05,.05,1,8),r=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7});for(let a=-.5;a<=.5;a+=.5){const l=new e.Mesh(n,r);l.position.set(a,1,.1);const i=new e.Mesh(c,r);i.position.y=.5,l.add(i),this.add(l)}this.add(s)}}class le extends e.Group{constructor(){super();const t=new e.BoxGeometry(1,.2,.5),o=new e.MeshStandardMaterial({color:4473924,roughness:.6,metalness:.3}),s=new e.Mesh(t,o);s.position.y=.1;const n=new e.BoxGeometry(.2,1,.2),c=new e.Mesh(n,o);c.position.set(0,.6,-.2);const r=new e.CylinderGeometry(.1,.1,.4,8),a=new e.MeshStandardMaterial({color:3355443,roughness:.5,metalness:.6}),l=new e.Mesh(r,a);l.position.set(0,1.1,-.35),l.rotation.x=-Math.PI/4;const i=new e.BoxGeometry(.6,.1,.6),m=new e.MeshStandardMaterial({color:5592405,roughness:.8,metalness:.2}),u=new e.Mesh(i,m);u.position.set(0,.6,0),this.add(s,c,l,u)}}class me extends e.Group{constructor(){super();const t=new V,o=new e.CylinderGeometry(.2,.3,1.5,8);o.translate(0,.75,0);const s=new e.MeshStandardMaterial({color:6045747,roughness:1,metalness:0,side:e.DoubleSide}),n=new e.MeshStandardMaterial({color:9132587,roughness:.8,metalness:.1}),c=new e.Mesh(t,s),r=new e.Mesh(o,n);r.position.set(.3,1.3,0),r.rotation.z=Math.PI/4,this.add(c,r)}}class Me extends e.Group{constructor(){super();const t=100,o=.05,s=new e.CatmullRomCurve3(Array.from({length:t},(i,m)=>{const u=m*.2;return new e.Vector3(Math.cos(u)*.4,m*o,Math.sin(u)*.4)})),n=new e.TubeGeometry(s,200,.1,8,!1),c=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.3,roughness:.1,metalness:.2,emissive:8965375}),r=new e.Mesh(n,c);this.add(r);function a(){c.emissiveIntensity=.2+Math.sin(Date.now()*.005)*.1}function l(){requestAnimationFrame(l),a()}l()}}class ue extends e.Group{constructor(){super();const t=new e.TorusGeometry(.3,.03,8,16),o=new e.MeshStandardMaterial({color:8947848,roughness:.7,metalness:.3}),s=new e.Mesh(t,o);s.rotation.x=Math.PI/2,s.position.y=.4;const n=new e.CylinderGeometry(.02,.02,.4,8),c=new e.MeshStandardMaterial({color:6710886,roughness:.8,metalness:.3}),r=[];for(let a=0;a<3;a++){const l=a/3*Math.PI*2,i=new e.Mesh(n,c);i.position.set(Math.cos(l)*.25,.2,Math.sin(l)*.25),r.push(i)}this.add(s,...r)}}class he extends e.Group{constructor(){super();const t=new e.CylinderGeometry(.5,.6,.3,16),o=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.5}),s=new e.Mesh(t,o);s.position.y=.15;const n=new e.CylinderGeometry(.15,.15,2,12,1,!0),c=new e.MeshStandardMaterial({color:16737792,roughness:.5,metalness:.8,side:e.DoubleSide}),r=new e.Mesh(n,c);r.position.y=1.3;const a=new e.SphereGeometry(.3,16,16),l=new e.Mesh(a,c);l.position.y=2.4,this.add(s,r,l);const i=[];for(let M=0;M<5;M++){const d=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),h=new e.Line(G,d);this.add(h),i.push(h)}function m(){i.forEach(M=>{const d=[new e.Vector3(0,2.4,0),new e.Vector3((Math.random()-.5)*1.5,Math.random()*2.4,(Math.random()-.5)*1.5)];M.geometry.setFromPoints(d)})}function u(){requestAnimationFrame(u),m()}u()}}class ye extends e.Group{constructor(t=.2,o=.2,s=3,n=32){super();const c=new k(t,o,s,n),r=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),a=new e.Mesh(c,r);this.add(a)}}class de extends e.Group{constructor(t=3,o=[65450,16711850,11141375]){super();const s=new e.BoxGeometry(3,.2,1),n=new e.MeshStandardMaterial({color:9127187,roughness:.7,metalness:.3}),c=new e.Mesh(s,n);c.position.y=.5;const r=new k(.1,.1,1,16),a=new e.MeshStandardMaterial({color:11184810,transparent:!0,opacity:.4,roughness:.1,metalness:.5,side:e.DoubleSide});for(let l=0;l<t;l++){const i=new e.Mesh(r,a),m=(l-(t-1)/2)*.8;i.position.set(m,1,0);const u=new k(.099,.099,.5,16,!1),M=o[l%o.length],d=new e.MeshStandardMaterial({color:M,emissive:M,emissiveIntensity:.5,transparent:!0,opacity:.6}),y=new e.Mesh(u,d);y.position.set(0,-.25,0),i.add(y),c.add(i)}this.add(c)}}class Ge extends e.Mesh{constructor(){super();const t=new T,o=new e.MeshPhysicalMaterial({color:5597999,roughness:.1,transmission:.9,thickness:.2,metalness:0,clearcoat:1,clearcoatRoughness:.1});this.geometry=t,this.material=o}}exports.Beaker=oe;exports.BeakerGeometry=C;exports.BifurcatedStaircaseGeometry=A;exports.BoneGeometry=J;exports.Book=se;exports.Bottle=ne;exports.Bubbling=q;exports.BunsenBurner=re;exports.Candle=D;exports.CrossHeadstoneGeometry=Y;exports.Desk=$;exports.DioramaGeometry=N;exports.ElectricPanel=ae;exports.FenceColumn=X;exports.Flask=ce;exports.LShapedStaircaseGeometry=E;exports.Lantern=W;exports.LeverPanel=ie;exports.Mausoleum=Q;exports.Microscope=le;exports.Moon=K;exports.MortarAndPestle=me;exports.MortarGeometry=V;exports.MossyRocks=ee;exports.ObeliskHeadstoneGeometry=j;exports.Rocks=te;exports.RoundedHeadstoneGeometry=Z;exports.SimpleLeafGeometry=U;exports.SpiralStaircaseGeometry=R;exports.SpiralTube=Me;exports.SquareHeadstoneGeometry=_;exports.StaircaseGeometry=O;exports.Stand=ue;exports.TeslaCoil=he;exports.TestTube=ye;exports.TestTubeGeometry=k;exports.TestTubeRack=de;exports.WineBottle=Ge;exports.WineBottleGeometry=T;exports.WroughtIronBarGeometry=H;
38
+ `}),o=new e.Mesh(t,s);this.add(o)}}class W extends e.Group{constructor(){super();const t=new e.BoxGeometry(5,1,5),s=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),o=new e.Mesh(t,s);o.position.set(0,.5,0),this.add(o);const n=new e.BoxGeometry(4,3,4),c=new e.MeshStandardMaterial({color:6908265,flatShading:!0}),r=new e.Mesh(n,c);r.position.set(0,2.5,0),this.add(r);const a=new e.ConeGeometry(3.5,2,4),l=new e.MeshStandardMaterial({color:5263440,flatShading:!0}),i=new e.Mesh(a,l);i.rotation.y=Math.PI/4,i.position.set(0,5,0),this.add(i);const h=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(G=>{const v=new e.Mesh(h,m);v.position.set(...G),this.add(v)});const f=new e.Shape;f.moveTo(-1,0),f.lineTo(-1,2),f.absarc(0,2,1,Math.PI,0,!0),f.lineTo(1,0);const d={depth:.5,bevelEnabled:!1},p=new e.ExtrudeGeometry(f,d),u=new e.MeshStandardMaterial({color:4210752,flatShading:!0}),w=new e.Mesh(p,u);w.position.set(0,.5,1.7),this.add(w)}}class ee extends e.Group{constructor(){super();const t=new e.BoxGeometry(5,.3,3),s=new e.MeshStandardMaterial({color:9132587}),o=new e.Mesh(t,s);o.position.set(0,3.15,0);const n=[];n.push(new e.Vector2(.2,0)),n.push(new e.Vector2(.25,.5)),n.push(new e.Vector2(.15,1.5)),n.push(new e.Vector2(.3,3));const c=new e.LatheGeometry(n,32),r=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(l=>{const i=new e.Mesh(c,r);i.position.set(...l),this.add(i)}),this.add(o)}}class te extends e.Group{constructor(t=1,s=.2){super(),this.height=t,this.radius=s,this.createCandle(),this.animateFlicker()}createCandle(){const t=new e.CylinderGeometry(this.radius,this.radius,this.height,32),s=new e.MeshStandardMaterial({color:16777215});this.candle=new e.Mesh(t,s),this.candle.position.set(0,this.height/2,0),this.add(this.candle);const o=new e.SphereGeometry(.05,16,16),n=new e.MeshBasicMaterial({color:16753920});this.flame=new e.Mesh(o,n),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 t=()=>{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(t)};t()}}class oe extends e.Group{constructor(t=1.3,s=.5){super();const o=new e.CylinderGeometry(s,s,.2,16),n=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),c=new e.Mesh(o,n);c.position.set(0,0,0),this.add(c);const r=new e.CylinderGeometry(s*.9,s*.9,t),a=new e.MeshStandardMaterial({color:16766720,flatShading:!0,transparent:!0,opacity:.6}),l=new e.Mesh(r,a);l.position.set(0,t/2+.1,0),this.add(l);const i=new e.ConeGeometry(s*1.1,.5,8),h=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),m=new e.Mesh(i,h);m.position.set(0,t+.35,0),this.add(m);const y=new e.TorusGeometry(s*.8,.05,8,16),f=new e.MeshStandardMaterial({color:9127187,flatShading:!0}),d=new e.Mesh(y,f);d.position.set(0,t+.85,0),this.add(d);const p=new e.PointLight(16755200,1.5,15);p.position.set(0,t/2+.1,0),p.castShadow=!0,this.add(p)}}class se extends e.Group{constructor(){super();const t=new e.DodecahedronGeometry(1,0),s=new e.MeshStandardMaterial({color:8421504,flatShading:!0}),o=new e.MeshStandardMaterial({color:4950843,flatShading:!0,opacity:.8,transparent:!0});for(let n=0;n<5;n++){const c=new e.Mesh(t,s);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);const r=new e.Mesh(t,o);r.scale.set(c.scale.x*.9,c.scale.y*.5,c.scale.z*.9),r.rotation.copy(c.rotation),r.position.copy(c.position),r.position.y+=.3,this.add(r)}}}class ne extends e.Group{constructor(){super();const t=new e.DodecahedronGeometry(1,0),s=new e.MeshStandardMaterial({color:8421504,flatShading:!0});for(let o=0;o<5;o++){const n=new e.Mesh(t,s);n.scale.set(.8+Math.random()*.4,.8+Math.random()*.4,.8+Math.random()*.4),n.rotation.set(Math.random()*Math.PI,Math.random()*Math.PI,Math.random()*Math.PI),n.position.set((Math.random()-.5)*4,0,(Math.random()-.5)*4),this.add(n)}}}class re extends e.Group{constructor(){super();const t=new T,s=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),o=new e.Mesh(t,s);o.rotation.x=-Math.PI/2,this.add(o)}}class ae extends e.Group{constructor(){super();const t=new e.BoxGeometry(1.6,.05,2.1),s=new e.MeshStandardMaterial({color:9109504}),o=new e.Mesh(t,s),n=new e.Mesh(t,s);o.position.set(0,.125,0),n.position.set(0,-.125,0);const c=new e.BoxGeometry(1.55,.2,2),r=new e.MeshStandardMaterial({color:16777215}),a=new e.Mesh(c,r);a.position.set(-.025,0,0);const l=new e.BoxGeometry(.05,.25,2.1),i=new e.MeshStandardMaterial({color:4915200}),h=new e.Mesh(l,i);h.position.set(-.8,0,0),this.add(o),this.add(n),this.add(a),this.add(h)}}class ce extends e.Group{constructor(){super();const t=[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)],s=new e.LatheGeometry(t,10),o=new e.CylinderGeometry(.3,.4,.2,8),n=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.5,roughness:.1,metalness:.3}),c=new e.MeshStandardMaterial({color:16724838,transparent:!0,opacity:.6}),r=new e.MeshStandardMaterial({color:9127187,roughness:1}),a=new e.Mesh(s,n),l=new e.Mesh(s,c),i=new e.Mesh(o,r);l.scale.set(.8,.8,.8),l.position.y=.1,i.position.y=2.5;const h=new e.Group;h.add(a,l,i),this.add(h)}}class ie extends e.Group{constructor(){super();const t=new e.CylinderGeometry(.3,.4,.1,16),s=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.3}),o=new e.Mesh(t,s);o.position.y=.05;const n=new e.CylinderGeometry(.1,.1,.7,16),c=new e.MeshStandardMaterial({color:5592405,roughness:.5,metalness:.4}),r=new e.Mesh(n,c);r.position.y=.4;const a=new e.ConeGeometry(.075,.2,16),l=new e.MeshStandardMaterial({color:16733440,emissive:16733440,emissiveIntensity:.6,transparent:!0,opacity:.8}),i=new e.Mesh(a,l);i.position.y=.8,this.add(o,r,i)}}class le extends e.Group{constructor(){super();const t=new e.BoxGeometry(3,4,.1),s=new e.MeshStandardMaterial({color:3026478,roughness:.8,metalness:.6}),o=new e.BoxGeometry(.2,.5,.2),n=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7}),c=new e.CylinderGeometry(.3,.3,.1,16),r=new e.MeshStandardMaterial({color:5592405,roughness:.7,metalness:.5}),a=new e.Mesh(t,s);for(let u=-1;u<=1;u++){const w=new e.Mesh(o,n);w.position.set(u,1.5,.1),a.add(w)}const l=new e.Mesh(c,r);l.rotation.x=Math.PI/2,l.position.set(0,.5,.15),a.add(l);const i=new e.SphereGeometry(.15,8,8),h=new e.MeshStandardMaterial({color:16711680,emissive:16711680,emissiveIntensity:.5}),m=new e.Mesh(i,h);m.position.set(0,-1,.1),a.add(m),this.add(a);let y=.015,f=.8,d=.2;function p(){requestAnimationFrame(p);const u=d+Math.abs(Math.sin(Date.now()*y))*(f-d);m.material.emissiveIntensity=u}p()}}class he extends e.Group{constructor(){super();const t=[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)],s=new e.LatheGeometry(t,12),o=new e.CylinderGeometry(.6,.7,.3,8),n=new e.MeshStandardMaterial({color:8965290,transparent:!0,opacity:.4,roughness:.1,metalness:.5}),c=new e.MeshStandardMaterial({color:9127187,roughness:1}),r=new e.Mesh(s,n),a=new e.Mesh(o,c);a.position.y=3.5,this.add(r,a)}}class me extends e.Group{constructor(){super();const t=new e.BoxGeometry(2,3,.1),s=new e.MeshStandardMaterial({color:3355443,roughness:.8,metalness:.5}),o=new e.Mesh(t,s),n=new e.CylinderGeometry(.1,.1,.2,8),c=new e.CylinderGeometry(.05,.05,1,8),r=new e.MeshStandardMaterial({color:11184810,roughness:.5,metalness:.7});for(let a=-.5;a<=.5;a+=.5){const l=new e.Mesh(n,r);l.position.set(a,1,.1);const i=new e.Mesh(c,r);i.position.y=.5,l.add(i),this.add(l)}this.add(o)}}class Me extends e.Group{constructor(){super();const t=new e.BoxGeometry(1,.2,.5),s=new e.MeshStandardMaterial({color:4473924,roughness:.6,metalness:.3}),o=new e.Mesh(t,s);o.position.y=.1;const n=new e.BoxGeometry(.2,1,.2),c=new e.Mesh(n,s);c.position.set(0,.6,-.2);const r=new e.CylinderGeometry(.1,.1,.4,8),a=new e.MeshStandardMaterial({color:3355443,roughness:.5,metalness:.6}),l=new e.Mesh(r,a);l.position.set(0,1.1,-.35),l.rotation.x=-Math.PI/4;const i=new e.BoxGeometry(.6,.1,.6),h=new e.MeshStandardMaterial({color:5592405,roughness:.8,metalness:.2}),m=new e.Mesh(i,h);m.position.set(0,.6,0),this.add(o,c,l,m)}}class ye extends e.Group{constructor(){super();const t=new C,s=new e.CylinderGeometry(.2,.3,1.5,8);s.translate(0,.75,0);const o=new e.MeshStandardMaterial({color:6045747,roughness:1,metalness:0,side:e.DoubleSide}),n=new e.MeshStandardMaterial({color:9132587,roughness:.8,metalness:.1}),c=new e.Mesh(t,o),r=new e.Mesh(s,n);r.position.set(.3,1.3,0),r.rotation.z=Math.PI/4,this.add(c,r)}}class ue extends e.Group{constructor(){super();const t=100,s=.05,o=new e.CatmullRomCurve3(Array.from({length:t},(i,h)=>{const m=h*.2;return new e.Vector3(Math.cos(m)*.4,h*s,Math.sin(m)*.4)})),n=new e.TubeGeometry(o,200,.1,8,!1),c=new e.MeshStandardMaterial({color:8965375,transparent:!0,opacity:.3,roughness:.1,metalness:.2,emissive:8965375}),r=new e.Mesh(n,c);this.add(r);function a(){c.emissiveIntensity=.2+Math.sin(Date.now()*.005)*.1}function l(){requestAnimationFrame(l),a()}l()}}class de extends e.Group{constructor(){super();const t=new e.TorusGeometry(.3,.03,8,16),s=new e.MeshStandardMaterial({color:8947848,roughness:.7,metalness:.3}),o=new e.Mesh(t,s);o.rotation.x=Math.PI/2,o.position.y=.4;const n=new e.CylinderGeometry(.02,.02,.4,8),c=new e.MeshStandardMaterial({color:6710886,roughness:.8,metalness:.3}),r=[];for(let a=0;a<3;a++){const l=a/3*Math.PI*2,i=new e.Mesh(n,c);i.position.set(Math.cos(l)*.25,.2,Math.sin(l)*.25),r.push(i)}this.add(o,...r)}}class fe extends e.Group{constructor(){super();const t=new e.CylinderGeometry(.5,.6,.3,16),s=new e.MeshStandardMaterial({color:3355443,roughness:.6,metalness:.5}),o=new e.Mesh(t,s);o.position.y=.15;const n=new e.CylinderGeometry(.15,.15,2,12,1,!0),c=new e.MeshStandardMaterial({color:16737792,roughness:.5,metalness:.8,side:e.DoubleSide}),r=new e.Mesh(n,c);r.position.y=1.3;const a=new e.SphereGeometry(.3,16,16),l=new e.Mesh(a,c);l.position.y=2.4,this.add(o,r,l);const i=[];for(let y=0;y<5;y++){const f=new e.LineBasicMaterial({color:10079487}),d=[new e.Vector3(0,2.4,0),new e.Vector3((Math.random()-.5)*1.5,Math.random()*2.4,(Math.random()-.5)*1.5)],p=new e.BufferGeometry().setFromPoints(d),u=new e.Line(p,f);this.add(u),i.push(u)}function h(){i.forEach(y=>{const 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)];y.geometry.setFromPoints(f)})}function m(){requestAnimationFrame(m),h()}m()}}class pe extends e.Group{constructor(t=.2,s=.2,o=3,n=32){super();const c=new k(t,s,o,n),r=new e.MeshPhysicalMaterial({color:8965375,transparent:!0,opacity:.4,roughness:.1,metalness:.1,reflectivity:.8,transmission:.9,side:e.DoubleSide}),a=new e.Mesh(c,r);this.add(a)}}class Ge extends e.Group{constructor(t=3,s=[65450,16711850,11141375]){super();const o=new e.BoxGeometry(3,.2,1),n=new e.MeshStandardMaterial({color:9127187,roughness:.7,metalness:.3}),c=new e.Mesh(o,n);c.position.y=.5;const r=new k(.1,.1,1,16),a=new e.MeshStandardMaterial({color:11184810,transparent:!0,opacity:.4,roughness:.1,metalness:.5,side:e.DoubleSide});for(let l=0;l<t;l++){const i=new e.Mesh(r,a),h=(l-(t-1)/2)*.8;i.position.set(h,1,0);const m=new k(.099,.099,.5,16,!1),y=s[l%s.length],f=new e.MeshStandardMaterial({color:y,emissive:y,emissiveIntensity:.5,transparent:!0,opacity:.6}),d=new e.Mesh(m,f);d.position.set(0,-.25,0),i.add(d),c.add(i)}this.add(c)}}class we extends e.Mesh{constructor(){super();const t=new V,s=new e.MeshPhysicalMaterial({color:5597999,roughness:.1,transmission:.9,thickness:.2,metalness:0,clearcoat:1,clearcoatRoughness:.1});this.geometry=t,this.material=s}}class F extends e.Shape{constructor(t=5,s=.5,o=1){super();const n=Math.PI*2/t,c=n/2,r=n/4;this.moveTo(Math.cos(0)*o,-Math.sin(0)*o);for(let a=1;a<=t;++a){let l=Math.cos(n*a-r*3)*(s/Math.cos(r)),i=-Math.sin(n*a-r*3)*(s/Math.cos(r)),h=Math.cos(n*a-c)*s,m=-Math.sin(n*a-c)*s;this.quadraticCurveTo(l,i,h,m),l=Math.cos(n*a-r)*(s/Math.cos(r)),i=-Math.sin(n*a-r)*(s/Math.cos(r)),h=Math.cos(n*a)*o,m=-Math.sin(n*a)*o,this.quadraticCurveTo(l,i,h,m)}this.closePath()}}class xe extends e.Mesh{constructor(t=5,s=.5,o=1,n=.25){super();const c=new F(t,s,o),r=new e.ExtrudeGeometry(c,{depth:n,bevelEnabled:n>0,bevelThickness:0,bevelSize:0}),a=new e.MeshStandardMaterial({color:2200782});r.center(),this.geometry=r,this.material=a}}class L extends e.Shape{constructor(t=5,s=.5,o=1,n=5,c=.25){super();const r=Math.PI*2/t,a=r/4;this.moveTo(Math.cos(0)*o,-Math.sin(0)*o);for(let l=1;l<=t;++l)this.lineTo(Math.cos(r*l-a*3)*s,-Math.sin(r*l-a*3)*s),this.lineTo(Math.cos(r*l-a*2)*s,-Math.sin(r*l-a*2)*s),this.lineTo(Math.cos(r*l-a)*o,-Math.sin(r*l-a)*o),this.lineTo(Math.cos(r*l)*o,-Math.sin(r*l)*o);if(this.closePath(),c>0&&n>2){const l=new e.Path,i=Math.PI*2/n;l.moveTo(Math.cos(0)*c,-Math.sin(0)*c);for(let h=1;h<n;++h)l.lineTo(Math.cos(i*h)*c,-Math.sin(i*h)*c);l.lineTo(Math.cos(0)*c,-Math.sin(0)*c),this.holes.push(l)}}}class Se extends e.Mesh{constructor(t=5,s=.5,o=1,n=5,c=.25,r=.25){super();const a=new L(t,s,o,n,c),l=new e.ExtrudeGeometry(a,{depth:r,bevelEnabled:r>0,bevelThickness:0,bevelSize:0}),i=new e.MeshStandardMaterial({color:2200782});l.center(),this.geometry=l,this.material=i}}class q extends e.Shape{constructor(t=5,s=.5,o=1){super();const n=Math.PI*2/t,c=n/2;this.moveTo(Math.cos(0)*o,Math.sin(0)*o);for(let r=1;r<=t;++r)this.lineTo(Math.cos(n*r-c)*s,Math.sin(n*r-c)*s),this.lineTo(Math.cos(n*r)*o,Math.sin(n*r)*o);this.closePath()}}class be extends e.Mesh{constructor(t=5,s=.5,o=1,n=.25){super();const c=new q(t,s,o),r=new e.ExtrudeGeometry(c,{depth:n,bevelEnabled:n>0,bevelThickness:0,bevelSize:0}),a=new e.MeshStandardMaterial({color:2200782});r.center(),this.geometry=r,this.material=a}}const ve={uniforms:{tDiffuse:{value:null},opacity:{value:1}},vertexShader:`
39
+ varying vec2 vUv;
40
+ void main() {
41
+ vUv = uv;
42
+ gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
43
+ }
44
+ `,fragmentShader:`
45
+ uniform float opacity;
46
+ uniform sampler2D tDiffuse;
47
+ varying vec2 vUv;
48
+ void main() {
49
+ vec4 texel = texture2D(tDiffuse, vUv);
50
+ gl_FragColor = opacity * texel;
51
+ }
52
+ `},ge=M=>{const t=new Uint8Array(4*M*M);for(let o=0;o<M*M;o++){const n=o*4,c=(o%M^Math.floor(o/M))&1?255:0;t[n]=c,t[n+1]=c,t[n+2]=c,t[n+3]=255}const s=new e.DataTexture(t,M,M,e.RGBAFormat,e.UnsignedByteType);return s.wrapS=e.RepeatWrapping,s.wrapT=e.RepeatWrapping,s.minFilter=e.NearestFilter,s.needsUpdate=!0,s};exports.Beaker=re;exports.BeakerGeometry=T;exports.BifurcatedStaircaseGeometry=U;exports.BoneGeometry=D;exports.Book=ae;exports.Bottle=ce;exports.Bubbling=N;exports.BunsenBurner=ie;exports.Burst=xe;exports.BurstShape=F;exports.Candle=te;exports.CrossHeadstoneGeometry=Z;exports.Desk=ee;exports.DioramaGeometry=_;exports.ElectricPanel=le;exports.FenceColumn=K;exports.Flask=he;exports.Gear=Se;exports.GearShape=L;exports.LShapedStaircaseGeometry=j;exports.Lantern=oe;exports.LeverPanel=me;exports.Mausoleum=W;exports.Microscope=Me;exports.Moon=R;exports.MortarAndPestle=ye;exports.MortarGeometry=C;exports.MossyRocks=se;exports.ObeliskHeadstoneGeometry=X;exports.Rocks=ne;exports.RoundedHeadstoneGeometry=H;exports.SimpleLeafGeometry=$;exports.SpiralStaircaseGeometry=O;exports.SpiralTube=ue;exports.SquareHeadstoneGeometry=J;exports.StaircaseGeometry=Y;exports.Stand=de;exports.Star=be;exports.StarShape=q;exports.TeslaCoil=fe;exports.TestTube=pe;exports.TestTubeGeometry=k;exports.TestTubeRack=Ge;exports.WineBottle=we;exports.WineBottleGeometry=V;exports.WroughtIronBarGeometry=Q;exports.checkerboardTexture=ge;exports.fadeShader=ve;
39
53
  //# sourceMappingURL=index.cjs.js.map