@needle-tools/engine 4.12.0-next.c6c0281 → 4.12.0-next.da19dd0

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.
Files changed (87) hide show
  1. package/dist/generateMeshBVH.worker-iyfPIK6R.js +21 -0
  2. package/dist/needle-engine.bundle-BoOkD4mG.umd.cjs +1647 -0
  3. package/dist/{needle-engine.bundle-ThW_g39D.min.js → needle-engine.bundle-DDdH38o3.min.js} +151 -150
  4. package/dist/{needle-engine.bundle-BVdPECIB.js → needle-engine.bundle-DeqWDtMx.js} +8997 -8592
  5. package/dist/needle-engine.d.ts +27 -18
  6. package/dist/needle-engine.js +46 -46
  7. package/dist/needle-engine.min.js +1 -1
  8. package/dist/needle-engine.umd.cjs +1 -1
  9. package/dist/{vendor-C_oHRUjX.js → vendor-DMZcbVO1.js} +2644 -2487
  10. package/dist/{vendor-BiJQtqow.min.js → vendor-sURMCFSI.min.js} +41 -41
  11. package/dist/{vendor-DN-NsXVB.umd.cjs → vendor-tyBvnMF-.umd.cjs} +36 -36
  12. package/lib/engine/debug/debug_console.js +403 -1
  13. package/lib/engine/debug/debug_console.js.map +1 -1
  14. package/lib/engine/engine_components.js +3 -3
  15. package/lib/engine/engine_components.js.map +1 -1
  16. package/lib/engine/engine_context.js +2 -0
  17. package/lib/engine/engine_context.js.map +1 -1
  18. package/lib/engine/engine_input.d.ts +5 -0
  19. package/lib/engine/engine_input.js +6 -0
  20. package/lib/engine/engine_input.js.map +1 -1
  21. package/lib/engine/engine_license.d.ts +18 -0
  22. package/lib/engine/engine_license.js +155 -9
  23. package/lib/engine/engine_license.js.map +1 -1
  24. package/lib/engine/engine_networking.js +5 -5
  25. package/lib/engine/engine_networking.js.map +1 -1
  26. package/lib/engine/engine_physics.js.map +1 -1
  27. package/lib/engine/engine_serialization_builtin_serializer.js +1 -1
  28. package/lib/engine/engine_serialization_builtin_serializer.js.map +1 -1
  29. package/lib/engine/engine_utils.d.ts +4 -1
  30. package/lib/engine/engine_utils.js +28 -4
  31. package/lib/engine/engine_utils.js.map +1 -1
  32. package/lib/engine/webcomponents/WebXRButtons.js +13 -5
  33. package/lib/engine/webcomponents/WebXRButtons.js.map +1 -1
  34. package/lib/engine/webcomponents/needle menu/needle-menu.d.ts +2 -0
  35. package/lib/engine/webcomponents/needle menu/needle-menu.js +33 -1
  36. package/lib/engine/webcomponents/needle menu/needle-menu.js.map +1 -1
  37. package/lib/engine/webcomponents/needle-engine.ar-overlay.js +4 -0
  38. package/lib/engine/webcomponents/needle-engine.ar-overlay.js.map +1 -1
  39. package/lib/engine/xr/NeedleXRSession.d.ts +1 -1
  40. package/lib/engine/xr/NeedleXRSession.js +106 -22
  41. package/lib/engine/xr/NeedleXRSession.js.map +1 -1
  42. package/lib/engine/xr/TempXRContext.js +12 -2
  43. package/lib/engine/xr/TempXRContext.js.map +1 -1
  44. package/lib/engine/xr/usdz.js +6 -2
  45. package/lib/engine/xr/usdz.js.map +1 -1
  46. package/lib/engine-components/Camera.js +4 -1
  47. package/lib/engine-components/Camera.js.map +1 -1
  48. package/lib/engine-components/Component.d.ts +2 -1
  49. package/lib/engine-components/Component.js +3 -2
  50. package/lib/engine-components/Component.js.map +1 -1
  51. package/lib/engine-components/DragControls.js +1 -1
  52. package/lib/engine-components/DragControls.js.map +1 -1
  53. package/lib/engine-components/SpectatorCamera.js +15 -7
  54. package/lib/engine-components/SpectatorCamera.js.map +1 -1
  55. package/lib/engine-components/api.d.ts +1 -1
  56. package/lib/engine-components/api.js +1 -1
  57. package/lib/engine-components/api.js.map +1 -1
  58. package/lib/engine-components/webxr/Avatar.js +2 -0
  59. package/lib/engine-components/webxr/Avatar.js.map +1 -1
  60. package/lib/engine-components/webxr/WebXR.js +18 -12
  61. package/lib/engine-components/webxr/WebXR.js.map +1 -1
  62. package/package.json +3 -3
  63. package/plugins/vite/poster-client.js +8 -1
  64. package/src/engine/debug/debug_console.ts +449 -1
  65. package/src/engine/engine_components.ts +4 -4
  66. package/src/engine/engine_context.ts +2 -0
  67. package/src/engine/engine_input.ts +7 -0
  68. package/src/engine/engine_license.ts +171 -9
  69. package/src/engine/engine_networking.ts +5 -5
  70. package/src/engine/engine_physics.ts +3 -3
  71. package/src/engine/engine_serialization_builtin_serializer.ts +1 -1
  72. package/src/engine/engine_utils.ts +23 -4
  73. package/src/engine/webcomponents/WebXRButtons.ts +15 -5
  74. package/src/engine/webcomponents/needle menu/needle-menu.ts +35 -2
  75. package/src/engine/webcomponents/needle-engine.ar-overlay.ts +6 -0
  76. package/src/engine/xr/NeedleXRSession.ts +120 -24
  77. package/src/engine/xr/TempXRContext.ts +12 -2
  78. package/src/engine/xr/usdz.ts +6 -1
  79. package/src/engine-components/Camera.ts +4 -1
  80. package/src/engine-components/Component.ts +5 -4
  81. package/src/engine-components/DragControls.ts +1 -1
  82. package/src/engine-components/SpectatorCamera.ts +21 -10
  83. package/src/engine-components/api.ts +1 -1
  84. package/src/engine-components/webxr/Avatar.ts +4 -0
  85. package/src/engine-components/webxr/WebXR.ts +19 -11
  86. package/dist/generateMeshBVH.worker-BvGEI0r7.js +0 -21
  87. package/dist/needle-engine.bundle-Dk2U2sIu.umd.cjs +0 -1646
@@ -0,0 +1,21 @@
1
+ (function(){"use strict";const Wt="srgb",Bs="srgb-linear",Ro="display-p3",Xi="display-p3-linear",zn="linear",Yi="srgb",Zi="rec709";class ss{addEventListener(t,e){this._listeners===void 0&&(this._listeners={});const s=this._listeners;s[t]===void 0&&(s[t]=[]),s[t].indexOf(e)===-1&&s[t].push(e)}hasEventListener(t,e){if(this._listeners===void 0)return!1;const s=this._listeners;return s[t]!==void 0&&s[t].indexOf(e)!==-1}removeEventListener(t,e){if(this._listeners===void 0)return;const n=this._listeners[t];if(n!==void 0){const i=n.indexOf(e);i!==-1&&n.splice(i,1)}}dispatchEvent(t){if(this._listeners===void 0)return;const s=this._listeners[t.type];if(s!==void 0){t.target=this;const n=s.slice(0);for(let i=0,o=n.length;i<o;i++)n[i].call(this,t);t.target=null}}}const ut=["00","01","02","03","04","05","06","07","08","09","0a","0b","0c","0d","0e","0f","10","11","12","13","14","15","16","17","18","19","1a","1b","1c","1d","1e","1f","20","21","22","23","24","25","26","27","28","29","2a","2b","2c","2d","2e","2f","30","31","32","33","34","35","36","37","38","39","3a","3b","3c","3d","3e","3f","40","41","42","43","44","45","46","47","48","49","4a","4b","4c","4d","4e","4f","50","51","52","53","54","55","56","57","58","59","5a","5b","5c","5d","5e","5f","60","61","62","63","64","65","66","67","68","69","6a","6b","6c","6d","6e","6f","70","71","72","73","74","75","76","77","78","79","7a","7b","7c","7d","7e","7f","80","81","82","83","84","85","86","87","88","89","8a","8b","8c","8d","8e","8f","90","91","92","93","94","95","96","97","98","99","9a","9b","9c","9d","9e","9f","a0","a1","a2","a3","a4","a5","a6","a7","a8","a9","aa","ab","ac","ad","ae","af","b0","b1","b2","b3","b4","b5","b6","b7","b8","b9","ba","bb","bc","bd","be","bf","c0","c1","c2","c3","c4","c5","c6","c7","c8","c9","ca","cb","cc","cd","ce","cf","d0","d1","d2","d3","d4","d5","d6","d7","d8","d9","da","db","dc","dd","de","df","e0","e1","e2","e3","e4","e5","e6","e7","e8","e9","ea","eb","ec","ed","ee","ef","f0","f1","f2","f3","f4","f5","f6","f7","f8","f9","fa","fb","fc","fd","fe","ff"];let Ji=1234567;const Qi=Math.PI/180,ji=180/Math.PI;function se(){const r=Math.random()*4294967295|0,t=Math.random()*4294967295|0,e=Math.random()*4294967295|0,s=Math.random()*4294967295|0;return(ut[r&255]+ut[r>>8&255]+ut[r>>16&255]+ut[r>>24&255]+"-"+ut[t&255]+ut[t>>8&255]+"-"+ut[t>>16&15|64]+ut[t>>24&255]+"-"+ut[e&63|128]+ut[e>>8&255]+"-"+ut[e>>16&255]+ut[e>>24&255]+ut[s&255]+ut[s>>8&255]+ut[s>>16&255]+ut[s>>24&255]).toLowerCase()}function lt(r,t,e){return Math.max(t,Math.min(e,r))}function bn(r,t){return(r%t+t)%t}function Io(r,t,e,s,n){return s+(r-t)*(n-s)/(e-t)}function Po(r,t,e){return r!==t?(e-r)/(t-r):0}function ns(r,t,e){return(1-e)*r+e*t}function vo(r,t,e,s){return ns(r,t,1-Math.exp(-e*s))}function Lo(r,t=1){return t-Math.abs(bn(r,t*2)-t)}function Oo(r,t,e){return r<=t?0:r>=e?1:(r=(r-t)/(e-t),r*r*(3-2*r))}function Do(r,t,e){return r<=t?0:r>=e?1:(r=(r-t)/(e-t),r*r*r*(r*(r*6-15)+10))}function Vo(r,t){return r+Math.floor(Math.random()*(t-r+1))}function Uo(r,t){return r+Math.random()*(t-r)}function ko(r){return r*(.5-Math.random())}function qo(r){r!==void 0&&(Ji=r);let t=Ji+=1831565813;return t=Math.imul(t^t>>>15,t|1),t^=t+Math.imul(t^t>>>7,t|61),((t^t>>>14)>>>0)/4294967296}function Ho(r){return r*Qi}function Wo(r){return r*ji}function $o(r){return(r&r-1)===0&&r!==0}function Go(r){return Math.pow(2,Math.ceil(Math.log(r)/Math.LN2))}function Xo(r){return Math.pow(2,Math.floor(Math.log(r)/Math.LN2))}function Yo(r,t,e,s,n){const i=Math.cos,o=Math.sin,a=i(e/2),c=o(e/2),u=i((t+s)/2),h=o((t+s)/2),l=i((t-s)/2),d=o((t-s)/2),f=i((s-t)/2),p=o((s-t)/2);switch(n){case"XYX":r.set(a*h,c*l,c*d,a*u);break;case"YZY":r.set(c*d,a*h,c*l,a*u);break;case"ZXZ":r.set(c*l,c*d,a*h,a*u);break;case"XZX":r.set(a*h,c*p,c*f,a*u);break;case"YXY":r.set(c*f,a*h,c*p,a*u);break;case"ZYZ":r.set(c*p,c*f,a*h,a*u);break;default:console.warn("THREE.MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: "+n)}}function Ft(r,t){switch(t.constructor){case Float32Array:return r;case Uint32Array:return r/4294967295;case Uint16Array:return r/65535;case Uint8Array:return r/255;case Int32Array:return Math.max(r/2147483647,-1);case Int16Array:return Math.max(r/32767,-1);case Int8Array:return Math.max(r/127,-1);default:throw new Error("Invalid component type.")}}function W(r,t){switch(t.constructor){case Float32Array:return r;case Uint32Array:return Math.round(r*4294967295);case Uint16Array:return Math.round(r*65535);case Uint8Array:return Math.round(r*255);case Int32Array:return Math.round(r*2147483647);case Int16Array:return Math.round(r*32767);case Int8Array:return Math.round(r*127);default:throw new Error("Invalid component type.")}}const Zo={DEG2RAD:Qi,RAD2DEG:ji,generateUUID:se,clamp:lt,euclideanModulo:bn,mapLinear:Io,inverseLerp:Po,lerp:ns,damp:vo,pingpong:Lo,smoothstep:Oo,smootherstep:Do,randInt:Vo,randFloat:Uo,randFloatSpread:ko,seededRandom:qo,degToRad:Ho,radToDeg:Wo,isPowerOfTwo:$o,ceilPowerOfTwo:Go,floorPowerOfTwo:Xo,setQuaternionFromProperEuler:Yo,normalize:W,denormalize:Ft};class Z{constructor(t=0,e=0){Z.prototype.isVector2=!0,this.x=t,this.y=e}get width(){return this.x}set width(t){this.x=t}get height(){return this.y}set height(t){this.y=t}set(t,e){return this.x=t,this.y=e,this}setScalar(t){return this.x=t,this.y=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y)}copy(t){return this.x=t.x,this.y=t.y,this}add(t){return this.x+=t.x,this.y+=t.y,this}addScalar(t){return this.x+=t,this.y+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this}subScalar(t){return this.x-=t,this.y-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this}multiply(t){return this.x*=t.x,this.y*=t.y,this}multiplyScalar(t){return this.x*=t,this.y*=t,this}divide(t){return this.x/=t.x,this.y/=t.y,this}divideScalar(t){return this.multiplyScalar(1/t)}applyMatrix3(t){const e=this.x,s=this.y,n=t.elements;return this.x=n[0]*e+n[3]*s+n[6],this.y=n[1]*e+n[4]*s+n[7],this}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this}clamp(t,e){return this.x=Math.max(t.x,Math.min(e.x,this.x)),this.y=Math.max(t.y,Math.min(e.y,this.y)),this}clampScalar(t,e){return this.x=Math.max(t,Math.min(e,this.x)),this.y=Math.max(t,Math.min(e,this.y)),this}clampLength(t,e){const s=this.length();return this.divideScalar(s||1).multiplyScalar(Math.max(t,Math.min(e,s)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(t){return this.x*t.x+this.y*t.y}cross(t){return this.x*t.y-this.y*t.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}angleTo(t){const e=Math.sqrt(this.lengthSq()*t.lengthSq());if(e===0)return Math.PI/2;const s=this.dot(t)/e;return Math.acos(lt(s,-1,1))}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,s=this.y-t.y;return e*e+s*s}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this}lerpVectors(t,e,s){return this.x=t.x+(e.x-t.x)*s,this.y=t.y+(e.y-t.y)*s,this}equals(t){return t.x===this.x&&t.y===this.y}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this}rotateAround(t,e){const s=Math.cos(e),n=Math.sin(e),i=this.x-t.x,o=this.y-t.y;return this.x=i*s-o*n+t.x,this.y=i*n+o*s+t.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class Bt{constructor(t,e,s,n,i,o,a,c,u){Bt.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1],t!==void 0&&this.set(t,e,s,n,i,o,a,c,u)}set(t,e,s,n,i,o,a,c,u){const h=this.elements;return h[0]=t,h[1]=n,h[2]=a,h[3]=e,h[4]=i,h[5]=c,h[6]=s,h[7]=o,h[8]=u,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(t){const e=this.elements,s=t.elements;return e[0]=s[0],e[1]=s[1],e[2]=s[2],e[3]=s[3],e[4]=s[4],e[5]=s[5],e[6]=s[6],e[7]=s[7],e[8]=s[8],this}extractBasis(t,e,s){return t.setFromMatrix3Column(this,0),e.setFromMatrix3Column(this,1),s.setFromMatrix3Column(this,2),this}setFromMatrix4(t){const e=t.elements;return this.set(e[0],e[4],e[8],e[1],e[5],e[9],e[2],e[6],e[10]),this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const s=t.elements,n=e.elements,i=this.elements,o=s[0],a=s[3],c=s[6],u=s[1],h=s[4],l=s[7],d=s[2],f=s[5],p=s[8],m=n[0],x=n[3],g=n[6],y=n[1],N=n[4],w=n[7],T=n[2],_=n[5],S=n[8];return i[0]=o*m+a*y+c*T,i[3]=o*x+a*N+c*_,i[6]=o*g+a*w+c*S,i[1]=u*m+h*y+l*T,i[4]=u*x+h*N+l*_,i[7]=u*g+h*w+l*S,i[2]=d*m+f*y+p*T,i[5]=d*x+f*N+p*_,i[8]=d*g+f*w+p*S,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[3]*=t,e[6]*=t,e[1]*=t,e[4]*=t,e[7]*=t,e[2]*=t,e[5]*=t,e[8]*=t,this}determinant(){const t=this.elements,e=t[0],s=t[1],n=t[2],i=t[3],o=t[4],a=t[5],c=t[6],u=t[7],h=t[8];return e*o*h-e*a*u-s*i*h+s*a*c+n*i*u-n*o*c}invert(){const t=this.elements,e=t[0],s=t[1],n=t[2],i=t[3],o=t[4],a=t[5],c=t[6],u=t[7],h=t[8],l=h*o-a*u,d=a*c-h*i,f=u*i-o*c,p=e*l+s*d+n*f;if(p===0)return this.set(0,0,0,0,0,0,0,0,0);const m=1/p;return t[0]=l*m,t[1]=(n*u-h*s)*m,t[2]=(a*s-n*o)*m,t[3]=d*m,t[4]=(h*e-n*c)*m,t[5]=(n*i-a*e)*m,t[6]=f*m,t[7]=(s*c-u*e)*m,t[8]=(o*e-s*i)*m,this}transpose(){let t;const e=this.elements;return t=e[1],e[1]=e[3],e[3]=t,t=e[2],e[2]=e[6],e[6]=t,t=e[5],e[5]=e[7],e[7]=t,this}getNormalMatrix(t){return this.setFromMatrix4(t).invert().transpose()}transposeIntoArray(t){const e=this.elements;return t[0]=e[0],t[1]=e[3],t[2]=e[6],t[3]=e[1],t[4]=e[4],t[5]=e[7],t[6]=e[2],t[7]=e[5],t[8]=e[8],this}setUvTransform(t,e,s,n,i,o,a){const c=Math.cos(i),u=Math.sin(i);return this.set(s*c,s*u,-s*(c*o+u*a)+o+t,-n*u,n*c,-n*(-u*o+c*a)+a+e,0,0,1),this}scale(t,e){return this.premultiply(En.makeScale(t,e)),this}rotate(t){return this.premultiply(En.makeRotation(-t)),this}translate(t,e){return this.premultiply(En.makeTranslation(t,e)),this}makeTranslation(t,e){return t.isVector2?this.set(1,0,t.x,0,1,t.y,0,0,1):this.set(1,0,t,0,1,e,0,0,1),this}makeRotation(t){const e=Math.cos(t),s=Math.sin(t);return this.set(e,-s,0,s,e,0,0,0,1),this}makeScale(t,e){return this.set(t,0,0,0,e,0,0,0,1),this}equals(t){const e=this.elements,s=t.elements;for(let n=0;n<9;n++)if(e[n]!==s[n])return!1;return!0}fromArray(t,e=0){for(let s=0;s<9;s++)this.elements[s]=t[s+e];return this}toArray(t=[],e=0){const s=this.elements;return t[e]=s[0],t[e+1]=s[1],t[e+2]=s[2],t[e+3]=s[3],t[e+4]=s[4],t[e+5]=s[5],t[e+6]=s[6],t[e+7]=s[7],t[e+8]=s[8],t}clone(){return new this.constructor().fromArray(this.elements)}}const En=new Bt;function Jo(r){for(let t=r.length-1;t>=0;--t)if(r[t]>=65535)return!0;return!1}function Ki(r){return document.createElementNS("http://www.w3.org/1999/xhtml",r)}const tr=new Bt().set(.8224621,.177538,0,.0331941,.9668058,0,.0170827,.0723974,.9105199),er=new Bt().set(1.2249401,-.2249404,0,-.0420569,1.0420571,0,-.0196376,-.0786361,1.0982735),is={[Bs]:{transfer:zn,primaries:Zi,luminanceCoefficients:[.2126,.7152,.0722],toReference:r=>r,fromReference:r=>r},[Wt]:{transfer:Yi,primaries:Zi,luminanceCoefficients:[.2126,.7152,.0722],toReference:r=>r.convertSRGBToLinear(),fromReference:r=>r.convertLinearToSRGB()},[Xi]:{transfer:zn,primaries:"p3",luminanceCoefficients:[.2289,.6917,.0793],toReference:r=>r.applyMatrix3(er),fromReference:r=>r.applyMatrix3(tr)},[Ro]:{transfer:Yi,primaries:"p3",luminanceCoefficients:[.2289,.6917,.0793],toReference:r=>r.convertSRGBToLinear().applyMatrix3(er),fromReference:r=>r.applyMatrix3(tr).convertLinearToSRGB()}},Qo=new Set([Bs,Xi]),wt={enabled:!0,_workingColorSpace:Bs,get workingColorSpace(){return this._workingColorSpace},set workingColorSpace(r){if(!Qo.has(r))throw new Error(`Unsupported working color space, "${r}".`);this._workingColorSpace=r},convert:function(r,t,e){if(this.enabled===!1||t===e||!t||!e)return r;const s=is[t].toReference,n=is[e].fromReference;return n(s(r))},fromWorkingColorSpace:function(r,t){return this.convert(r,this._workingColorSpace,t)},toWorkingColorSpace:function(r,t){return this.convert(r,t,this._workingColorSpace)},getPrimaries:function(r){return is[r].primaries},getTransfer:function(r){return r===""?zn:is[r].transfer},getLuminanceCoefficients:function(r,t=this._workingColorSpace){return r.fromArray(is[t].luminanceCoefficients)}};function ze(r){return r<.04045?r*.0773993808:Math.pow(r*.9478672986+.0521327014,2.4)}function Cn(r){return r<.0031308?r*12.92:1.055*Math.pow(r,.41666)-.055}let be;class jo{static getDataURL(t){if(/^data:/i.test(t.src)||typeof HTMLCanvasElement>"u")return t.src;let e;if(t instanceof HTMLCanvasElement)e=t;else{be===void 0&&(be=Ki("canvas")),be.width=t.width,be.height=t.height;const s=be.getContext("2d");t instanceof ImageData?s.putImageData(t,0,0):s.drawImage(t,0,0,t.width,t.height),e=be}return e.width>2048||e.height>2048?(console.warn("THREE.ImageUtils.getDataURL: Image converted to jpg for performance reasons",t),e.toDataURL("image/jpeg",.6)):e.toDataURL("image/png")}static sRGBToLinear(t){if(typeof HTMLImageElement<"u"&&t instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&t instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&t instanceof ImageBitmap){const e=Ki("canvas");e.width=t.width,e.height=t.height;const s=e.getContext("2d");s.drawImage(t,0,0,t.width,t.height);const n=s.getImageData(0,0,t.width,t.height),i=n.data;for(let o=0;o<i.length;o++)i[o]=ze(i[o]/255)*255;return s.putImageData(n,0,0),e}else if(t.data){const e=t.data.slice(0);for(let s=0;s<e.length;s++)e instanceof Uint8Array||e instanceof Uint8ClampedArray?e[s]=Math.floor(ze(e[s]/255)*255):e[s]=ze(e[s]);return{data:e,width:t.width,height:t.height}}else return console.warn("THREE.ImageUtils.sRGBToLinear(): Unsupported image type. No color space conversion applied."),t}}let Ko=0;class sr{constructor(t=null){this.isSource=!0,Object.defineProperty(this,"id",{value:Ko++}),this.uuid=se(),this.data=t,this.dataReady=!0,this.version=0}set needsUpdate(t){t===!0&&this.version++}toJSON(t){const e=t===void 0||typeof t=="string";if(!e&&t.images[this.uuid]!==void 0)return t.images[this.uuid];const s={uuid:this.uuid,url:""},n=this.data;if(n!==null){let i;if(Array.isArray(n)){i=[];for(let o=0,a=n.length;o<a;o++)n[o].isDataTexture?i.push(Fn(n[o].image)):i.push(Fn(n[o]))}else i=Fn(n);s.url=i}return e||(t.images[this.uuid]=s),s}}function Fn(r){return typeof HTMLImageElement<"u"&&r instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&r instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&r instanceof ImageBitmap?jo.getDataURL(r):r.data?{data:Array.from(r.data),width:r.width,height:r.height,type:r.data.constructor.name}:(console.warn("THREE.Texture: Unable to serialize Texture."),{})}let ta=0;class Ut extends ss{constructor(t=Ut.DEFAULT_IMAGE,e=Ut.DEFAULT_MAPPING,s=1001,n=1001,i=1006,o=1008,a=1023,c=1009,u=Ut.DEFAULT_ANISOTROPY,h=""){super(),this.isTexture=!0,Object.defineProperty(this,"id",{value:ta++}),this.uuid=se(),this.name="",this.source=new sr(t),this.mipmaps=[],this.mapping=e,this.channel=0,this.wrapS=s,this.wrapT=n,this.magFilter=i,this.minFilter=o,this.anisotropy=u,this.format=a,this.internalFormat=null,this.type=c,this.offset=new Z(0,0),this.repeat=new Z(1,1),this.center=new Z(0,0),this.rotation=0,this.matrixAutoUpdate=!0,this.matrix=new Bt,this.generateMipmaps=!0,this.premultiplyAlpha=!1,this.flipY=!0,this.unpackAlignment=4,this.colorSpace=h,this.userData={},this.version=0,this.onUpdate=null,this.isRenderTargetTexture=!1,this.pmremVersion=0}get image(){return this.source.data}set image(t=null){this.source.data=t}updateMatrix(){this.matrix.setUvTransform(this.offset.x,this.offset.y,this.repeat.x,this.repeat.y,this.rotation,this.center.x,this.center.y)}clone(){return new this.constructor().copy(this)}copy(t){return this.name=t.name,this.source=t.source,this.mipmaps=t.mipmaps.slice(0),this.mapping=t.mapping,this.channel=t.channel,this.wrapS=t.wrapS,this.wrapT=t.wrapT,this.magFilter=t.magFilter,this.minFilter=t.minFilter,this.anisotropy=t.anisotropy,this.format=t.format,this.internalFormat=t.internalFormat,this.type=t.type,this.offset.copy(t.offset),this.repeat.copy(t.repeat),this.center.copy(t.center),this.rotation=t.rotation,this.matrixAutoUpdate=t.matrixAutoUpdate,this.matrix.copy(t.matrix),this.generateMipmaps=t.generateMipmaps,this.premultiplyAlpha=t.premultiplyAlpha,this.flipY=t.flipY,this.unpackAlignment=t.unpackAlignment,this.colorSpace=t.colorSpace,this.userData=JSON.parse(JSON.stringify(t.userData)),this.needsUpdate=!0,this}toJSON(t){const e=t===void 0||typeof t=="string";if(!e&&t.textures[this.uuid]!==void 0)return t.textures[this.uuid];const s={metadata:{version:4.6,type:"Texture",generator:"Texture.toJSON"},uuid:this.uuid,name:this.name,image:this.source.toJSON(t).uuid,mapping:this.mapping,channel:this.channel,repeat:[this.repeat.x,this.repeat.y],offset:[this.offset.x,this.offset.y],center:[this.center.x,this.center.y],rotation:this.rotation,wrap:[this.wrapS,this.wrapT],format:this.format,internalFormat:this.internalFormat,type:this.type,colorSpace:this.colorSpace,minFilter:this.minFilter,magFilter:this.magFilter,anisotropy:this.anisotropy,flipY:this.flipY,generateMipmaps:this.generateMipmaps,premultiplyAlpha:this.premultiplyAlpha,unpackAlignment:this.unpackAlignment};return Object.keys(this.userData).length>0&&(s.userData=this.userData),e||(t.textures[this.uuid]=s),s}dispose(){this.dispatchEvent({type:"dispose"})}transformUv(t){if(this.mapping!==300)return t;if(t.applyMatrix3(this.matrix),t.x<0||t.x>1)switch(this.wrapS){case 1e3:t.x=t.x-Math.floor(t.x);break;case 1001:t.x=t.x<0?0:1;break;case 1002:Math.abs(Math.floor(t.x)%2)===1?t.x=Math.ceil(t.x)-t.x:t.x=t.x-Math.floor(t.x);break}if(t.y<0||t.y>1)switch(this.wrapT){case 1e3:t.y=t.y-Math.floor(t.y);break;case 1001:t.y=t.y<0?0:1;break;case 1002:Math.abs(Math.floor(t.y)%2)===1?t.y=Math.ceil(t.y)-t.y:t.y=t.y-Math.floor(t.y);break}return this.flipY&&(t.y=1-t.y),t}set needsUpdate(t){t===!0&&(this.version++,this.source.needsUpdate=!0)}set needsPMREMUpdate(t){t===!0&&this.pmremVersion++}}Ut.DEFAULT_IMAGE=null,Ut.DEFAULT_MAPPING=300,Ut.DEFAULT_ANISOTROPY=4;class Rt{constructor(t=0,e=0,s=0,n=1){Rt.prototype.isVector4=!0,this.x=t,this.y=e,this.z=s,this.w=n}get width(){return this.z}set width(t){this.z=t}get height(){return this.w}set height(t){this.w=t}set(t,e,s,n){return this.x=t,this.y=e,this.z=s,this.w=n,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this.w=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setW(t){return this.w=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;case 3:this.w=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this.w=t.w!==void 0?t.w:1,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this.w+=t.w,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this.w+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this.w=t.w+e.w,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this.w+=t.w*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this.w-=t.w,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this.w-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this.w=t.w-e.w,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this.w*=t.w,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this.w*=t,this}applyMatrix4(t){const e=this.x,s=this.y,n=this.z,i=this.w,o=t.elements;return this.x=o[0]*e+o[4]*s+o[8]*n+o[12]*i,this.y=o[1]*e+o[5]*s+o[9]*n+o[13]*i,this.z=o[2]*e+o[6]*s+o[10]*n+o[14]*i,this.w=o[3]*e+o[7]*s+o[11]*n+o[15]*i,this}divideScalar(t){return this.multiplyScalar(1/t)}setAxisAngleFromQuaternion(t){this.w=2*Math.acos(t.w);const e=Math.sqrt(1-t.w*t.w);return e<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=t.x/e,this.y=t.y/e,this.z=t.z/e),this}setAxisAngleFromRotationMatrix(t){let e,s,n,i;const c=t.elements,u=c[0],h=c[4],l=c[8],d=c[1],f=c[5],p=c[9],m=c[2],x=c[6],g=c[10];if(Math.abs(h-d)<.01&&Math.abs(l-m)<.01&&Math.abs(p-x)<.01){if(Math.abs(h+d)<.1&&Math.abs(l+m)<.1&&Math.abs(p+x)<.1&&Math.abs(u+f+g-3)<.1)return this.set(1,0,0,0),this;e=Math.PI;const N=(u+1)/2,w=(f+1)/2,T=(g+1)/2,_=(h+d)/4,S=(l+m)/4,z=(p+x)/4;return N>w&&N>T?N<.01?(s=0,n=.707106781,i=.707106781):(s=Math.sqrt(N),n=_/s,i=S/s):w>T?w<.01?(s=.707106781,n=0,i=.707106781):(n=Math.sqrt(w),s=_/n,i=z/n):T<.01?(s=.707106781,n=.707106781,i=0):(i=Math.sqrt(T),s=S/i,n=z/i),this.set(s,n,i,e),this}let y=Math.sqrt((x-p)*(x-p)+(l-m)*(l-m)+(d-h)*(d-h));return Math.abs(y)<.001&&(y=1),this.x=(x-p)/y,this.y=(l-m)/y,this.z=(d-h)/y,this.w=Math.acos((u+f+g-1)/2),this}setFromMatrixPosition(t){const e=t.elements;return this.x=e[12],this.y=e[13],this.z=e[14],this.w=e[15],this}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this.z=Math.min(this.z,t.z),this.w=Math.min(this.w,t.w),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this.z=Math.max(this.z,t.z),this.w=Math.max(this.w,t.w),this}clamp(t,e){return this.x=Math.max(t.x,Math.min(e.x,this.x)),this.y=Math.max(t.y,Math.min(e.y,this.y)),this.z=Math.max(t.z,Math.min(e.z,this.z)),this.w=Math.max(t.w,Math.min(e.w,this.w)),this}clampScalar(t,e){return this.x=Math.max(t,Math.min(e,this.x)),this.y=Math.max(t,Math.min(e,this.y)),this.z=Math.max(t,Math.min(e,this.z)),this.w=Math.max(t,Math.min(e,this.w)),this}clampLength(t,e){const s=this.length();return this.divideScalar(s||1).multiplyScalar(Math.max(t,Math.min(e,s)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this.w=Math.floor(this.w),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this.w=Math.ceil(this.w),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this.w=Math.round(this.w),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this.w=Math.trunc(this.w),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this.w=-this.w,this}dot(t){return this.x*t.x+this.y*t.y+this.z*t.z+this.w*t.w}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)}normalize(){return this.divideScalar(this.length()||1)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this.w+=(t.w-this.w)*e,this}lerpVectors(t,e,s){return this.x=t.x+(e.x-t.x)*s,this.y=t.y+(e.y-t.y)*s,this.z=t.z+(e.z-t.z)*s,this.w=t.w+(e.w-t.w)*s,this}equals(t){return t.x===this.x&&t.y===this.y&&t.z===this.z&&t.w===this.w}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this.z=t[e+2],this.w=t[e+3],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t[e+2]=this.z,t[e+3]=this.w,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this.z=t.getZ(e),this.w=t.getW(e),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this.w=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z,yield this.w}}class nr extends ss{constructor(t=1,e=1,s={}){super(),this.isRenderTarget=!0,this.width=t,this.height=e,this.depth=1,this.scissor=new Rt(0,0,t,e),this.scissorTest=!1,this.viewport=new Rt(0,0,t,e);const n={width:t,height:e,depth:1};s=Object.assign({generateMipmaps:!1,internalFormat:null,minFilter:1006,depthBuffer:!0,stencilBuffer:!1,resolveDepthBuffer:!0,resolveStencilBuffer:!0,depthTexture:null,samples:0,count:1},s);const i=new Ut(n,s.mapping,s.wrapS,s.wrapT,s.magFilter,s.minFilter,s.format,s.type,s.anisotropy,s.colorSpace);i.flipY=!1,i.generateMipmaps=s.generateMipmaps,i.internalFormat=s.internalFormat,this.textures=[];const o=s.count;for(let a=0;a<o;a++)this.textures[a]=i.clone(),this.textures[a].isRenderTargetTexture=!0;this.depthBuffer=s.depthBuffer,this.stencilBuffer=s.stencilBuffer,this.resolveDepthBuffer=s.resolveDepthBuffer,this.resolveStencilBuffer=s.resolveStencilBuffer,this.depthTexture=s.depthTexture,this.samples=s.samples}get texture(){return this.textures[0]}set texture(t){this.textures[0]=t}setSize(t,e,s=1){if(this.width!==t||this.height!==e||this.depth!==s){this.width=t,this.height=e,this.depth=s;for(let n=0,i=this.textures.length;n<i;n++)this.textures[n].image.width=t,this.textures[n].image.height=e,this.textures[n].image.depth=s;this.dispose()}this.viewport.set(0,0,t,e),this.scissor.set(0,0,t,e)}clone(){return new this.constructor().copy(this)}copy(t){this.width=t.width,this.height=t.height,this.depth=t.depth,this.scissor.copy(t.scissor),this.scissorTest=t.scissorTest,this.viewport.copy(t.viewport),this.textures.length=0;for(let s=0,n=t.textures.length;s<n;s++)this.textures[s]=t.textures[s].clone(),this.textures[s].isRenderTargetTexture=!0;const e=Object.assign({},t.texture.image);return this.texture.source=new sr(e),this.depthBuffer=t.depthBuffer,this.stencilBuffer=t.stencilBuffer,this.resolveDepthBuffer=t.resolveDepthBuffer,this.resolveStencilBuffer=t.resolveStencilBuffer,t.depthTexture!==null&&(this.depthTexture=t.depthTexture.clone()),this.samples=t.samples,this}dispose(){this.dispatchEvent({type:"dispose"})}}class rs{constructor(t=0,e=0,s=0,n=1){this.isQuaternion=!0,this._x=t,this._y=e,this._z=s,this._w=n}static slerpFlat(t,e,s,n,i,o,a){let c=s[n+0],u=s[n+1],h=s[n+2],l=s[n+3];const d=i[o+0],f=i[o+1],p=i[o+2],m=i[o+3];if(a===0){t[e+0]=c,t[e+1]=u,t[e+2]=h,t[e+3]=l;return}if(a===1){t[e+0]=d,t[e+1]=f,t[e+2]=p,t[e+3]=m;return}if(l!==m||c!==d||u!==f||h!==p){let x=1-a;const g=c*d+u*f+h*p+l*m,y=g>=0?1:-1,N=1-g*g;if(N>Number.EPSILON){const T=Math.sqrt(N),_=Math.atan2(T,g*y);x=Math.sin(x*_)/T,a=Math.sin(a*_)/T}const w=a*y;if(c=c*x+d*w,u=u*x+f*w,h=h*x+p*w,l=l*x+m*w,x===1-a){const T=1/Math.sqrt(c*c+u*u+h*h+l*l);c*=T,u*=T,h*=T,l*=T}}t[e]=c,t[e+1]=u,t[e+2]=h,t[e+3]=l}static multiplyQuaternionsFlat(t,e,s,n,i,o){const a=s[n],c=s[n+1],u=s[n+2],h=s[n+3],l=i[o],d=i[o+1],f=i[o+2],p=i[o+3];return t[e]=a*p+h*l+c*f-u*d,t[e+1]=c*p+h*d+u*l-a*f,t[e+2]=u*p+h*f+a*d-c*l,t[e+3]=h*p-a*l-c*d-u*f,t}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get w(){return this._w}set w(t){this._w=t,this._onChangeCallback()}set(t,e,s,n){return this._x=t,this._y=e,this._z=s,this._w=n,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(t){return this._x=t.x,this._y=t.y,this._z=t.z,this._w=t.w,this._onChangeCallback(),this}setFromEuler(t,e=!0){const s=t._x,n=t._y,i=t._z,o=t._order,a=Math.cos,c=Math.sin,u=a(s/2),h=a(n/2),l=a(i/2),d=c(s/2),f=c(n/2),p=c(i/2);switch(o){case"XYZ":this._x=d*h*l+u*f*p,this._y=u*f*l-d*h*p,this._z=u*h*p+d*f*l,this._w=u*h*l-d*f*p;break;case"YXZ":this._x=d*h*l+u*f*p,this._y=u*f*l-d*h*p,this._z=u*h*p-d*f*l,this._w=u*h*l+d*f*p;break;case"ZXY":this._x=d*h*l-u*f*p,this._y=u*f*l+d*h*p,this._z=u*h*p+d*f*l,this._w=u*h*l-d*f*p;break;case"ZYX":this._x=d*h*l-u*f*p,this._y=u*f*l+d*h*p,this._z=u*h*p-d*f*l,this._w=u*h*l+d*f*p;break;case"YZX":this._x=d*h*l+u*f*p,this._y=u*f*l+d*h*p,this._z=u*h*p-d*f*l,this._w=u*h*l-d*f*p;break;case"XZY":this._x=d*h*l-u*f*p,this._y=u*f*l-d*h*p,this._z=u*h*p+d*f*l,this._w=u*h*l+d*f*p;break;default:console.warn("THREE.Quaternion: .setFromEuler() encountered an unknown order: "+o)}return e===!0&&this._onChangeCallback(),this}setFromAxisAngle(t,e){const s=e/2,n=Math.sin(s);return this._x=t.x*n,this._y=t.y*n,this._z=t.z*n,this._w=Math.cos(s),this._onChangeCallback(),this}setFromRotationMatrix(t){const e=t.elements,s=e[0],n=e[4],i=e[8],o=e[1],a=e[5],c=e[9],u=e[2],h=e[6],l=e[10],d=s+a+l;if(d>0){const f=.5/Math.sqrt(d+1);this._w=.25/f,this._x=(h-c)*f,this._y=(i-u)*f,this._z=(o-n)*f}else if(s>a&&s>l){const f=2*Math.sqrt(1+s-a-l);this._w=(h-c)/f,this._x=.25*f,this._y=(n+o)/f,this._z=(i+u)/f}else if(a>l){const f=2*Math.sqrt(1+a-s-l);this._w=(i-u)/f,this._x=(n+o)/f,this._y=.25*f,this._z=(c+h)/f}else{const f=2*Math.sqrt(1+l-s-a);this._w=(o-n)/f,this._x=(i+u)/f,this._y=(c+h)/f,this._z=.25*f}return this._onChangeCallback(),this}setFromUnitVectors(t,e){let s=t.dot(e)+1;return s<Number.EPSILON?(s=0,Math.abs(t.x)>Math.abs(t.z)?(this._x=-t.y,this._y=t.x,this._z=0,this._w=s):(this._x=0,this._y=-t.z,this._z=t.y,this._w=s)):(this._x=t.y*e.z-t.z*e.y,this._y=t.z*e.x-t.x*e.z,this._z=t.x*e.y-t.y*e.x,this._w=s),this.normalize()}angleTo(t){return 2*Math.acos(Math.abs(lt(this.dot(t),-1,1)))}rotateTowards(t,e){const s=this.angleTo(t);if(s===0)return this;const n=Math.min(1,e/s);return this.slerp(t,n),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(t){return this._x*t._x+this._y*t._y+this._z*t._z+this._w*t._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let t=this.length();return t===0?(this._x=0,this._y=0,this._z=0,this._w=1):(t=1/t,this._x=this._x*t,this._y=this._y*t,this._z=this._z*t,this._w=this._w*t),this._onChangeCallback(),this}multiply(t){return this.multiplyQuaternions(this,t)}premultiply(t){return this.multiplyQuaternions(t,this)}multiplyQuaternions(t,e){const s=t._x,n=t._y,i=t._z,o=t._w,a=e._x,c=e._y,u=e._z,h=e._w;return this._x=s*h+o*a+n*u-i*c,this._y=n*h+o*c+i*a-s*u,this._z=i*h+o*u+s*c-n*a,this._w=o*h-s*a-n*c-i*u,this._onChangeCallback(),this}slerp(t,e){if(e===0)return this;if(e===1)return this.copy(t);const s=this._x,n=this._y,i=this._z,o=this._w;let a=o*t._w+s*t._x+n*t._y+i*t._z;if(a<0?(this._w=-t._w,this._x=-t._x,this._y=-t._y,this._z=-t._z,a=-a):this.copy(t),a>=1)return this._w=o,this._x=s,this._y=n,this._z=i,this;const c=1-a*a;if(c<=Number.EPSILON){const f=1-e;return this._w=f*o+e*this._w,this._x=f*s+e*this._x,this._y=f*n+e*this._y,this._z=f*i+e*this._z,this.normalize(),this}const u=Math.sqrt(c),h=Math.atan2(u,a),l=Math.sin((1-e)*h)/u,d=Math.sin(e*h)/u;return this._w=o*l+this._w*d,this._x=s*l+this._x*d,this._y=n*l+this._y*d,this._z=i*l+this._z*d,this._onChangeCallback(),this}slerpQuaternions(t,e,s){return this.copy(t).slerp(e,s)}random(){const t=2*Math.PI*Math.random(),e=2*Math.PI*Math.random(),s=Math.random(),n=Math.sqrt(1-s),i=Math.sqrt(s);return this.set(n*Math.sin(t),n*Math.cos(t),i*Math.sin(e),i*Math.cos(e))}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._w===this._w}fromArray(t,e=0){return this._x=t[e],this._y=t[e+1],this._z=t[e+2],this._w=t[e+3],this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._w,t}fromBufferAttribute(t,e){return this._x=t.getX(e),this._y=t.getY(e),this._z=t.getZ(e),this._w=t.getW(e),this._onChangeCallback(),this}toJSON(){return this.toArray()}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class M{constructor(t=0,e=0,s=0){M.prototype.isVector3=!0,this.x=t,this.y=e,this.z=s}set(t,e,s){return s===void 0&&(s=this.z),this.x=t,this.y=e,this.z=s,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this}multiplyVectors(t,e){return this.x=t.x*e.x,this.y=t.y*e.y,this.z=t.z*e.z,this}applyEuler(t){return this.applyQuaternion(ir.setFromEuler(t))}applyAxisAngle(t,e){return this.applyQuaternion(ir.setFromAxisAngle(t,e))}applyMatrix3(t){const e=this.x,s=this.y,n=this.z,i=t.elements;return this.x=i[0]*e+i[3]*s+i[6]*n,this.y=i[1]*e+i[4]*s+i[7]*n,this.z=i[2]*e+i[5]*s+i[8]*n,this}applyNormalMatrix(t){return this.applyMatrix3(t).normalize()}applyMatrix4(t){const e=this.x,s=this.y,n=this.z,i=t.elements,o=1/(i[3]*e+i[7]*s+i[11]*n+i[15]);return this.x=(i[0]*e+i[4]*s+i[8]*n+i[12])*o,this.y=(i[1]*e+i[5]*s+i[9]*n+i[13])*o,this.z=(i[2]*e+i[6]*s+i[10]*n+i[14])*o,this}applyQuaternion(t){const e=this.x,s=this.y,n=this.z,i=t.x,o=t.y,a=t.z,c=t.w,u=2*(o*n-a*s),h=2*(a*e-i*n),l=2*(i*s-o*e);return this.x=e+c*u+o*l-a*h,this.y=s+c*h+a*u-i*l,this.z=n+c*l+i*h-o*u,this}project(t){return this.applyMatrix4(t.matrixWorldInverse).applyMatrix4(t.projectionMatrix)}unproject(t){return this.applyMatrix4(t.projectionMatrixInverse).applyMatrix4(t.matrixWorld)}transformDirection(t){const e=this.x,s=this.y,n=this.z,i=t.elements;return this.x=i[0]*e+i[4]*s+i[8]*n,this.y=i[1]*e+i[5]*s+i[9]*n,this.z=i[2]*e+i[6]*s+i[10]*n,this.normalize()}divide(t){return this.x/=t.x,this.y/=t.y,this.z/=t.z,this}divideScalar(t){return this.multiplyScalar(1/t)}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this.z=Math.min(this.z,t.z),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this.z=Math.max(this.z,t.z),this}clamp(t,e){return this.x=Math.max(t.x,Math.min(e.x,this.x)),this.y=Math.max(t.y,Math.min(e.y,this.y)),this.z=Math.max(t.z,Math.min(e.z,this.z)),this}clampScalar(t,e){return this.x=Math.max(t,Math.min(e,this.x)),this.y=Math.max(t,Math.min(e,this.y)),this.z=Math.max(t,Math.min(e,this.z)),this}clampLength(t,e){const s=this.length();return this.divideScalar(s||1).multiplyScalar(Math.max(t,Math.min(e,s)))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(t){return this.x*t.x+this.y*t.y+this.z*t.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this}lerpVectors(t,e,s){return this.x=t.x+(e.x-t.x)*s,this.y=t.y+(e.y-t.y)*s,this.z=t.z+(e.z-t.z)*s,this}cross(t){return this.crossVectors(this,t)}crossVectors(t,e){const s=t.x,n=t.y,i=t.z,o=e.x,a=e.y,c=e.z;return this.x=n*c-i*a,this.y=i*o-s*c,this.z=s*a-n*o,this}projectOnVector(t){const e=t.lengthSq();if(e===0)return this.set(0,0,0);const s=t.dot(this)/e;return this.copy(t).multiplyScalar(s)}projectOnPlane(t){return Bn.copy(this).projectOnVector(t),this.sub(Bn)}reflect(t){return this.sub(Bn.copy(t).multiplyScalar(2*this.dot(t)))}angleTo(t){const e=Math.sqrt(this.lengthSq()*t.lengthSq());if(e===0)return Math.PI/2;const s=this.dot(t)/e;return Math.acos(lt(s,-1,1))}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,s=this.y-t.y,n=this.z-t.z;return e*e+s*s+n*n}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)+Math.abs(this.z-t.z)}setFromSpherical(t){return this.setFromSphericalCoords(t.radius,t.phi,t.theta)}setFromSphericalCoords(t,e,s){const n=Math.sin(e)*t;return this.x=n*Math.sin(s),this.y=Math.cos(e)*t,this.z=n*Math.cos(s),this}setFromCylindrical(t){return this.setFromCylindricalCoords(t.radius,t.theta,t.y)}setFromCylindricalCoords(t,e,s){return this.x=t*Math.sin(e),this.y=s,this.z=t*Math.cos(e),this}setFromMatrixPosition(t){const e=t.elements;return this.x=e[12],this.y=e[13],this.z=e[14],this}setFromMatrixScale(t){const e=this.setFromMatrixColumn(t,0).length(),s=this.setFromMatrixColumn(t,1).length(),n=this.setFromMatrixColumn(t,2).length();return this.x=e,this.y=s,this.z=n,this}setFromMatrixColumn(t,e){return this.fromArray(t.elements,e*4)}setFromMatrix3Column(t,e){return this.fromArray(t.elements,e*3)}setFromEuler(t){return this.x=t._x,this.y=t._y,this.z=t._z,this}setFromColor(t){return this.x=t.r,this.y=t.g,this.z=t.b,this}equals(t){return t.x===this.x&&t.y===this.y&&t.z===this.z}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this.z=t[e+2],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t[e+2]=this.z,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this.z=t.getZ(e),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const t=Math.random()*Math.PI*2,e=Math.random()*2-1,s=Math.sqrt(1-e*e);return this.x=s*Math.cos(t),this.y=e,this.z=s*Math.sin(t),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const Bn=new M,ir=new rs;class mt{constructor(t=new M(1/0,1/0,1/0),e=new M(-1/0,-1/0,-1/0)){this.isBox3=!0,this.min=t,this.max=e}set(t,e){return this.min.copy(t),this.max.copy(e),this}setFromArray(t){this.makeEmpty();for(let e=0,s=t.length;e<s;e+=3)this.expandByPoint(It.fromArray(t,e));return this}setFromBufferAttribute(t){this.makeEmpty();for(let e=0,s=t.count;e<s;e++)this.expandByPoint(It.fromBufferAttribute(t,e));return this}setFromPoints(t){this.makeEmpty();for(let e=0,s=t.length;e<s;e++)this.expandByPoint(t[e]);return this}setFromCenterAndSize(t,e){const s=It.copy(e).multiplyScalar(.5);return this.min.copy(t).sub(s),this.max.copy(t).add(s),this}setFromObject(t,e=!1){return this.makeEmpty(),this.expandByObject(t,e)}clone(){return new this.constructor().copy(this)}copy(t){return this.min.copy(t.min),this.max.copy(t.max),this}makeEmpty(){return this.min.x=this.min.y=this.min.z=1/0,this.max.x=this.max.y=this.max.z=-1/0,this}isEmpty(){return this.max.x<this.min.x||this.max.y<this.min.y||this.max.z<this.min.z}getCenter(t){return this.isEmpty()?t.set(0,0,0):t.addVectors(this.min,this.max).multiplyScalar(.5)}getSize(t){return this.isEmpty()?t.set(0,0,0):t.subVectors(this.max,this.min)}expandByPoint(t){return this.min.min(t),this.max.max(t),this}expandByVector(t){return this.min.sub(t),this.max.add(t),this}expandByScalar(t){return this.min.addScalar(-t),this.max.addScalar(t),this}expandByObject(t,e=!1){t.updateWorldMatrix(!1,!1);const s=t.geometry;if(s!==void 0){const i=s.getAttribute("position");if(e===!0&&i!==void 0&&t.isInstancedMesh!==!0)for(let o=0,a=i.count;o<a;o++)t.isMesh===!0?t.getVertexPosition(o,It):It.fromBufferAttribute(i,o),It.applyMatrix4(t.matrixWorld),this.expandByPoint(It);else t.boundingBox!==void 0?(t.boundingBox===null&&t.computeBoundingBox(),Rs.copy(t.boundingBox)):(s.boundingBox===null&&s.computeBoundingBox(),Rs.copy(s.boundingBox)),Rs.applyMatrix4(t.matrixWorld),this.union(Rs)}const n=t.children;for(let i=0,o=n.length;i<o;i++)this.expandByObject(n[i],e);return this}containsPoint(t){return t.x>=this.min.x&&t.x<=this.max.x&&t.y>=this.min.y&&t.y<=this.max.y&&t.z>=this.min.z&&t.z<=this.max.z}containsBox(t){return this.min.x<=t.min.x&&t.max.x<=this.max.x&&this.min.y<=t.min.y&&t.max.y<=this.max.y&&this.min.z<=t.min.z&&t.max.z<=this.max.z}getParameter(t,e){return e.set((t.x-this.min.x)/(this.max.x-this.min.x),(t.y-this.min.y)/(this.max.y-this.min.y),(t.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(t){return t.max.x>=this.min.x&&t.min.x<=this.max.x&&t.max.y>=this.min.y&&t.min.y<=this.max.y&&t.max.z>=this.min.z&&t.min.z<=this.max.z}intersectsSphere(t){return this.clampPoint(t.center,It),It.distanceToSquared(t.center)<=t.radius*t.radius}intersectsPlane(t){let e,s;return t.normal.x>0?(e=t.normal.x*this.min.x,s=t.normal.x*this.max.x):(e=t.normal.x*this.max.x,s=t.normal.x*this.min.x),t.normal.y>0?(e+=t.normal.y*this.min.y,s+=t.normal.y*this.max.y):(e+=t.normal.y*this.max.y,s+=t.normal.y*this.min.y),t.normal.z>0?(e+=t.normal.z*this.min.z,s+=t.normal.z*this.max.z):(e+=t.normal.z*this.max.z,s+=t.normal.z*this.min.z),e<=-t.constant&&s>=-t.constant}intersectsTriangle(t){if(this.isEmpty())return!1;this.getCenter(os),Is.subVectors(this.max,os),Ee.subVectors(t.a,os),Ce.subVectors(t.b,os),Fe.subVectors(t.c,os),ne.subVectors(Ce,Ee),ie.subVectors(Fe,Ce),ye.subVectors(Ee,Fe);let e=[0,-ne.z,ne.y,0,-ie.z,ie.y,0,-ye.z,ye.y,ne.z,0,-ne.x,ie.z,0,-ie.x,ye.z,0,-ye.x,-ne.y,ne.x,0,-ie.y,ie.x,0,-ye.y,ye.x,0];return!Rn(e,Ee,Ce,Fe,Is)||(e=[1,0,0,0,1,0,0,0,1],!Rn(e,Ee,Ce,Fe,Is))?!1:(Ps.crossVectors(ne,ie),e=[Ps.x,Ps.y,Ps.z],Rn(e,Ee,Ce,Fe,Is))}clampPoint(t,e){return e.copy(t).clamp(this.min,this.max)}distanceToPoint(t){return this.clampPoint(t,It).distanceTo(t)}getBoundingSphere(t){return this.isEmpty()?t.makeEmpty():(this.getCenter(t.center),t.radius=this.getSize(It).length()*.5),t}intersect(t){return this.min.max(t.min),this.max.min(t.max),this.isEmpty()&&this.makeEmpty(),this}union(t){return this.min.min(t.min),this.max.max(t.max),this}applyMatrix4(t){return this.isEmpty()?this:($t[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(t),$t[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(t),$t[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(t),$t[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(t),$t[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(t),$t[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(t),$t[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(t),$t[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(t),this.setFromPoints($t),this)}translate(t){return this.min.add(t),this.max.add(t),this}equals(t){return t.min.equals(this.min)&&t.max.equals(this.max)}}const $t=[new M,new M,new M,new M,new M,new M,new M,new M],It=new M,Rs=new mt,Ee=new M,Ce=new M,Fe=new M,ne=new M,ie=new M,ye=new M,os=new M,Is=new M,Ps=new M,ge=new M;function Rn(r,t,e,s,n){for(let i=0,o=r.length-3;i<=o;i+=3){ge.fromArray(r,i);const a=n.x*Math.abs(ge.x)+n.y*Math.abs(ge.y)+n.z*Math.abs(ge.z),c=t.dot(ge),u=e.dot(ge),h=s.dot(ge);if(Math.max(-Math.max(c,u,h),Math.min(c,u,h))>a)return!1}return!0}const ea=new mt,as=new M,In=new M;class sa{constructor(t=new M,e=-1){this.isSphere=!0,this.center=t,this.radius=e}set(t,e){return this.center.copy(t),this.radius=e,this}setFromPoints(t,e){const s=this.center;e!==void 0?s.copy(e):ea.setFromPoints(t).getCenter(s);let n=0;for(let i=0,o=t.length;i<o;i++)n=Math.max(n,s.distanceToSquared(t[i]));return this.radius=Math.sqrt(n),this}copy(t){return this.center.copy(t.center),this.radius=t.radius,this}isEmpty(){return this.radius<0}makeEmpty(){return this.center.set(0,0,0),this.radius=-1,this}containsPoint(t){return t.distanceToSquared(this.center)<=this.radius*this.radius}distanceToPoint(t){return t.distanceTo(this.center)-this.radius}intersectsSphere(t){const e=this.radius+t.radius;return t.center.distanceToSquared(this.center)<=e*e}intersectsBox(t){return t.intersectsSphere(this)}intersectsPlane(t){return Math.abs(t.distanceToPoint(this.center))<=this.radius}clampPoint(t,e){const s=this.center.distanceToSquared(t);return e.copy(t),s>this.radius*this.radius&&(e.sub(this.center).normalize(),e.multiplyScalar(this.radius).add(this.center)),e}getBoundingBox(t){return this.isEmpty()?(t.makeEmpty(),t):(t.set(this.center,this.center),t.expandByScalar(this.radius),t)}applyMatrix4(t){return this.center.applyMatrix4(t),this.radius=this.radius*t.getMaxScaleOnAxis(),this}translate(t){return this.center.add(t),this}expandByPoint(t){if(this.isEmpty())return this.center.copy(t),this.radius=0,this;as.subVectors(t,this.center);const e=as.lengthSq();if(e>this.radius*this.radius){const s=Math.sqrt(e),n=(s-this.radius)*.5;this.center.addScaledVector(as,n/s),this.radius+=n}return this}union(t){return t.isEmpty()?this:this.isEmpty()?(this.copy(t),this):(this.center.equals(t.center)===!0?this.radius=Math.max(this.radius,t.radius):(In.subVectors(t.center,this.center).setLength(t.radius),this.expandByPoint(as.copy(t.center).add(In)),this.expandByPoint(as.copy(t.center).sub(In))),this)}equals(t){return t.center.equals(this.center)&&t.radius===this.radius}clone(){return new this.constructor().copy(this)}}const Gt=new M,Pn=new M,vs=new M,re=new M,vn=new M,Ls=new M,Ln=new M;class na{constructor(t=new M,e=new M(0,0,-1)){this.origin=t,this.direction=e}set(t,e){return this.origin.copy(t),this.direction.copy(e),this}copy(t){return this.origin.copy(t.origin),this.direction.copy(t.direction),this}at(t,e){return e.copy(this.origin).addScaledVector(this.direction,t)}lookAt(t){return this.direction.copy(t).sub(this.origin).normalize(),this}recast(t){return this.origin.copy(this.at(t,Gt)),this}closestPointToPoint(t,e){e.subVectors(t,this.origin);const s=e.dot(this.direction);return s<0?e.copy(this.origin):e.copy(this.origin).addScaledVector(this.direction,s)}distanceToPoint(t){return Math.sqrt(this.distanceSqToPoint(t))}distanceSqToPoint(t){const e=Gt.subVectors(t,this.origin).dot(this.direction);return e<0?this.origin.distanceToSquared(t):(Gt.copy(this.origin).addScaledVector(this.direction,e),Gt.distanceToSquared(t))}distanceSqToSegment(t,e,s,n){Pn.copy(t).add(e).multiplyScalar(.5),vs.copy(e).sub(t).normalize(),re.copy(this.origin).sub(Pn);const i=t.distanceTo(e)*.5,o=-this.direction.dot(vs),a=re.dot(this.direction),c=-re.dot(vs),u=re.lengthSq(),h=Math.abs(1-o*o);let l,d,f,p;if(h>0)if(l=o*c-a,d=o*a-c,p=i*h,l>=0)if(d>=-p)if(d<=p){const m=1/h;l*=m,d*=m,f=l*(l+o*d+2*a)+d*(o*l+d+2*c)+u}else d=i,l=Math.max(0,-(o*d+a)),f=-l*l+d*(d+2*c)+u;else d=-i,l=Math.max(0,-(o*d+a)),f=-l*l+d*(d+2*c)+u;else d<=-p?(l=Math.max(0,-(-o*i+a)),d=l>0?-i:Math.min(Math.max(-i,-c),i),f=-l*l+d*(d+2*c)+u):d<=p?(l=0,d=Math.min(Math.max(-i,-c),i),f=d*(d+2*c)+u):(l=Math.max(0,-(o*i+a)),d=l>0?i:Math.min(Math.max(-i,-c),i),f=-l*l+d*(d+2*c)+u);else d=o>0?-i:i,l=Math.max(0,-(o*d+a)),f=-l*l+d*(d+2*c)+u;return s&&s.copy(this.origin).addScaledVector(this.direction,l),n&&n.copy(Pn).addScaledVector(vs,d),f}intersectSphere(t,e){Gt.subVectors(t.center,this.origin);const s=Gt.dot(this.direction),n=Gt.dot(Gt)-s*s,i=t.radius*t.radius;if(n>i)return null;const o=Math.sqrt(i-n),a=s-o,c=s+o;return c<0?null:a<0?this.at(c,e):this.at(a,e)}intersectsSphere(t){return this.distanceSqToPoint(t.center)<=t.radius*t.radius}distanceToPlane(t){const e=t.normal.dot(this.direction);if(e===0)return t.distanceToPoint(this.origin)===0?0:null;const s=-(this.origin.dot(t.normal)+t.constant)/e;return s>=0?s:null}intersectPlane(t,e){const s=this.distanceToPlane(t);return s===null?null:this.at(s,e)}intersectsPlane(t){const e=t.distanceToPoint(this.origin);return e===0||t.normal.dot(this.direction)*e<0}intersectBox(t,e){let s,n,i,o,a,c;const u=1/this.direction.x,h=1/this.direction.y,l=1/this.direction.z,d=this.origin;return u>=0?(s=(t.min.x-d.x)*u,n=(t.max.x-d.x)*u):(s=(t.max.x-d.x)*u,n=(t.min.x-d.x)*u),h>=0?(i=(t.min.y-d.y)*h,o=(t.max.y-d.y)*h):(i=(t.max.y-d.y)*h,o=(t.min.y-d.y)*h),s>o||i>n||((i>s||isNaN(s))&&(s=i),(o<n||isNaN(n))&&(n=o),l>=0?(a=(t.min.z-d.z)*l,c=(t.max.z-d.z)*l):(a=(t.max.z-d.z)*l,c=(t.min.z-d.z)*l),s>c||a>n)||((a>s||s!==s)&&(s=a),(c<n||n!==n)&&(n=c),n<0)?null:this.at(s>=0?s:n,e)}intersectsBox(t){return this.intersectBox(t,Gt)!==null}intersectTriangle(t,e,s,n,i){vn.subVectors(e,t),Ls.subVectors(s,t),Ln.crossVectors(vn,Ls);let o=this.direction.dot(Ln),a;if(o>0){if(n)return null;a=1}else if(o<0)a=-1,o=-o;else return null;re.subVectors(this.origin,t);const c=a*this.direction.dot(Ls.crossVectors(re,Ls));if(c<0)return null;const u=a*this.direction.dot(vn.cross(re));if(u<0||c+u>o)return null;const h=-a*re.dot(Ln);return h<0?null:this.at(h/o,i)}applyMatrix4(t){return this.origin.applyMatrix4(t),this.direction.transformDirection(t),this}equals(t){return t.origin.equals(this.origin)&&t.direction.equals(this.direction)}clone(){return new this.constructor().copy(this)}}class Q{constructor(t,e,s,n,i,o,a,c,u,h,l,d,f,p,m,x){Q.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],t!==void 0&&this.set(t,e,s,n,i,o,a,c,u,h,l,d,f,p,m,x)}set(t,e,s,n,i,o,a,c,u,h,l,d,f,p,m,x){const g=this.elements;return g[0]=t,g[4]=e,g[8]=s,g[12]=n,g[1]=i,g[5]=o,g[9]=a,g[13]=c,g[2]=u,g[6]=h,g[10]=l,g[14]=d,g[3]=f,g[7]=p,g[11]=m,g[15]=x,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return new Q().fromArray(this.elements)}copy(t){const e=this.elements,s=t.elements;return e[0]=s[0],e[1]=s[1],e[2]=s[2],e[3]=s[3],e[4]=s[4],e[5]=s[5],e[6]=s[6],e[7]=s[7],e[8]=s[8],e[9]=s[9],e[10]=s[10],e[11]=s[11],e[12]=s[12],e[13]=s[13],e[14]=s[14],e[15]=s[15],this}copyPosition(t){const e=this.elements,s=t.elements;return e[12]=s[12],e[13]=s[13],e[14]=s[14],this}setFromMatrix3(t){const e=t.elements;return this.set(e[0],e[3],e[6],0,e[1],e[4],e[7],0,e[2],e[5],e[8],0,0,0,0,1),this}extractBasis(t,e,s){return t.setFromMatrixColumn(this,0),e.setFromMatrixColumn(this,1),s.setFromMatrixColumn(this,2),this}makeBasis(t,e,s){return this.set(t.x,e.x,s.x,0,t.y,e.y,s.y,0,t.z,e.z,s.z,0,0,0,0,1),this}extractRotation(t){const e=this.elements,s=t.elements,n=1/Be.setFromMatrixColumn(t,0).length(),i=1/Be.setFromMatrixColumn(t,1).length(),o=1/Be.setFromMatrixColumn(t,2).length();return e[0]=s[0]*n,e[1]=s[1]*n,e[2]=s[2]*n,e[3]=0,e[4]=s[4]*i,e[5]=s[5]*i,e[6]=s[6]*i,e[7]=0,e[8]=s[8]*o,e[9]=s[9]*o,e[10]=s[10]*o,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromEuler(t){const e=this.elements,s=t.x,n=t.y,i=t.z,o=Math.cos(s),a=Math.sin(s),c=Math.cos(n),u=Math.sin(n),h=Math.cos(i),l=Math.sin(i);if(t.order==="XYZ"){const d=o*h,f=o*l,p=a*h,m=a*l;e[0]=c*h,e[4]=-c*l,e[8]=u,e[1]=f+p*u,e[5]=d-m*u,e[9]=-a*c,e[2]=m-d*u,e[6]=p+f*u,e[10]=o*c}else if(t.order==="YXZ"){const d=c*h,f=c*l,p=u*h,m=u*l;e[0]=d+m*a,e[4]=p*a-f,e[8]=o*u,e[1]=o*l,e[5]=o*h,e[9]=-a,e[2]=f*a-p,e[6]=m+d*a,e[10]=o*c}else if(t.order==="ZXY"){const d=c*h,f=c*l,p=u*h,m=u*l;e[0]=d-m*a,e[4]=-o*l,e[8]=p+f*a,e[1]=f+p*a,e[5]=o*h,e[9]=m-d*a,e[2]=-o*u,e[6]=a,e[10]=o*c}else if(t.order==="ZYX"){const d=o*h,f=o*l,p=a*h,m=a*l;e[0]=c*h,e[4]=p*u-f,e[8]=d*u+m,e[1]=c*l,e[5]=m*u+d,e[9]=f*u-p,e[2]=-u,e[6]=a*c,e[10]=o*c}else if(t.order==="YZX"){const d=o*c,f=o*u,p=a*c,m=a*u;e[0]=c*h,e[4]=m-d*l,e[8]=p*l+f,e[1]=l,e[5]=o*h,e[9]=-a*h,e[2]=-u*h,e[6]=f*l+p,e[10]=d-m*l}else if(t.order==="XZY"){const d=o*c,f=o*u,p=a*c,m=a*u;e[0]=c*h,e[4]=-l,e[8]=u*h,e[1]=d*l+m,e[5]=o*h,e[9]=f*l-p,e[2]=p*l-f,e[6]=a*h,e[10]=m*l+d}return e[3]=0,e[7]=0,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromQuaternion(t){return this.compose(ia,t,ra)}lookAt(t,e,s){const n=this.elements;return At.subVectors(t,e),At.lengthSq()===0&&(At.z=1),At.normalize(),oe.crossVectors(s,At),oe.lengthSq()===0&&(Math.abs(s.z)===1?At.x+=1e-4:At.z+=1e-4,At.normalize(),oe.crossVectors(s,At)),oe.normalize(),Os.crossVectors(At,oe),n[0]=oe.x,n[4]=Os.x,n[8]=At.x,n[1]=oe.y,n[5]=Os.y,n[9]=At.y,n[2]=oe.z,n[6]=Os.z,n[10]=At.z,this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const s=t.elements,n=e.elements,i=this.elements,o=s[0],a=s[4],c=s[8],u=s[12],h=s[1],l=s[5],d=s[9],f=s[13],p=s[2],m=s[6],x=s[10],g=s[14],y=s[3],N=s[7],w=s[11],T=s[15],_=n[0],S=n[4],z=n[8],B=n[12],b=n[1],I=n[5],C=n[9],P=n[13],L=n[2],D=n[6],X=n[10],ee=n[14],Me=n[3],_e=n[7],pe=n[11],me=n[15];return i[0]=o*_+a*b+c*L+u*Me,i[4]=o*S+a*I+c*D+u*_e,i[8]=o*z+a*C+c*X+u*pe,i[12]=o*B+a*P+c*ee+u*me,i[1]=h*_+l*b+d*L+f*Me,i[5]=h*S+l*I+d*D+f*_e,i[9]=h*z+l*C+d*X+f*pe,i[13]=h*B+l*P+d*ee+f*me,i[2]=p*_+m*b+x*L+g*Me,i[6]=p*S+m*I+x*D+g*_e,i[10]=p*z+m*C+x*X+g*pe,i[14]=p*B+m*P+x*ee+g*me,i[3]=y*_+N*b+w*L+T*Me,i[7]=y*S+N*I+w*D+T*_e,i[11]=y*z+N*C+w*X+T*pe,i[15]=y*B+N*P+w*ee+T*me,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[4]*=t,e[8]*=t,e[12]*=t,e[1]*=t,e[5]*=t,e[9]*=t,e[13]*=t,e[2]*=t,e[6]*=t,e[10]*=t,e[14]*=t,e[3]*=t,e[7]*=t,e[11]*=t,e[15]*=t,this}determinant(){const t=this.elements,e=t[0],s=t[4],n=t[8],i=t[12],o=t[1],a=t[5],c=t[9],u=t[13],h=t[2],l=t[6],d=t[10],f=t[14],p=t[3],m=t[7],x=t[11],g=t[15];return p*(+i*c*l-n*u*l-i*a*d+s*u*d+n*a*f-s*c*f)+m*(+e*c*f-e*u*d+i*o*d-n*o*f+n*u*h-i*c*h)+x*(+e*u*l-e*a*f-i*o*l+s*o*f+i*a*h-s*u*h)+g*(-n*a*h-e*c*l+e*a*d+n*o*l-s*o*d+s*c*h)}transpose(){const t=this.elements;let e;return e=t[1],t[1]=t[4],t[4]=e,e=t[2],t[2]=t[8],t[8]=e,e=t[6],t[6]=t[9],t[9]=e,e=t[3],t[3]=t[12],t[12]=e,e=t[7],t[7]=t[13],t[13]=e,e=t[11],t[11]=t[14],t[14]=e,this}setPosition(t,e,s){const n=this.elements;return t.isVector3?(n[12]=t.x,n[13]=t.y,n[14]=t.z):(n[12]=t,n[13]=e,n[14]=s),this}invert(){const t=this.elements,e=t[0],s=t[1],n=t[2],i=t[3],o=t[4],a=t[5],c=t[6],u=t[7],h=t[8],l=t[9],d=t[10],f=t[11],p=t[12],m=t[13],x=t[14],g=t[15],y=l*x*u-m*d*u+m*c*f-a*x*f-l*c*g+a*d*g,N=p*d*u-h*x*u-p*c*f+o*x*f+h*c*g-o*d*g,w=h*m*u-p*l*u+p*a*f-o*m*f-h*a*g+o*l*g,T=p*l*c-h*m*c-p*a*d+o*m*d+h*a*x-o*l*x,_=e*y+s*N+n*w+i*T;if(_===0)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const S=1/_;return t[0]=y*S,t[1]=(m*d*i-l*x*i-m*n*f+s*x*f+l*n*g-s*d*g)*S,t[2]=(a*x*i-m*c*i+m*n*u-s*x*u-a*n*g+s*c*g)*S,t[3]=(l*c*i-a*d*i-l*n*u+s*d*u+a*n*f-s*c*f)*S,t[4]=N*S,t[5]=(h*x*i-p*d*i+p*n*f-e*x*f-h*n*g+e*d*g)*S,t[6]=(p*c*i-o*x*i-p*n*u+e*x*u+o*n*g-e*c*g)*S,t[7]=(o*d*i-h*c*i+h*n*u-e*d*u-o*n*f+e*c*f)*S,t[8]=w*S,t[9]=(p*l*i-h*m*i-p*s*f+e*m*f+h*s*g-e*l*g)*S,t[10]=(o*m*i-p*a*i+p*s*u-e*m*u-o*s*g+e*a*g)*S,t[11]=(h*a*i-o*l*i-h*s*u+e*l*u+o*s*f-e*a*f)*S,t[12]=T*S,t[13]=(h*m*n-p*l*n+p*s*d-e*m*d-h*s*x+e*l*x)*S,t[14]=(p*a*n-o*m*n-p*s*c+e*m*c+o*s*x-e*a*x)*S,t[15]=(o*l*n-h*a*n+h*s*c-e*l*c-o*s*d+e*a*d)*S,this}scale(t){const e=this.elements,s=t.x,n=t.y,i=t.z;return e[0]*=s,e[4]*=n,e[8]*=i,e[1]*=s,e[5]*=n,e[9]*=i,e[2]*=s,e[6]*=n,e[10]*=i,e[3]*=s,e[7]*=n,e[11]*=i,this}getMaxScaleOnAxis(){const t=this.elements,e=t[0]*t[0]+t[1]*t[1]+t[2]*t[2],s=t[4]*t[4]+t[5]*t[5]+t[6]*t[6],n=t[8]*t[8]+t[9]*t[9]+t[10]*t[10];return Math.sqrt(Math.max(e,s,n))}makeTranslation(t,e,s){return t.isVector3?this.set(1,0,0,t.x,0,1,0,t.y,0,0,1,t.z,0,0,0,1):this.set(1,0,0,t,0,1,0,e,0,0,1,s,0,0,0,1),this}makeRotationX(t){const e=Math.cos(t),s=Math.sin(t);return this.set(1,0,0,0,0,e,-s,0,0,s,e,0,0,0,0,1),this}makeRotationY(t){const e=Math.cos(t),s=Math.sin(t);return this.set(e,0,s,0,0,1,0,0,-s,0,e,0,0,0,0,1),this}makeRotationZ(t){const e=Math.cos(t),s=Math.sin(t);return this.set(e,-s,0,0,s,e,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(t,e){const s=Math.cos(e),n=Math.sin(e),i=1-s,o=t.x,a=t.y,c=t.z,u=i*o,h=i*a;return this.set(u*o+s,u*a-n*c,u*c+n*a,0,u*a+n*c,h*a+s,h*c-n*o,0,u*c-n*a,h*c+n*o,i*c*c+s,0,0,0,0,1),this}makeScale(t,e,s){return this.set(t,0,0,0,0,e,0,0,0,0,s,0,0,0,0,1),this}makeShear(t,e,s,n,i,o){return this.set(1,s,i,0,t,1,o,0,e,n,1,0,0,0,0,1),this}compose(t,e,s){const n=this.elements,i=e._x,o=e._y,a=e._z,c=e._w,u=i+i,h=o+o,l=a+a,d=i*u,f=i*h,p=i*l,m=o*h,x=o*l,g=a*l,y=c*u,N=c*h,w=c*l,T=s.x,_=s.y,S=s.z;return n[0]=(1-(m+g))*T,n[1]=(f+w)*T,n[2]=(p-N)*T,n[3]=0,n[4]=(f-w)*_,n[5]=(1-(d+g))*_,n[6]=(x+y)*_,n[7]=0,n[8]=(p+N)*S,n[9]=(x-y)*S,n[10]=(1-(d+m))*S,n[11]=0,n[12]=t.x,n[13]=t.y,n[14]=t.z,n[15]=1,this}decompose(t,e,s){const n=this.elements;let i=Be.set(n[0],n[1],n[2]).length();const o=Be.set(n[4],n[5],n[6]).length(),a=Be.set(n[8],n[9],n[10]).length();this.determinant()<0&&(i=-i),t.x=n[12],t.y=n[13],t.z=n[14],Pt.copy(this);const u=1/i,h=1/o,l=1/a;return Pt.elements[0]*=u,Pt.elements[1]*=u,Pt.elements[2]*=u,Pt.elements[4]*=h,Pt.elements[5]*=h,Pt.elements[6]*=h,Pt.elements[8]*=l,Pt.elements[9]*=l,Pt.elements[10]*=l,e.setFromRotationMatrix(Pt),s.x=i,s.y=o,s.z=a,this}makePerspective(t,e,s,n,i,o,a=2e3){const c=this.elements,u=2*i/(e-t),h=2*i/(s-n),l=(e+t)/(e-t),d=(s+n)/(s-n);let f,p;if(a===2e3)f=-(o+i)/(o-i),p=-2*o*i/(o-i);else if(a===2001)f=-o/(o-i),p=-o*i/(o-i);else throw new Error("THREE.Matrix4.makePerspective(): Invalid coordinate system: "+a);return c[0]=u,c[4]=0,c[8]=l,c[12]=0,c[1]=0,c[5]=h,c[9]=d,c[13]=0,c[2]=0,c[6]=0,c[10]=f,c[14]=p,c[3]=0,c[7]=0,c[11]=-1,c[15]=0,this}makeOrthographic(t,e,s,n,i,o,a=2e3){const c=this.elements,u=1/(e-t),h=1/(s-n),l=1/(o-i),d=(e+t)*u,f=(s+n)*h;let p,m;if(a===2e3)p=(o+i)*l,m=-2*l;else if(a===2001)p=i*l,m=-1*l;else throw new Error("THREE.Matrix4.makeOrthographic(): Invalid coordinate system: "+a);return c[0]=2*u,c[4]=0,c[8]=0,c[12]=-d,c[1]=0,c[5]=2*h,c[9]=0,c[13]=-f,c[2]=0,c[6]=0,c[10]=m,c[14]=-p,c[3]=0,c[7]=0,c[11]=0,c[15]=1,this}equals(t){const e=this.elements,s=t.elements;for(let n=0;n<16;n++)if(e[n]!==s[n])return!1;return!0}fromArray(t,e=0){for(let s=0;s<16;s++)this.elements[s]=t[s+e];return this}toArray(t=[],e=0){const s=this.elements;return t[e]=s[0],t[e+1]=s[1],t[e+2]=s[2],t[e+3]=s[3],t[e+4]=s[4],t[e+5]=s[5],t[e+6]=s[6],t[e+7]=s[7],t[e+8]=s[8],t[e+9]=s[9],t[e+10]=s[10],t[e+11]=s[11],t[e+12]=s[12],t[e+13]=s[13],t[e+14]=s[14],t[e+15]=s[15],t}}const Be=new M,Pt=new Q,ia=new M(0,0,0),ra=new M(1,1,1),oe=new M,Os=new M,At=new M,rr=new Q,or=new rs;class Ds{constructor(t=0,e=0,s=0,n=Ds.DEFAULT_ORDER){this.isEuler=!0,this._x=t,this._y=e,this._z=s,this._order=n}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get order(){return this._order}set order(t){this._order=t,this._onChangeCallback()}set(t,e,s,n=this._order){return this._x=t,this._y=e,this._z=s,this._order=n,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(t){return this._x=t._x,this._y=t._y,this._z=t._z,this._order=t._order,this._onChangeCallback(),this}setFromRotationMatrix(t,e=this._order,s=!0){const n=t.elements,i=n[0],o=n[4],a=n[8],c=n[1],u=n[5],h=n[9],l=n[2],d=n[6],f=n[10];switch(e){case"XYZ":this._y=Math.asin(lt(a,-1,1)),Math.abs(a)<.9999999?(this._x=Math.atan2(-h,f),this._z=Math.atan2(-o,i)):(this._x=Math.atan2(d,u),this._z=0);break;case"YXZ":this._x=Math.asin(-lt(h,-1,1)),Math.abs(h)<.9999999?(this._y=Math.atan2(a,f),this._z=Math.atan2(c,u)):(this._y=Math.atan2(-l,i),this._z=0);break;case"ZXY":this._x=Math.asin(lt(d,-1,1)),Math.abs(d)<.9999999?(this._y=Math.atan2(-l,f),this._z=Math.atan2(-o,u)):(this._y=0,this._z=Math.atan2(c,i));break;case"ZYX":this._y=Math.asin(-lt(l,-1,1)),Math.abs(l)<.9999999?(this._x=Math.atan2(d,f),this._z=Math.atan2(c,i)):(this._x=0,this._z=Math.atan2(-o,u));break;case"YZX":this._z=Math.asin(lt(c,-1,1)),Math.abs(c)<.9999999?(this._x=Math.atan2(-h,u),this._y=Math.atan2(-l,i)):(this._x=0,this._y=Math.atan2(a,f));break;case"XZY":this._z=Math.asin(-lt(o,-1,1)),Math.abs(o)<.9999999?(this._x=Math.atan2(d,u),this._y=Math.atan2(a,i)):(this._x=Math.atan2(-h,f),this._y=0);break;default:console.warn("THREE.Euler: .setFromRotationMatrix() encountered an unknown order: "+e)}return this._order=e,s===!0&&this._onChangeCallback(),this}setFromQuaternion(t,e,s){return rr.makeRotationFromQuaternion(t),this.setFromRotationMatrix(rr,e,s)}setFromVector3(t,e=this._order){return this.set(t.x,t.y,t.z,e)}reorder(t){return or.setFromEuler(this),this.setFromQuaternion(or,t)}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._order===this._order}fromArray(t){return this._x=t[0],this._y=t[1],this._z=t[2],t[3]!==void 0&&(this._order=t[3]),this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._order,t}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}}Ds.DEFAULT_ORDER="XYZ";class oa{constructor(){this.mask=1}set(t){this.mask=(1<<t|0)>>>0}enable(t){this.mask|=1<<t|0}enableAll(){this.mask=-1}toggle(t){this.mask^=1<<t|0}disable(t){this.mask&=~(1<<t|0)}disableAll(){this.mask=0}test(t){return(this.mask&t.mask)!==0}isEnabled(t){return(this.mask&(1<<t|0))!==0}}let aa=0;const ar=new M,Re=new rs,Xt=new Q,Vs=new M,cs=new M,ca=new M,ha=new rs,cr=new M(1,0,0),hr=new M(0,1,0),ur=new M(0,0,1),lr={type:"added"},ua={type:"removed"},Ie={type:"childadded",child:null},On={type:"childremoved",child:null};class ae extends ss{constructor(){super(),this.isObject3D=!0,Object.defineProperty(this,"id",{value:aa++}),this.uuid=se(),this.name="",this.type="Object3D",this.parent=null,this.children=[],this.up=ae.DEFAULT_UP.clone();const t=new M,e=new Ds,s=new rs,n=new M(1,1,1);function i(){s.setFromEuler(e,!1)}function o(){e.setFromQuaternion(s,void 0,!1)}e._onChange(i),s._onChange(o),Object.defineProperties(this,{position:{configurable:!0,enumerable:!0,value:t},rotation:{configurable:!0,enumerable:!0,value:e},quaternion:{configurable:!0,enumerable:!0,value:s},scale:{configurable:!0,enumerable:!0,value:n},modelViewMatrix:{value:new Q},normalMatrix:{value:new Bt}}),this.matrix=new Q,this.matrixWorld=new Q,this.matrixAutoUpdate=ae.DEFAULT_MATRIX_AUTO_UPDATE,this.matrixWorldAutoUpdate=ae.DEFAULT_MATRIX_WORLD_AUTO_UPDATE,this.matrixWorldNeedsUpdate=!1,this.layers=new oa,this.visible=!0,this.castShadow=!1,this.receiveShadow=!1,this.frustumCulled=!0,this.renderOrder=0,this.animations=[],this.userData={}}onBeforeShadow(){}onAfterShadow(){}onBeforeRender(){}onAfterRender(){}applyMatrix4(t){this.matrixAutoUpdate&&this.updateMatrix(),this.matrix.premultiply(t),this.matrix.decompose(this.position,this.quaternion,this.scale)}applyQuaternion(t){return this.quaternion.premultiply(t),this}setRotationFromAxisAngle(t,e){this.quaternion.setFromAxisAngle(t,e)}setRotationFromEuler(t){this.quaternion.setFromEuler(t,!0)}setRotationFromMatrix(t){this.quaternion.setFromRotationMatrix(t)}setRotationFromQuaternion(t){this.quaternion.copy(t)}rotateOnAxis(t,e){return Re.setFromAxisAngle(t,e),this.quaternion.multiply(Re),this}rotateOnWorldAxis(t,e){return Re.setFromAxisAngle(t,e),this.quaternion.premultiply(Re),this}rotateX(t){return this.rotateOnAxis(cr,t)}rotateY(t){return this.rotateOnAxis(hr,t)}rotateZ(t){return this.rotateOnAxis(ur,t)}translateOnAxis(t,e){return ar.copy(t).applyQuaternion(this.quaternion),this.position.add(ar.multiplyScalar(e)),this}translateX(t){return this.translateOnAxis(cr,t)}translateY(t){return this.translateOnAxis(hr,t)}translateZ(t){return this.translateOnAxis(ur,t)}localToWorld(t){return this.updateWorldMatrix(!0,!1),t.applyMatrix4(this.matrixWorld)}worldToLocal(t){return this.updateWorldMatrix(!0,!1),t.applyMatrix4(Xt.copy(this.matrixWorld).invert())}lookAt(t,e,s){t.isVector3?Vs.copy(t):Vs.set(t,e,s);const n=this.parent;this.updateWorldMatrix(!0,!1),cs.setFromMatrixPosition(this.matrixWorld),this.isCamera||this.isLight?Xt.lookAt(cs,Vs,this.up):Xt.lookAt(Vs,cs,this.up),this.quaternion.setFromRotationMatrix(Xt),n&&(Xt.extractRotation(n.matrixWorld),Re.setFromRotationMatrix(Xt),this.quaternion.premultiply(Re.invert()))}add(t){if(arguments.length>1){for(let e=0;e<arguments.length;e++)this.add(arguments[e]);return this}return t===this?(console.error("THREE.Object3D.add: object can't be added as a child of itself.",t),this):(t&&t.isObject3D?(t.removeFromParent(),t.parent=this,this.children.push(t),t.dispatchEvent(lr),Ie.child=t,this.dispatchEvent(Ie),Ie.child=null):console.error("THREE.Object3D.add: object not an instance of THREE.Object3D.",t),this)}remove(t){if(arguments.length>1){for(let s=0;s<arguments.length;s++)this.remove(arguments[s]);return this}const e=this.children.indexOf(t);return e!==-1&&(t.parent=null,this.children.splice(e,1),t.dispatchEvent(ua),On.child=t,this.dispatchEvent(On),On.child=null),this}removeFromParent(){const t=this.parent;return t!==null&&t.remove(this),this}clear(){return this.remove(...this.children)}attach(t){return this.updateWorldMatrix(!0,!1),Xt.copy(this.matrixWorld).invert(),t.parent!==null&&(t.parent.updateWorldMatrix(!0,!1),Xt.multiply(t.parent.matrixWorld)),t.applyMatrix4(Xt),t.removeFromParent(),t.parent=this,this.children.push(t),t.updateWorldMatrix(!1,!0),t.dispatchEvent(lr),Ie.child=t,this.dispatchEvent(Ie),Ie.child=null,this}getObjectById(t){return this.getObjectByProperty("id",t)}getObjectByName(t){return this.getObjectByProperty("name",t)}getObjectByProperty(t,e){if(this[t]===e)return this;for(let s=0,n=this.children.length;s<n;s++){const o=this.children[s].getObjectByProperty(t,e);if(o!==void 0)return o}}getObjectsByProperty(t,e,s=[]){this[t]===e&&s.push(this);const n=this.children;for(let i=0,o=n.length;i<o;i++)n[i].getObjectsByProperty(t,e,s);return s}getWorldPosition(t){return this.updateWorldMatrix(!0,!1),t.setFromMatrixPosition(this.matrixWorld)}getWorldQuaternion(t){return this.updateWorldMatrix(!0,!1),this.matrixWorld.decompose(cs,t,ca),t}getWorldScale(t){return this.updateWorldMatrix(!0,!1),this.matrixWorld.decompose(cs,ha,t),t}getWorldDirection(t){this.updateWorldMatrix(!0,!1);const e=this.matrixWorld.elements;return t.set(e[8],e[9],e[10]).normalize()}raycast(){}traverse(t){t(this);const e=this.children;for(let s=0,n=e.length;s<n;s++)e[s].traverse(t)}traverseVisible(t){if(this.visible===!1)return;t(this);const e=this.children;for(let s=0,n=e.length;s<n;s++)e[s].traverseVisible(t)}traverseAncestors(t){const e=this.parent;e!==null&&(t(e),e.traverseAncestors(t))}updateMatrix(){this.matrix.compose(this.position,this.quaternion,this.scale),this.matrixWorldNeedsUpdate=!0}updateMatrixWorld(t){this.matrixAutoUpdate&&this.updateMatrix(),(this.matrixWorldNeedsUpdate||t)&&(this.matrixWorldAutoUpdate===!0&&(this.parent===null?this.matrixWorld.copy(this.matrix):this.matrixWorld.multiplyMatrices(this.parent.matrixWorld,this.matrix)),this.matrixWorldNeedsUpdate=!1,t=!0);const e=this.children;for(let s=0,n=e.length;s<n;s++)e[s].updateMatrixWorld(t)}updateWorldMatrix(t,e){const s=this.parent;if(t===!0&&s!==null&&s.updateWorldMatrix(!0,!1),this.matrixAutoUpdate&&this.updateMatrix(),this.matrixWorldAutoUpdate===!0&&(this.parent===null?this.matrixWorld.copy(this.matrix):this.matrixWorld.multiplyMatrices(this.parent.matrixWorld,this.matrix)),e===!0){const n=this.children;for(let i=0,o=n.length;i<o;i++)n[i].updateWorldMatrix(!1,!0)}}toJSON(t){const e=t===void 0||typeof t=="string",s={};e&&(t={geometries:{},materials:{},textures:{},images:{},shapes:{},skeletons:{},animations:{},nodes:{}},s.metadata={version:4.6,type:"Object",generator:"Object3D.toJSON"});const n={};n.uuid=this.uuid,n.type=this.type,this.name!==""&&(n.name=this.name),this.castShadow===!0&&(n.castShadow=!0),this.receiveShadow===!0&&(n.receiveShadow=!0),this.visible===!1&&(n.visible=!1),this.frustumCulled===!1&&(n.frustumCulled=!1),this.renderOrder!==0&&(n.renderOrder=this.renderOrder),Object.keys(this.userData).length>0&&(n.userData=this.userData),n.layers=this.layers.mask,n.matrix=this.matrix.toArray(),n.up=this.up.toArray(),this.matrixAutoUpdate===!1&&(n.matrixAutoUpdate=!1),this.isInstancedMesh&&(n.type="InstancedMesh",n.count=this.count,n.instanceMatrix=this.instanceMatrix.toJSON(),this.instanceColor!==null&&(n.instanceColor=this.instanceColor.toJSON())),this.isBatchedMesh&&(n.type="BatchedMesh",n.perObjectFrustumCulled=this.perObjectFrustumCulled,n.sortObjects=this.sortObjects,n.drawRanges=this._drawRanges,n.reservedRanges=this._reservedRanges,n.visibility=this._visibility,n.active=this._active,n.bounds=this._bounds.map(a=>({boxInitialized:a.boxInitialized,boxMin:a.box.min.toArray(),boxMax:a.box.max.toArray(),sphereInitialized:a.sphereInitialized,sphereRadius:a.sphere.radius,sphereCenter:a.sphere.center.toArray()})),n.maxInstanceCount=this._maxInstanceCount,n.maxVertexCount=this._maxVertexCount,n.maxIndexCount=this._maxIndexCount,n.geometryInitialized=this._geometryInitialized,n.geometryCount=this._geometryCount,n.matricesTexture=this._matricesTexture.toJSON(t),this._colorsTexture!==null&&(n.colorsTexture=this._colorsTexture.toJSON(t)),this.boundingSphere!==null&&(n.boundingSphere={center:n.boundingSphere.center.toArray(),radius:n.boundingSphere.radius}),this.boundingBox!==null&&(n.boundingBox={min:n.boundingBox.min.toArray(),max:n.boundingBox.max.toArray()}));function i(a,c){return a[c.uuid]===void 0&&(a[c.uuid]=c.toJSON(t)),c.uuid}if(this.isScene)this.background&&(this.background.isColor?n.background=this.background.toJSON():this.background.isTexture&&(n.background=this.background.toJSON(t).uuid)),this.environment&&this.environment.isTexture&&this.environment.isRenderTargetTexture!==!0&&(n.environment=this.environment.toJSON(t).uuid);else if(this.isMesh||this.isLine||this.isPoints){n.geometry=i(t.geometries,this.geometry);const a=this.geometry.parameters;if(a!==void 0&&a.shapes!==void 0){const c=a.shapes;if(Array.isArray(c))for(let u=0,h=c.length;u<h;u++){const l=c[u];i(t.shapes,l)}else i(t.shapes,c)}}if(this.isSkinnedMesh&&(n.bindMode=this.bindMode,n.bindMatrix=this.bindMatrix.toArray(),this.skeleton!==void 0&&(i(t.skeletons,this.skeleton),n.skeleton=this.skeleton.uuid)),this.material!==void 0)if(Array.isArray(this.material)){const a=[];for(let c=0,u=this.material.length;c<u;c++)a.push(i(t.materials,this.material[c]));n.material=a}else n.material=i(t.materials,this.material);if(this.children.length>0){n.children=[];for(let a=0;a<this.children.length;a++)n.children.push(this.children[a].toJSON(t).object)}if(this.animations.length>0){n.animations=[];for(let a=0;a<this.animations.length;a++){const c=this.animations[a];n.animations.push(i(t.animations,c))}}if(e){const a=o(t.geometries),c=o(t.materials),u=o(t.textures),h=o(t.images),l=o(t.shapes),d=o(t.skeletons),f=o(t.animations),p=o(t.nodes);a.length>0&&(s.geometries=a),c.length>0&&(s.materials=c),u.length>0&&(s.textures=u),h.length>0&&(s.images=h),l.length>0&&(s.shapes=l),d.length>0&&(s.skeletons=d),f.length>0&&(s.animations=f),p.length>0&&(s.nodes=p)}return s.object=n,s;function o(a){const c=[];for(const u in a){const h=a[u];delete h.metadata,c.push(h)}return c}}clone(t){return new this.constructor().copy(this,t)}copy(t,e=!0){if(this.name=t.name,this.up.copy(t.up),this.position.copy(t.position),this.rotation.order=t.rotation.order,this.quaternion.copy(t.quaternion),this.scale.copy(t.scale),this.matrix.copy(t.matrix),this.matrixWorld.copy(t.matrixWorld),this.matrixAutoUpdate=t.matrixAutoUpdate,this.matrixWorldAutoUpdate=t.matrixWorldAutoUpdate,this.matrixWorldNeedsUpdate=t.matrixWorldNeedsUpdate,this.layers.mask=t.layers.mask,this.visible=t.visible,this.castShadow=t.castShadow,this.receiveShadow=t.receiveShadow,this.frustumCulled=t.frustumCulled,this.renderOrder=t.renderOrder,this.animations=t.animations.slice(),this.userData=JSON.parse(JSON.stringify(t.userData)),e===!0)for(let s=0;s<t.children.length;s++){const n=t.children[s];this.add(n.clone())}return this}}ae.DEFAULT_UP=new M(0,1,0),ae.DEFAULT_MATRIX_AUTO_UPDATE=!0,ae.DEFAULT_MATRIX_WORLD_AUTO_UPDATE=!0;const vt=new M,Yt=new M,Dn=new M,Zt=new M,Pe=new M,ve=new M,dr=new M,Vn=new M,Un=new M,kn=new M,qn=new Rt,Hn=new Rt,Wn=new Rt;class _t{constructor(t=new M,e=new M,s=new M){this.a=t,this.b=e,this.c=s}static getNormal(t,e,s,n){n.subVectors(s,e),vt.subVectors(t,e),n.cross(vt);const i=n.lengthSq();return i>0?n.multiplyScalar(1/Math.sqrt(i)):n.set(0,0,0)}static getBarycoord(t,e,s,n,i){vt.subVectors(n,e),Yt.subVectors(s,e),Dn.subVectors(t,e);const o=vt.dot(vt),a=vt.dot(Yt),c=vt.dot(Dn),u=Yt.dot(Yt),h=Yt.dot(Dn),l=o*u-a*a;if(l===0)return i.set(0,0,0),null;const d=1/l,f=(u*c-a*h)*d,p=(o*h-a*c)*d;return i.set(1-f-p,p,f)}static containsPoint(t,e,s,n){return this.getBarycoord(t,e,s,n,Zt)===null?!1:Zt.x>=0&&Zt.y>=0&&Zt.x+Zt.y<=1}static getInterpolation(t,e,s,n,i,o,a,c){return this.getBarycoord(t,e,s,n,Zt)===null?(c.x=0,c.y=0,"z"in c&&(c.z=0),"w"in c&&(c.w=0),null):(c.setScalar(0),c.addScaledVector(i,Zt.x),c.addScaledVector(o,Zt.y),c.addScaledVector(a,Zt.z),c)}static getInterpolatedAttribute(t,e,s,n,i,o){return qn.setScalar(0),Hn.setScalar(0),Wn.setScalar(0),qn.fromBufferAttribute(t,e),Hn.fromBufferAttribute(t,s),Wn.fromBufferAttribute(t,n),o.setScalar(0),o.addScaledVector(qn,i.x),o.addScaledVector(Hn,i.y),o.addScaledVector(Wn,i.z),o}static isFrontFacing(t,e,s,n){return vt.subVectors(s,e),Yt.subVectors(t,e),vt.cross(Yt).dot(n)<0}set(t,e,s){return this.a.copy(t),this.b.copy(e),this.c.copy(s),this}setFromPointsAndIndices(t,e,s,n){return this.a.copy(t[e]),this.b.copy(t[s]),this.c.copy(t[n]),this}setFromAttributeAndIndices(t,e,s,n){return this.a.fromBufferAttribute(t,e),this.b.fromBufferAttribute(t,s),this.c.fromBufferAttribute(t,n),this}clone(){return new this.constructor().copy(this)}copy(t){return this.a.copy(t.a),this.b.copy(t.b),this.c.copy(t.c),this}getArea(){return vt.subVectors(this.c,this.b),Yt.subVectors(this.a,this.b),vt.cross(Yt).length()*.5}getMidpoint(t){return t.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)}getNormal(t){return _t.getNormal(this.a,this.b,this.c,t)}getPlane(t){return t.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(t,e){return _t.getBarycoord(t,this.a,this.b,this.c,e)}getInterpolation(t,e,s,n,i){return _t.getInterpolation(t,this.a,this.b,this.c,e,s,n,i)}containsPoint(t){return _t.containsPoint(t,this.a,this.b,this.c)}isFrontFacing(t){return _t.isFrontFacing(this.a,this.b,this.c,t)}intersectsBox(t){return t.intersectsTriangle(this)}closestPointToPoint(t,e){const s=this.a,n=this.b,i=this.c;let o,a;Pe.subVectors(n,s),ve.subVectors(i,s),Vn.subVectors(t,s);const c=Pe.dot(Vn),u=ve.dot(Vn);if(c<=0&&u<=0)return e.copy(s);Un.subVectors(t,n);const h=Pe.dot(Un),l=ve.dot(Un);if(h>=0&&l<=h)return e.copy(n);const d=c*l-h*u;if(d<=0&&c>=0&&h<=0)return o=c/(c-h),e.copy(s).addScaledVector(Pe,o);kn.subVectors(t,i);const f=Pe.dot(kn),p=ve.dot(kn);if(p>=0&&f<=p)return e.copy(i);const m=f*u-c*p;if(m<=0&&u>=0&&p<=0)return a=u/(u-p),e.copy(s).addScaledVector(ve,a);const x=h*p-f*l;if(x<=0&&l-h>=0&&f-p>=0)return dr.subVectors(i,n),a=(l-h)/(l-h+(f-p)),e.copy(n).addScaledVector(dr,a);const g=1/(x+m+d);return o=m*g,a=d*g,e.copy(s).addScaledVector(Pe,o).addScaledVector(ve,a)}equals(t){return t.a.equals(this.a)&&t.b.equals(this.b)&&t.c.equals(this.c)}}const fr={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},ce={h:0,s:0,l:0},Us={h:0,s:0,l:0};function $n(r,t,e){return e<0&&(e+=1),e>1&&(e-=1),e<1/6?r+(t-r)*6*e:e<1/2?t:e<2/3?r+(t-r)*6*(2/3-e):r}class Gn{constructor(t,e,s){return this.isColor=!0,this.r=1,this.g=1,this.b=1,this.set(t,e,s)}set(t,e,s){if(e===void 0&&s===void 0){const n=t;n&&n.isColor?this.copy(n):typeof n=="number"?this.setHex(n):typeof n=="string"&&this.setStyle(n)}else this.setRGB(t,e,s);return this}setScalar(t){return this.r=t,this.g=t,this.b=t,this}setHex(t,e=Wt){return t=Math.floor(t),this.r=(t>>16&255)/255,this.g=(t>>8&255)/255,this.b=(t&255)/255,wt.toWorkingColorSpace(this,e),this}setRGB(t,e,s,n=wt.workingColorSpace){return this.r=t,this.g=e,this.b=s,wt.toWorkingColorSpace(this,n),this}setHSL(t,e,s,n=wt.workingColorSpace){if(t=bn(t,1),e=lt(e,0,1),s=lt(s,0,1),e===0)this.r=this.g=this.b=s;else{const i=s<=.5?s*(1+e):s+e-s*e,o=2*s-i;this.r=$n(o,i,t+1/3),this.g=$n(o,i,t),this.b=$n(o,i,t-1/3)}return wt.toWorkingColorSpace(this,n),this}setStyle(t,e=Wt){function s(i){i!==void 0&&parseFloat(i)<1&&console.warn("THREE.Color: Alpha component of "+t+" will be ignored.")}let n;if(n=/^(\w+)\(([^\)]*)\)/.exec(t)){let i;const o=n[1],a=n[2];switch(o){case"rgb":case"rgba":if(i=/^\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return s(i[4]),this.setRGB(Math.min(255,parseInt(i[1],10))/255,Math.min(255,parseInt(i[2],10))/255,Math.min(255,parseInt(i[3],10))/255,e);if(i=/^\s*(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return s(i[4]),this.setRGB(Math.min(100,parseInt(i[1],10))/100,Math.min(100,parseInt(i[2],10))/100,Math.min(100,parseInt(i[3],10))/100,e);break;case"hsl":case"hsla":if(i=/^\s*(\d*\.?\d+)\s*,\s*(\d*\.?\d+)\%\s*,\s*(\d*\.?\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return s(i[4]),this.setHSL(parseFloat(i[1])/360,parseFloat(i[2])/100,parseFloat(i[3])/100,e);break;default:console.warn("THREE.Color: Unknown color model "+t)}}else if(n=/^\#([A-Fa-f\d]+)$/.exec(t)){const i=n[1],o=i.length;if(o===3)return this.setRGB(parseInt(i.charAt(0),16)/15,parseInt(i.charAt(1),16)/15,parseInt(i.charAt(2),16)/15,e);if(o===6)return this.setHex(parseInt(i,16),e);console.warn("THREE.Color: Invalid hex color "+t)}else if(t&&t.length>0)return this.setColorName(t,e);return this}setColorName(t,e=Wt){const s=fr[t.toLowerCase()];return s!==void 0?this.setHex(s,e):console.warn("THREE.Color: Unknown color "+t),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(t){return this.r=t.r,this.g=t.g,this.b=t.b,this}copySRGBToLinear(t){return this.r=ze(t.r),this.g=ze(t.g),this.b=ze(t.b),this}copyLinearToSRGB(t){return this.r=Cn(t.r),this.g=Cn(t.g),this.b=Cn(t.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(t=Wt){return wt.fromWorkingColorSpace(dt.copy(this),t),Math.round(lt(dt.r*255,0,255))*65536+Math.round(lt(dt.g*255,0,255))*256+Math.round(lt(dt.b*255,0,255))}getHexString(t=Wt){return("000000"+this.getHex(t).toString(16)).slice(-6)}getHSL(t,e=wt.workingColorSpace){wt.fromWorkingColorSpace(dt.copy(this),e);const s=dt.r,n=dt.g,i=dt.b,o=Math.max(s,n,i),a=Math.min(s,n,i);let c,u;const h=(a+o)/2;if(a===o)c=0,u=0;else{const l=o-a;switch(u=h<=.5?l/(o+a):l/(2-o-a),o){case s:c=(n-i)/l+(n<i?6:0);break;case n:c=(i-s)/l+2;break;case i:c=(s-n)/l+4;break}c/=6}return t.h=c,t.s=u,t.l=h,t}getRGB(t,e=wt.workingColorSpace){return wt.fromWorkingColorSpace(dt.copy(this),e),t.r=dt.r,t.g=dt.g,t.b=dt.b,t}getStyle(t=Wt){wt.fromWorkingColorSpace(dt.copy(this),t);const e=dt.r,s=dt.g,n=dt.b;return t!==Wt?`color(${t} ${e.toFixed(3)} ${s.toFixed(3)} ${n.toFixed(3)})`:`rgb(${Math.round(e*255)},${Math.round(s*255)},${Math.round(n*255)})`}offsetHSL(t,e,s){return this.getHSL(ce),this.setHSL(ce.h+t,ce.s+e,ce.l+s)}add(t){return this.r+=t.r,this.g+=t.g,this.b+=t.b,this}addColors(t,e){return this.r=t.r+e.r,this.g=t.g+e.g,this.b=t.b+e.b,this}addScalar(t){return this.r+=t,this.g+=t,this.b+=t,this}sub(t){return this.r=Math.max(0,this.r-t.r),this.g=Math.max(0,this.g-t.g),this.b=Math.max(0,this.b-t.b),this}multiply(t){return this.r*=t.r,this.g*=t.g,this.b*=t.b,this}multiplyScalar(t){return this.r*=t,this.g*=t,this.b*=t,this}lerp(t,e){return this.r+=(t.r-this.r)*e,this.g+=(t.g-this.g)*e,this.b+=(t.b-this.b)*e,this}lerpColors(t,e,s){return this.r=t.r+(e.r-t.r)*s,this.g=t.g+(e.g-t.g)*s,this.b=t.b+(e.b-t.b)*s,this}lerpHSL(t,e){this.getHSL(ce),t.getHSL(Us);const s=ns(ce.h,Us.h,e),n=ns(ce.s,Us.s,e),i=ns(ce.l,Us.l,e);return this.setHSL(s,n,i),this}setFromVector3(t){return this.r=t.x,this.g=t.y,this.b=t.z,this}applyMatrix3(t){const e=this.r,s=this.g,n=this.b,i=t.elements;return this.r=i[0]*e+i[3]*s+i[6]*n,this.g=i[1]*e+i[4]*s+i[7]*n,this.b=i[2]*e+i[5]*s+i[8]*n,this}equals(t){return t.r===this.r&&t.g===this.g&&t.b===this.b}fromArray(t,e=0){return this.r=t[e],this.g=t[e+1],this.b=t[e+2],this}toArray(t=[],e=0){return t[e]=this.r,t[e+1]=this.g,t[e+2]=this.b,t}fromBufferAttribute(t,e){return this.r=t.getX(e),this.g=t.getY(e),this.b=t.getZ(e),this}toJSON(){return this.getHex()}*[Symbol.iterator](){yield this.r,yield this.g,yield this.b}}const dt=new Gn;Gn.NAMES=fr;const j=new M,ks=new Z;class Lt{constructor(t,e,s=!1){if(Array.isArray(t))throw new TypeError("THREE.BufferAttribute: array should be a Typed Array.");this.isBufferAttribute=!0,this.name="",this.array=t,this.itemSize=e,this.count=t!==void 0?t.length/e:0,this.normalized=s,this.usage=35044,this.updateRanges=[],this.gpuType=1015,this.version=0}onUploadCallback(){}set needsUpdate(t){t===!0&&this.version++}setUsage(t){return this.usage=t,this}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}copy(t){return this.name=t.name,this.array=new t.array.constructor(t.array),this.itemSize=t.itemSize,this.count=t.count,this.normalized=t.normalized,this.usage=t.usage,this.gpuType=t.gpuType,this}copyAt(t,e,s){t*=this.itemSize,s*=e.itemSize;for(let n=0,i=this.itemSize;n<i;n++)this.array[t+n]=e.array[s+n];return this}copyArray(t){return this.array.set(t),this}applyMatrix3(t){if(this.itemSize===2)for(let e=0,s=this.count;e<s;e++)ks.fromBufferAttribute(this,e),ks.applyMatrix3(t),this.setXY(e,ks.x,ks.y);else if(this.itemSize===3)for(let e=0,s=this.count;e<s;e++)j.fromBufferAttribute(this,e),j.applyMatrix3(t),this.setXYZ(e,j.x,j.y,j.z);return this}applyMatrix4(t){for(let e=0,s=this.count;e<s;e++)j.fromBufferAttribute(this,e),j.applyMatrix4(t),this.setXYZ(e,j.x,j.y,j.z);return this}applyNormalMatrix(t){for(let e=0,s=this.count;e<s;e++)j.fromBufferAttribute(this,e),j.applyNormalMatrix(t),this.setXYZ(e,j.x,j.y,j.z);return this}transformDirection(t){for(let e=0,s=this.count;e<s;e++)j.fromBufferAttribute(this,e),j.transformDirection(t),this.setXYZ(e,j.x,j.y,j.z);return this}set(t,e=0){return this.array.set(t,e),this}getComponent(t,e){let s=this.array[t*this.itemSize+e];return this.normalized&&(s=Ft(s,this.array)),s}setComponent(t,e,s){return this.normalized&&(s=W(s,this.array)),this.array[t*this.itemSize+e]=s,this}getX(t){let e=this.array[t*this.itemSize];return this.normalized&&(e=Ft(e,this.array)),e}setX(t,e){return this.normalized&&(e=W(e,this.array)),this.array[t*this.itemSize]=e,this}getY(t){let e=this.array[t*this.itemSize+1];return this.normalized&&(e=Ft(e,this.array)),e}setY(t,e){return this.normalized&&(e=W(e,this.array)),this.array[t*this.itemSize+1]=e,this}getZ(t){let e=this.array[t*this.itemSize+2];return this.normalized&&(e=Ft(e,this.array)),e}setZ(t,e){return this.normalized&&(e=W(e,this.array)),this.array[t*this.itemSize+2]=e,this}getW(t){let e=this.array[t*this.itemSize+3];return this.normalized&&(e=Ft(e,this.array)),e}setW(t,e){return this.normalized&&(e=W(e,this.array)),this.array[t*this.itemSize+3]=e,this}setXY(t,e,s){return t*=this.itemSize,this.normalized&&(e=W(e,this.array),s=W(s,this.array)),this.array[t+0]=e,this.array[t+1]=s,this}setXYZ(t,e,s,n){return t*=this.itemSize,this.normalized&&(e=W(e,this.array),s=W(s,this.array),n=W(n,this.array)),this.array[t+0]=e,this.array[t+1]=s,this.array[t+2]=n,this}setXYZW(t,e,s,n,i){return t*=this.itemSize,this.normalized&&(e=W(e,this.array),s=W(s,this.array),n=W(n,this.array),i=W(i,this.array)),this.array[t+0]=e,this.array[t+1]=s,this.array[t+2]=n,this.array[t+3]=i,this}onUpload(t){return this.onUploadCallback=t,this}clone(){return new this.constructor(this.array,this.itemSize).copy(this)}toJSON(){const t={itemSize:this.itemSize,type:this.array.constructor.name,array:Array.from(this.array),normalized:this.normalized};return this.name!==""&&(t.name=this.name),this.usage!==35044&&(t.usage=this.usage),t}}class la extends Lt{constructor(t,e,s){super(new Uint16Array(t),e,s)}}class da extends Lt{constructor(t,e,s){super(new Uint32Array(t),e,s)}}class fa extends Lt{constructor(t,e,s){super(new Float32Array(t),e,s)}}let pa=0;const zt=new Q,Xn=new ae,Le=new M,St=new mt,hs=new mt,ot=new M;class Yn extends ss{constructor(){super(),this.isBufferGeometry=!0,Object.defineProperty(this,"id",{value:pa++}),this.uuid=se(),this.name="",this.type="BufferGeometry",this.index=null,this.attributes={},this.morphAttributes={},this.morphTargetsRelative=!1,this.groups=[],this.boundingBox=null,this.boundingSphere=null,this.drawRange={start:0,count:1/0},this.userData={}}getIndex(){return this.index}setIndex(t){return Array.isArray(t)?this.index=new(Jo(t)?da:la)(t,1):this.index=t,this}getAttribute(t){return this.attributes[t]}setAttribute(t,e){return this.attributes[t]=e,this}deleteAttribute(t){return delete this.attributes[t],this}hasAttribute(t){return this.attributes[t]!==void 0}addGroup(t,e,s=0){this.groups.push({start:t,count:e,materialIndex:s})}clearGroups(){this.groups=[]}setDrawRange(t,e){this.drawRange.start=t,this.drawRange.count=e}applyMatrix4(t){const e=this.attributes.position;e!==void 0&&(e.applyMatrix4(t),e.needsUpdate=!0);const s=this.attributes.normal;if(s!==void 0){const i=new Bt().getNormalMatrix(t);s.applyNormalMatrix(i),s.needsUpdate=!0}const n=this.attributes.tangent;return n!==void 0&&(n.transformDirection(t),n.needsUpdate=!0),this.boundingBox!==null&&this.computeBoundingBox(),this.boundingSphere!==null&&this.computeBoundingSphere(),this}applyQuaternion(t){return zt.makeRotationFromQuaternion(t),this.applyMatrix4(zt),this}rotateX(t){return zt.makeRotationX(t),this.applyMatrix4(zt),this}rotateY(t){return zt.makeRotationY(t),this.applyMatrix4(zt),this}rotateZ(t){return zt.makeRotationZ(t),this.applyMatrix4(zt),this}translate(t,e,s){return zt.makeTranslation(t,e,s),this.applyMatrix4(zt),this}scale(t,e,s){return zt.makeScale(t,e,s),this.applyMatrix4(zt),this}lookAt(t){return Xn.lookAt(t),Xn.updateMatrix(),this.applyMatrix4(Xn.matrix),this}center(){return this.computeBoundingBox(),this.boundingBox.getCenter(Le).negate(),this.translate(Le.x,Le.y,Le.z),this}setFromPoints(t){const e=[];for(let s=0,n=t.length;s<n;s++){const i=t[s];e.push(i.x,i.y,i.z||0)}return this.setAttribute("position",new fa(e,3)),this}computeBoundingBox(){this.boundingBox===null&&(this.boundingBox=new mt);const t=this.attributes.position,e=this.morphAttributes.position;if(t&&t.isGLBufferAttribute){console.error("THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box.",this),this.boundingBox.set(new M(-1/0,-1/0,-1/0),new M(1/0,1/0,1/0));return}if(t!==void 0){if(this.boundingBox.setFromBufferAttribute(t),e)for(let s=0,n=e.length;s<n;s++){const i=e[s];St.setFromBufferAttribute(i),this.morphTargetsRelative?(ot.addVectors(this.boundingBox.min,St.min),this.boundingBox.expandByPoint(ot),ot.addVectors(this.boundingBox.max,St.max),this.boundingBox.expandByPoint(ot)):(this.boundingBox.expandByPoint(St.min),this.boundingBox.expandByPoint(St.max))}}else this.boundingBox.makeEmpty();(isNaN(this.boundingBox.min.x)||isNaN(this.boundingBox.min.y)||isNaN(this.boundingBox.min.z))&&console.error('THREE.BufferGeometry.computeBoundingBox(): Computed min/max have NaN values. The "position" attribute is likely to have NaN values.',this)}computeBoundingSphere(){this.boundingSphere===null&&(this.boundingSphere=new sa);const t=this.attributes.position,e=this.morphAttributes.position;if(t&&t.isGLBufferAttribute){console.error("THREE.BufferGeometry.computeBoundingSphere(): GLBufferAttribute requires a manual bounding sphere.",this),this.boundingSphere.set(new M,1/0);return}if(t){const s=this.boundingSphere.center;if(St.setFromBufferAttribute(t),e)for(let i=0,o=e.length;i<o;i++){const a=e[i];hs.setFromBufferAttribute(a),this.morphTargetsRelative?(ot.addVectors(St.min,hs.min),St.expandByPoint(ot),ot.addVectors(St.max,hs.max),St.expandByPoint(ot)):(St.expandByPoint(hs.min),St.expandByPoint(hs.max))}St.getCenter(s);let n=0;for(let i=0,o=t.count;i<o;i++)ot.fromBufferAttribute(t,i),n=Math.max(n,s.distanceToSquared(ot));if(e)for(let i=0,o=e.length;i<o;i++){const a=e[i],c=this.morphTargetsRelative;for(let u=0,h=a.count;u<h;u++)ot.fromBufferAttribute(a,u),c&&(Le.fromBufferAttribute(t,u),ot.add(Le)),n=Math.max(n,s.distanceToSquared(ot))}this.boundingSphere.radius=Math.sqrt(n),isNaN(this.boundingSphere.radius)&&console.error('THREE.BufferGeometry.computeBoundingSphere(): Computed radius is NaN. The "position" attribute is likely to have NaN values.',this)}}computeTangents(){const t=this.index,e=this.attributes;if(t===null||e.position===void 0||e.normal===void 0||e.uv===void 0){console.error("THREE.BufferGeometry: .computeTangents() failed. Missing required attributes (index, position, normal or uv)");return}const s=e.position,n=e.normal,i=e.uv;this.hasAttribute("tangent")===!1&&this.setAttribute("tangent",new Lt(new Float32Array(4*s.count),4));const o=this.getAttribute("tangent"),a=[],c=[];for(let z=0;z<s.count;z++)a[z]=new M,c[z]=new M;const u=new M,h=new M,l=new M,d=new Z,f=new Z,p=new Z,m=new M,x=new M;function g(z,B,b){u.fromBufferAttribute(s,z),h.fromBufferAttribute(s,B),l.fromBufferAttribute(s,b),d.fromBufferAttribute(i,z),f.fromBufferAttribute(i,B),p.fromBufferAttribute(i,b),h.sub(u),l.sub(u),f.sub(d),p.sub(d);const I=1/(f.x*p.y-p.x*f.y);isFinite(I)&&(m.copy(h).multiplyScalar(p.y).addScaledVector(l,-f.y).multiplyScalar(I),x.copy(l).multiplyScalar(f.x).addScaledVector(h,-p.x).multiplyScalar(I),a[z].add(m),a[B].add(m),a[b].add(m),c[z].add(x),c[B].add(x),c[b].add(x))}let y=this.groups;y.length===0&&(y=[{start:0,count:t.count}]);for(let z=0,B=y.length;z<B;++z){const b=y[z],I=b.start,C=b.count;for(let P=I,L=I+C;P<L;P+=3)g(t.getX(P+0),t.getX(P+1),t.getX(P+2))}const N=new M,w=new M,T=new M,_=new M;function S(z){T.fromBufferAttribute(n,z),_.copy(T);const B=a[z];N.copy(B),N.sub(T.multiplyScalar(T.dot(B))).normalize(),w.crossVectors(_,B);const I=w.dot(c[z])<0?-1:1;o.setXYZW(z,N.x,N.y,N.z,I)}for(let z=0,B=y.length;z<B;++z){const b=y[z],I=b.start,C=b.count;for(let P=I,L=I+C;P<L;P+=3)S(t.getX(P+0)),S(t.getX(P+1)),S(t.getX(P+2))}}computeVertexNormals(){const t=this.index,e=this.getAttribute("position");if(e!==void 0){let s=this.getAttribute("normal");if(s===void 0)s=new Lt(new Float32Array(e.count*3),3),this.setAttribute("normal",s);else for(let d=0,f=s.count;d<f;d++)s.setXYZ(d,0,0,0);const n=new M,i=new M,o=new M,a=new M,c=new M,u=new M,h=new M,l=new M;if(t)for(let d=0,f=t.count;d<f;d+=3){const p=t.getX(d+0),m=t.getX(d+1),x=t.getX(d+2);n.fromBufferAttribute(e,p),i.fromBufferAttribute(e,m),o.fromBufferAttribute(e,x),h.subVectors(o,i),l.subVectors(n,i),h.cross(l),a.fromBufferAttribute(s,p),c.fromBufferAttribute(s,m),u.fromBufferAttribute(s,x),a.add(h),c.add(h),u.add(h),s.setXYZ(p,a.x,a.y,a.z),s.setXYZ(m,c.x,c.y,c.z),s.setXYZ(x,u.x,u.y,u.z)}else for(let d=0,f=e.count;d<f;d+=3)n.fromBufferAttribute(e,d+0),i.fromBufferAttribute(e,d+1),o.fromBufferAttribute(e,d+2),h.subVectors(o,i),l.subVectors(n,i),h.cross(l),s.setXYZ(d+0,h.x,h.y,h.z),s.setXYZ(d+1,h.x,h.y,h.z),s.setXYZ(d+2,h.x,h.y,h.z);this.normalizeNormals(),s.needsUpdate=!0}}normalizeNormals(){const t=this.attributes.normal;for(let e=0,s=t.count;e<s;e++)ot.fromBufferAttribute(t,e),ot.normalize(),t.setXYZ(e,ot.x,ot.y,ot.z)}toNonIndexed(){function t(a,c){const u=a.array,h=a.itemSize,l=a.normalized,d=new u.constructor(c.length*h);let f=0,p=0;for(let m=0,x=c.length;m<x;m++){a.isInterleavedBufferAttribute?f=c[m]*a.data.stride+a.offset:f=c[m]*h;for(let g=0;g<h;g++)d[p++]=u[f++]}return new Lt(d,h,l)}if(this.index===null)return console.warn("THREE.BufferGeometry.toNonIndexed(): BufferGeometry is already non-indexed."),this;const e=new Yn,s=this.index.array,n=this.attributes;for(const a in n){const c=n[a],u=t(c,s);e.setAttribute(a,u)}const i=this.morphAttributes;for(const a in i){const c=[],u=i[a];for(let h=0,l=u.length;h<l;h++){const d=u[h],f=t(d,s);c.push(f)}e.morphAttributes[a]=c}e.morphTargetsRelative=this.morphTargetsRelative;const o=this.groups;for(let a=0,c=o.length;a<c;a++){const u=o[a];e.addGroup(u.start,u.count,u.materialIndex)}return e}toJSON(){const t={metadata:{version:4.6,type:"BufferGeometry",generator:"BufferGeometry.toJSON"}};if(t.uuid=this.uuid,t.type=this.type,this.name!==""&&(t.name=this.name),Object.keys(this.userData).length>0&&(t.userData=this.userData),this.parameters!==void 0){const c=this.parameters;for(const u in c)c[u]!==void 0&&(t[u]=c[u]);return t}t.data={attributes:{}};const e=this.index;e!==null&&(t.data.index={type:e.array.constructor.name,array:Array.prototype.slice.call(e.array)});const s=this.attributes;for(const c in s){const u=s[c];t.data.attributes[c]=u.toJSON(t.data)}const n={};let i=!1;for(const c in this.morphAttributes){const u=this.morphAttributes[c],h=[];for(let l=0,d=u.length;l<d;l++){const f=u[l];h.push(f.toJSON(t.data))}h.length>0&&(n[c]=h,i=!0)}i&&(t.data.morphAttributes=n,t.data.morphTargetsRelative=this.morphTargetsRelative);const o=this.groups;o.length>0&&(t.data.groups=JSON.parse(JSON.stringify(o)));const a=this.boundingSphere;return a!==null&&(t.data.boundingSphere={center:a.center.toArray(),radius:a.radius}),t}clone(){return new this.constructor().copy(this)}copy(t){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const e={};this.name=t.name;const s=t.index;s!==null&&this.setIndex(s.clone(e));const n=t.attributes;for(const u in n){const h=n[u];this.setAttribute(u,h.clone(e))}const i=t.morphAttributes;for(const u in i){const h=[],l=i[u];for(let d=0,f=l.length;d<f;d++)h.push(l[d].clone(e));this.morphAttributes[u]=h}this.morphTargetsRelative=t.morphTargetsRelative;const o=t.groups;for(let u=0,h=o.length;u<h;u++){const l=o[u];this.addGroup(l.start,l.count,l.materialIndex)}const a=t.boundingBox;a!==null&&(this.boundingBox=a.clone());const c=t.boundingSphere;return c!==null&&(this.boundingSphere=c.clone()),this.drawRange.start=t.drawRange.start,this.drawRange.count=t.drawRange.count,this.userData=t.userData,this}dispose(){this.dispatchEvent({type:"dispose"})}}const Zn=new M,ma=new M,ya=new Bt;class Jn{constructor(t=new M(1,0,0),e=0){this.isPlane=!0,this.normal=t,this.constant=e}set(t,e){return this.normal.copy(t),this.constant=e,this}setComponents(t,e,s,n){return this.normal.set(t,e,s),this.constant=n,this}setFromNormalAndCoplanarPoint(t,e){return this.normal.copy(t),this.constant=-e.dot(this.normal),this}setFromCoplanarPoints(t,e,s){const n=Zn.subVectors(s,e).cross(ma.subVectors(t,e)).normalize();return this.setFromNormalAndCoplanarPoint(n,t),this}copy(t){return this.normal.copy(t.normal),this.constant=t.constant,this}normalize(){const t=1/this.normal.length();return this.normal.multiplyScalar(t),this.constant*=t,this}negate(){return this.constant*=-1,this.normal.negate(),this}distanceToPoint(t){return this.normal.dot(t)+this.constant}distanceToSphere(t){return this.distanceToPoint(t.center)-t.radius}projectPoint(t,e){return e.copy(t).addScaledVector(this.normal,-this.distanceToPoint(t))}intersectLine(t,e){const s=t.delta(Zn),n=this.normal.dot(s);if(n===0)return this.distanceToPoint(t.start)===0?e.copy(t.start):null;const i=-(t.start.dot(this.normal)+this.constant)/n;return i<0||i>1?null:e.copy(t.start).addScaledVector(s,i)}intersectsLine(t){const e=this.distanceToPoint(t.start),s=this.distanceToPoint(t.end);return e<0&&s>0||s<0&&e>0}intersectsBox(t){return t.intersectsPlane(this)}intersectsSphere(t){return t.intersectsPlane(this)}coplanarPoint(t){return t.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(t,e){const s=e||ya.getNormalMatrix(t),n=this.coplanarPoint(Zn).applyMatrix4(t),i=this.normal.applyMatrix3(s).normalize();return this.constant=-n.dot(i),this}translate(t){return this.constant-=t.dot(this.normal),this}equals(t){return t.normal.equals(this.normal)&&t.constant===this.constant}clone(){return new this.constructor().copy(this)}}class pr extends Ut{constructor(t,e,s,n,i,o,a,c,u,h=1026){if(h!==1026&&h!==1027)throw new Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat");s===void 0&&h===1026&&(s=1014),s===void 0&&h===1027&&(s=1020),super(null,n,i,o,a,c,h,s,u),this.isDepthTexture=!0,this.image={width:t,height:e},this.magFilter=a!==void 0?a:1003,this.minFilter=c!==void 0?c:1003,this.flipY=!1,this.generateMipmaps=!1,this.compareFunction=null}copy(t){return super.copy(t),this.compareFunction=t.compareFunction,this}toJSON(t){const e=super.toJSON(t);return this.compareFunction!==null&&(e.compareFunction=this.compareFunction),e}}class ga{constructor(t,e){this.isInterleavedBuffer=!0,this.array=t,this.stride=e,this.count=t!==void 0?t.length/e:0,this.usage=35044,this.updateRanges=[],this.version=0,this.uuid=se()}onUploadCallback(){}set needsUpdate(t){t===!0&&this.version++}setUsage(t){return this.usage=t,this}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}copy(t){return this.array=new t.array.constructor(t.array),this.count=t.count,this.stride=t.stride,this.usage=t.usage,this}copyAt(t,e,s){t*=this.stride,s*=e.stride;for(let n=0,i=this.stride;n<i;n++)this.array[t+n]=e.array[s+n];return this}set(t,e=0){return this.array.set(t,e),this}clone(t){t.arrayBuffers===void 0&&(t.arrayBuffers={}),this.array.buffer._uuid===void 0&&(this.array.buffer._uuid=se()),t.arrayBuffers[this.array.buffer._uuid]===void 0&&(t.arrayBuffers[this.array.buffer._uuid]=this.array.slice(0).buffer);const e=new this.array.constructor(t.arrayBuffers[this.array.buffer._uuid]),s=new this.constructor(e,this.stride);return s.setUsage(this.usage),s}onUpload(t){return this.onUploadCallback=t,this}toJSON(t){return t.arrayBuffers===void 0&&(t.arrayBuffers={}),this.array.buffer._uuid===void 0&&(this.array.buffer._uuid=se()),t.arrayBuffers[this.array.buffer._uuid]===void 0&&(t.arrayBuffers[this.array.buffer._uuid]=Array.from(new Uint32Array(this.array.buffer))),{uuid:this.uuid,buffer:this.array.buffer._uuid,type:this.array.constructor.name,stride:this.stride}}}const yt=new M;class Qn{constructor(t,e,s,n=!1){this.isInterleavedBufferAttribute=!0,this.name="",this.data=t,this.itemSize=e,this.offset=s,this.normalized=n}get count(){return this.data.count}get array(){return this.data.array}set needsUpdate(t){this.data.needsUpdate=t}applyMatrix4(t){for(let e=0,s=this.data.count;e<s;e++)yt.fromBufferAttribute(this,e),yt.applyMatrix4(t),this.setXYZ(e,yt.x,yt.y,yt.z);return this}applyNormalMatrix(t){for(let e=0,s=this.count;e<s;e++)yt.fromBufferAttribute(this,e),yt.applyNormalMatrix(t),this.setXYZ(e,yt.x,yt.y,yt.z);return this}transformDirection(t){for(let e=0,s=this.count;e<s;e++)yt.fromBufferAttribute(this,e),yt.transformDirection(t),this.setXYZ(e,yt.x,yt.y,yt.z);return this}getComponent(t,e){let s=this.array[t*this.data.stride+this.offset+e];return this.normalized&&(s=Ft(s,this.array)),s}setComponent(t,e,s){return this.normalized&&(s=W(s,this.array)),this.data.array[t*this.data.stride+this.offset+e]=s,this}setX(t,e){return this.normalized&&(e=W(e,this.array)),this.data.array[t*this.data.stride+this.offset]=e,this}setY(t,e){return this.normalized&&(e=W(e,this.array)),this.data.array[t*this.data.stride+this.offset+1]=e,this}setZ(t,e){return this.normalized&&(e=W(e,this.array)),this.data.array[t*this.data.stride+this.offset+2]=e,this}setW(t,e){return this.normalized&&(e=W(e,this.array)),this.data.array[t*this.data.stride+this.offset+3]=e,this}getX(t){let e=this.data.array[t*this.data.stride+this.offset];return this.normalized&&(e=Ft(e,this.array)),e}getY(t){let e=this.data.array[t*this.data.stride+this.offset+1];return this.normalized&&(e=Ft(e,this.array)),e}getZ(t){let e=this.data.array[t*this.data.stride+this.offset+2];return this.normalized&&(e=Ft(e,this.array)),e}getW(t){let e=this.data.array[t*this.data.stride+this.offset+3];return this.normalized&&(e=Ft(e,this.array)),e}setXY(t,e,s){return t=t*this.data.stride+this.offset,this.normalized&&(e=W(e,this.array),s=W(s,this.array)),this.data.array[t+0]=e,this.data.array[t+1]=s,this}setXYZ(t,e,s,n){return t=t*this.data.stride+this.offset,this.normalized&&(e=W(e,this.array),s=W(s,this.array),n=W(n,this.array)),this.data.array[t+0]=e,this.data.array[t+1]=s,this.data.array[t+2]=n,this}setXYZW(t,e,s,n,i){return t=t*this.data.stride+this.offset,this.normalized&&(e=W(e,this.array),s=W(s,this.array),n=W(n,this.array),i=W(i,this.array)),this.data.array[t+0]=e,this.data.array[t+1]=s,this.data.array[t+2]=n,this.data.array[t+3]=i,this}clone(t){if(t===void 0){console.log("THREE.InterleavedBufferAttribute.clone(): Cloning an interleaved buffer attribute will de-interleave buffer data.");const e=[];for(let s=0;s<this.count;s++){const n=s*this.data.stride+this.offset;for(let i=0;i<this.itemSize;i++)e.push(this.data.array[n+i])}return new Lt(new this.array.constructor(e),this.itemSize,this.normalized)}else return t.interleavedBuffers===void 0&&(t.interleavedBuffers={}),t.interleavedBuffers[this.data.uuid]===void 0&&(t.interleavedBuffers[this.data.uuid]=this.data.clone(t)),new Qn(t.interleavedBuffers[this.data.uuid],this.itemSize,this.offset,this.normalized)}toJSON(t){if(t===void 0){console.log("THREE.InterleavedBufferAttribute.toJSON(): Serializing an interleaved buffer attribute will de-interleave buffer data.");const e=[];for(let s=0;s<this.count;s++){const n=s*this.data.stride+this.offset;for(let i=0;i<this.itemSize;i++)e.push(this.data.array[n+i])}return{itemSize:this.itemSize,type:this.array.constructor.name,array:e,normalized:this.normalized}}else return t.interleavedBuffers===void 0&&(t.interleavedBuffers={}),t.interleavedBuffers[this.data.uuid]===void 0&&(t.interleavedBuffers[this.data.uuid]=this.data.toJSON(t)),{isInterleavedBufferAttribute:!0,itemSize:this.itemSize,data:this.data.uuid,offset:this.offset,normalized:this.normalized}}}class xa extends Ut{constructor(t,e){super({width:t,height:e}),this.isFramebufferTexture=!0,this.magFilter=1003,this.minFilter=1003,this.generateMipmaps=!1,this.needsUpdate=!0}}const mr=new M,qs=new M;class Jt{constructor(t=new M,e=new M){this.start=t,this.end=e}set(t,e){return this.start.copy(t),this.end.copy(e),this}copy(t){return this.start.copy(t.start),this.end.copy(t.end),this}getCenter(t){return t.addVectors(this.start,this.end).multiplyScalar(.5)}delta(t){return t.subVectors(this.end,this.start)}distanceSq(){return this.start.distanceToSquared(this.end)}distance(){return this.start.distanceTo(this.end)}at(t,e){return this.delta(e).multiplyScalar(t).add(this.start)}closestPointToPointParameter(t,e){mr.subVectors(t,this.start),qs.subVectors(this.end,this.start);const s=qs.dot(qs);let i=qs.dot(mr)/s;return e&&(i=lt(i,0,1)),i}closestPointToPoint(t,e,s){const n=this.closestPointToPointParameter(t,e);return this.delta(s).multiplyScalar(n).add(this.start)}applyMatrix4(t){return this.start.applyMatrix4(t),this.end.applyMatrix4(t),this}equals(t){return t.start.equals(this.start)&&t.end.equals(this.end)}clone(){return new this.constructor().copy(this)}}function jn(r,t=0){let e=3735928559^t,s=1103547991^t;if(r instanceof Array)for(let n=0,i;n<r.length;n++)i=r[n],e=Math.imul(e^i,2654435761),s=Math.imul(s^i,1597334677);else for(let n=0,i;n<r.length;n++)i=r.charCodeAt(n),e=Math.imul(e^i,2654435761),s=Math.imul(s^i,1597334677);return e=Math.imul(e^e>>>16,2246822507),e^=Math.imul(s^s>>>13,3266489909),s=Math.imul(s^s>>>16,2246822507),s^=Math.imul(e^e>>>13,3266489909),4294967296*(2097151&s)+(e>>>0)}const Ta=(...r)=>jn(r);function Na(r,t=!1){const e=[];r.isNode===!0&&(e.push(r.id),r=r.getSelf());for(const{property:s,childNode:n}of Kn(r))e.push(e,jn(s.slice(0,-4)),n.getCacheKey(t));return jn(e)}function*Kn(r,t=!1){for(const e in r){if(e.startsWith("_")===!0)continue;const s=r[e];if(Array.isArray(s)===!0)for(let n=0;n<s.length;n++){const i=s[n];i&&(i.isNode===!0||t&&typeof i.toJSON=="function")&&(yield{property:e,index:n,childNode:i})}else if(s&&s.isNode===!0)yield{property:e,childNode:s};else if(typeof s=="object")for(const n in s){const i=s[n];i&&(i.isNode===!0||t&&typeof i.toJSON=="function")&&(yield{property:e,index:n,childNode:i})}}}function Hs(r){if(r==null)return null;const t=typeof r;return r.isNode===!0?"node":t==="number"?"float":t==="boolean"?"bool":t==="string"?"string":t==="function"?"shader":r.isVector2===!0?"vec2":r.isVector3===!0?"vec3":r.isVector4===!0?"vec4":r.isMatrix3===!0?"mat3":r.isMatrix4===!0?"mat4":r.isColor===!0?"color":r instanceof ArrayBuffer?"ArrayBuffer":null}function yr(r,...t){const e=r?r.slice(-4):void 0;return t.length===1&&(e==="vec2"?t=[t[0],t[0]]:e==="vec3"?t=[t[0],t[0],t[0]]:e==="vec4"&&(t=[t[0],t[0],t[0],t[0]])),r==="color"?new Gn(...t):e==="vec2"?new Z(...t):e==="vec3"?new M(...t):e==="vec4"?new Rt(...t):e==="mat3"?new Bt(...t):e==="mat4"?new Q(...t):r==="bool"?t[0]||!1:r==="float"||r==="int"||r==="uint"?t[0]||0:r==="string"?t[0]||"":r==="ArrayBuffer"?Aa(t[0]):null}function wa(r){let t="";const e=new Uint8Array(r);for(let s=0;s<e.length;s++)t+=String.fromCharCode(e[s]);return btoa(t)}function Aa(r){return Uint8Array.from(atob(r),t=>t.charCodeAt(0)).buffer}const gr={VERTEX:"vertex"},K={NONE:"none",FRAME:"frame",RENDER:"render",OBJECT:"object"},us=["x","y","z","w"];let Sa=0;class U extends ss{static get type(){return"Node"}constructor(t=null){super(),this.nodeType=t,this.updateType=K.NONE,this.updateBeforeType=K.NONE,this.updateAfterType=K.NONE,this.uuid=Zo.generateUUID(),this.version=0,this._cacheKey=null,this._cacheKeyVersion=0,this.global=!1,this.isNode=!0,Object.defineProperty(this,"id",{value:Sa++})}set needsUpdate(t){t===!0&&this.version++}get type(){return this.constructor.type}onUpdate(t,e){return this.updateType=e,this.update=t.bind(this.getSelf()),this}onFrameUpdate(t){return this.onUpdate(t,K.FRAME)}onRenderUpdate(t){return this.onUpdate(t,K.RENDER)}onObjectUpdate(t){return this.onUpdate(t,K.OBJECT)}onReference(t){return this.updateReference=t.bind(this.getSelf()),this}getSelf(){return this.self||this}updateReference(){return this}isGlobal(){return this.global}*getChildren(){for(const{childNode:t}of Kn(this))yield t}dispose(){this.dispatchEvent({type:"dispose"})}traverse(t){t(this);for(const e of this.getChildren())e.traverse(t)}getCacheKey(t=!1){return t=t||this.version!==this._cacheKeyVersion,(t===!0||this._cacheKey===null)&&(this._cacheKey=Na(this,t),this._cacheKeyVersion=this.version),this._cacheKey}getScope(){return this}getHash(){return this.uuid}getUpdateType(){return this.updateType}getUpdateBeforeType(){return this.updateBeforeType}getUpdateAfterType(){return this.updateAfterType}getElementType(t){const e=this.getNodeType(t);return t.getElementType(e)}getNodeType(t){const e=t.getNodeProperties(this);return e.outputNode?e.outputNode.getNodeType(t):this.nodeType}getShared(t){const e=this.getHash(t);return t.getNodeFromHash(e)||this}setup(t){const e=t.getNodeProperties(this);let s=0;for(const n of this.getChildren())e["node"+s++]=n;return null}analyze(t){if(t.increaseUsage(this)===1){const s=t.getNodeProperties(this);for(const n of Object.values(s))n&&n.isNode===!0&&n.build(t)}}generate(t,e){const{outputNode:s}=t.getNodeProperties(this);if(s&&s.isNode===!0)return s.build(t,e)}updateBefore(){console.warn("Abstract function.")}updateAfter(){console.warn("Abstract function.")}update(){console.warn("Abstract function.")}build(t,e=null){const s=this.getShared(t);if(this!==s)return s.build(t,e);t.addNode(this),t.addChain(this);let n=null;const i=t.getBuildStage();if(i==="setup"){this.updateReference(t);const o=t.getNodeProperties(this);if(o.initialized!==!0){const a=t.stack.nodes.length;o.initialized=!0,o.outputNode=this.setup(t),o.outputNode!==null&&t.stack.nodes.length;for(const c of Object.values(o))c&&c.isNode===!0&&c.build(t)}}else if(i==="analyze")this.analyze(t);else if(i==="generate")if(this.generate.length===1){const a=this.getNodeType(t),c=t.getDataFromNode(this);n=c.snippet,n===void 0?(n=this.generate(t)||"",c.snippet=n):c.flowCodes!==void 0&&t.context.nodeBlock!==void 0&&t.addFlowCodeHierarchy(this,t.context.nodeBlock),n=t.format(n,a,e)}else n=this.generate(t,e)||"";return t.removeChain(this),n}getSerializeChildren(){return Kn(this)}serialize(t){const e=this.getSerializeChildren(),s={};for(const{property:n,index:i,childNode:o}of e)i!==void 0?(s[n]===void 0&&(s[n]=Number.isInteger(i)?[]:{}),s[n][i]=o.toJSON(t.meta).uuid):s[n]=o.toJSON(t.meta).uuid;Object.keys(s).length>0&&(t.inputNodes=s)}deserialize(t){if(t.inputNodes!==void 0){const e=t.meta.nodes;for(const s in t.inputNodes)if(Array.isArray(t.inputNodes[s])){const n=[];for(const i of t.inputNodes[s])n.push(e[i]);this[s]=n}else if(typeof t.inputNodes[s]=="object"){const n={};for(const i in t.inputNodes[s]){const o=t.inputNodes[s][i];n[i]=e[o]}this[s]=n}else{const n=t.inputNodes[s];this[s]=e[n]}}}toJSON(t){const{uuid:e,type:s}=this,n=t===void 0||typeof t=="string";n&&(t={textures:{},images:{},nodes:{}});let i=t.nodes[e];i===void 0&&(i={uuid:e,type:s,meta:t,metadata:{version:4.6,type:"Node",generator:"Node.toJSON"}},n!==!0&&(t.nodes[i.uuid]=i),this.serialize(i),delete i.meta);function o(a){const c=[];for(const u in a){const h=a[u];delete h.metadata,c.push(h)}return c}if(n){const a=o(t.textures),c=o(t.images),u=o(t.nodes);a.length>0&&(i.textures=a),c.length>0&&(i.images=c),u.length>0&&(i.nodes=u)}return i}}class ls extends U{static get type(){return"ArrayElementNode"}constructor(t,e){super(),this.node=t,this.indexNode=e,this.isArrayElementNode=!0}getNodeType(t){return this.node.getElementType(t)}generate(t){const e=this.node.build(t),s=this.indexNode.build(t,"uint");return`${e}[ ${s} ]`}}class xr extends U{static get type(){return"ConvertNode"}constructor(t,e){super(),this.node=t,this.convertTo=e}getNodeType(t){const e=this.node.getNodeType(t);let s=null;for(const n of this.convertTo.split("|"))(s===null||t.getTypeLength(e)===t.getTypeLength(n))&&(s=n);return s}serialize(t){super.serialize(t),t.convertTo=this.convertTo}deserialize(t){super.deserialize(t),this.convertTo=t.convertTo}generate(t,e){const s=this.node,n=this.getNodeType(t),i=s.build(t,n);return t.format(i,n,e)}}class Tt extends U{static get type(){return"TempNode"}constructor(t){super(t),this.isTempNode=!0}hasDependencies(t){return t.getDataFromNode(this).usageCount>1}build(t,e){if(t.getBuildStage()==="generate"){const n=t.getVectorType(this.getNodeType(t,e)),i=t.getDataFromNode(this);if(i.propertyName!==void 0)return t.format(i.propertyName,n,e);if(n!=="void"&&e!=="void"&&this.hasDependencies(t)){const o=super.build(t,n),a=t.getVarFromNode(this,null,n),c=t.getPropertyName(a);return t.addLineFlowCode(`${c} = ${o}`,this),i.snippet=o,i.propertyName=c,t.format(i.propertyName,n,e)}}return super.build(t,e)}}class Ma extends Tt{static get type(){return"JoinNode"}constructor(t=[],e=null){super(e),this.nodes=t}getNodeType(t){return this.nodeType!==null?t.getVectorType(this.nodeType):t.getTypeFromLength(this.nodes.reduce((e,s)=>e+t.getTypeLength(s.getNodeType(t)),0))}generate(t,e){const s=this.getNodeType(t),n=this.nodes,i=t.getComponentType(s),o=[];for(const c of n){let u=c.build(t);const h=t.getComponentType(c.getNodeType(t));h!==i&&(u=t.format(u,h,i)),o.push(u)}const a=`${t.getType(s)}( ${o.join(", ")} )`;return t.format(a,s,e)}}const _a=us.join("");class Tr extends U{static get type(){return"SplitNode"}constructor(t,e="x"){super(),this.node=t,this.components=e,this.isSplitNode=!0}getVectorLength(){let t=this.components.length;for(const e of this.components)t=Math.max(us.indexOf(e)+1,t);return t}getComponentType(t){return t.getComponentType(this.node.getNodeType(t))}getNodeType(t){return t.getTypeFromLength(this.components.length,this.getComponentType(t))}generate(t,e){const s=this.node,n=t.getTypeLength(s.getNodeType(t));let i=null;if(n>1){let o=null;this.getVectorLength()>=n&&(o=t.getTypeFromLength(this.getVectorLength(),this.getComponentType(t)));const c=s.build(t,o);this.components.length===n&&this.components===_a.slice(0,this.components.length)?i=t.format(c,o,e):i=t.format(`${c}.${this.components}`,this.getNodeType(t),e)}else i=s.build(t,e);return i}serialize(t){super.serialize(t),t.components=this.components}deserialize(t){super.deserialize(t),this.components=t.components}}class za extends Tt{static get type(){return"SetNode"}constructor(t,e,s){super(),this.sourceNode=t,this.components=e,this.targetNode=s}getNodeType(t){return this.sourceNode.getNodeType(t)}generate(t){const{sourceNode:e,components:s,targetNode:n}=this,i=this.getNodeType(t),o=t.getTypeFromLength(s.length,n.getNodeType(t)),a=n.build(t,o),c=e.build(t,i),u=t.getTypeLength(i),h=[];for(let l=0;l<u;l++){const d=us[l];d===s[0]?(h.push(a),l+=s.length-1):h.push(c+"."+d)}return`${t.getType(i)}( ${h.join(", ")} )`}}class ba extends Tt{static get type(){return"FlipNode"}constructor(t,e){super(),this.sourceNode=t,this.components=e}getNodeType(t){return this.sourceNode.getNodeType(t)}generate(t){const{components:e,sourceNode:s}=this,n=this.getNodeType(t),i=s.build(t),o=t.getVarFromNode(this),a=t.getPropertyName(o);t.addLineFlowCode(a+" = "+i,this);const c=t.getTypeLength(n),u=[];let h=0;for(let l=0;l<c;l++){const d=us[l];d===e[h]?(u.push("1.0 - "+(a+"."+d)),h++):u.push(a+"."+d)}return`${t.getType(n)}( ${u.join(", ")} )`}}class ti extends U{static get type(){return"InputNode"}constructor(t,e=null){super(e),this.isInputNode=!0,this.value=t,this.precision=null}getNodeType(){return this.nodeType===null?Hs(this.value):this.nodeType}getInputType(t){return this.getNodeType(t)}setPrecision(t){return this.precision=t,this}serialize(t){super.serialize(t),t.value=this.value,this.value&&this.value.toArray&&(t.value=this.value.toArray()),t.valueType=Hs(this.value),t.nodeType=this.nodeType,t.valueType==="ArrayBuffer"&&(t.value=wa(t.value)),t.precision=this.precision}deserialize(t){super.deserialize(t),this.nodeType=t.nodeType,this.value=Array.isArray(t.value)?yr(t.valueType,...t.value):t.value,this.precision=t.precision||null,this.value&&this.value.fromArray&&(this.value=this.value.fromArray(t.value))}generate(){console.warn("Abstract function.")}}class Qt extends ti{static get type(){return"ConstNode"}constructor(t,e=null){super(t,e),this.isConstNode=!0}generateConst(t){return t.generateConst(this.getNodeType(t),this.value)}generate(t,e){const s=this.getNodeType(t);return t.format(this.generateConst(t),s,e)}}let Nr=null;const Oe=new Map;function F(r,t){if(Oe.has(r)){console.warn(`Redefinition of method chaining ${r}`);return}if(typeof t!="function")throw new Error(`Node element ${r} is not a function`);Oe.set(r,t)}const wr=r=>r.replace(/r|s/g,"x").replace(/g|t/g,"y").replace(/b|p/g,"z").replace(/a|q/g,"w"),Ar=r=>wr(r).split("").sort().join(""),Sr={setup(r,t){const e=t.shift();return r(Gs(e),...t)},get(r,t,e){if(typeof t=="string"&&r[t]===void 0){if(r.isStackNode!==!0&&t==="assign")return(...s)=>(Nr.assign(e,...s),e);if(Oe.has(t)){const s=Oe.get(t);return r.isStackNode?(...n)=>e.add(s(...n)):(...n)=>s(e,...n)}else{if(t==="self")return r;if(t.endsWith("Assign")&&Oe.has(t.slice(0,t.length-6))){const s=Oe.get(t.slice(0,t.length-6));return r.isStackNode?(...n)=>e.assign(n[0],s(...n)):(...n)=>e.assign(s(e,...n))}else{if(/^[xyzwrgbastpq]{1,4}$/.test(t)===!0)return t=wr(t),v(new Tr(e,t));if(/^set[XYZWRGBASTPQ]{1,4}$/.test(t)===!0)return t=Ar(t.slice(3).toLowerCase()),s=>v(new za(r,t,s));if(/^flip[XYZWRGBASTPQ]{1,4}$/.test(t)===!0)return t=Ar(t.slice(4).toLowerCase()),()=>v(new ba(v(r),t));if(t==="width"||t==="height"||t==="depth")return t==="width"?t="x":t==="height"?t="y":t==="depth"&&(t="z"),v(new Tr(r,t));if(/^\d+$/.test(t)===!0)return v(new ls(e,new Qt(Number(t),"uint")))}}}return Reflect.get(r,t,e)},set(r,t,e,s){return typeof t=="string"&&r[t]===void 0&&(/^[xyzwrgbastpq]{1,4}$/.test(t)===!0||t==="width"||t==="height"||t==="depth"||/^\d+$/.test(t)===!0)?(s[t].assign(e),!0):Reflect.set(r,t,e,s)}},ei=new WeakMap,Mr=new WeakMap,Ea=function(r,t=null){const e=Hs(r);if(e==="node"){let s=ei.get(r);return s===void 0&&(s=new Proxy(r,Sr),ei.set(r,s),ei.set(s,s)),s}else{if(t===null&&(e==="float"||e==="boolean")||e&&e!=="shader"&&e!=="string")return v(ri(r,t));if(e==="shader")return et(r)}return r},Ca=function(r,t=null){for(const e in r)r[e]=v(r[e],t);return r},Fa=function(r,t=null){const e=r.length;for(let s=0;s<e;s++)r[s]=v(r[s],t);return r},Ba=function(r,t=null,e=null,s=null){const n=i=>v(s!==null?Object.assign(i,s):i);return t===null?(...i)=>n(new r(...De(i))):e!==null?(e=v(e),(...i)=>n(new r(t,...De(i),e))):(...i)=>n(new r(t,...De(i)))},Ra=function(r,...t){return v(new r(...De(t)))};class Ia extends U{constructor(t,e){super(),this.shaderNode=t,this.inputNodes=e}getNodeType(t){return this.shaderNode.nodeType||this.getOutputNode(t).getNodeType(t)}call(t){const{shaderNode:e,inputNodes:s}=this,n=t.getNodeProperties(e);if(n.onceOutput)return n.onceOutput;let i=null;if(e.layout){let o=Mr.get(t.constructor);o===void 0&&(o=new WeakMap,Mr.set(t.constructor,o));let a=o.get(e);a===void 0&&(a=v(t.buildFunctionNode(e)),o.set(e,a)),t.currentFunctionNode!==null&&t.currentFunctionNode.includes.push(a),i=v(a.call(s))}else{const o=e.jsFunc,a=s!==null?o(s,t):o(t);i=v(a)}return e.once&&(n.onceOutput=i),i}getOutputNode(t){const e=t.getNodeProperties(this);return e.outputNode===null&&(e.outputNode=this.setupOutput(t)),e.outputNode}setup(t){return this.getOutputNode(t)}setupOutput(t){return t.addStack(),t.stack.outputNode=this.call(t),t.removeStack()}generate(t,e){return this.getOutputNode(t).build(t,e)}}class Pa extends U{constructor(t,e){super(e),this.jsFunc=t,this.layout=null,this.global=!0,this.once=!1}setLayout(t){return this.layout=t,this}call(t=null){return Gs(t),v(new Ia(this,t))}setup(){return this.call()}}const va=[!1,!0],La=[0,1,2,3],Oa=[-1,-2],_r=[.5,1.5,1/3,1e-6,1e6,Math.PI,Math.PI*2,1/Math.PI,2/Math.PI,1/(Math.PI*2),Math.PI/2],si=new Map;for(const r of va)si.set(r,new Qt(r));const ni=new Map;for(const r of La)ni.set(r,new Qt(r,"uint"));const ii=new Map([...ni].map(r=>new Qt(r.value,"int")));for(const r of Oa)ii.set(r,new Qt(r,"int"));const Ws=new Map([...ii].map(r=>new Qt(r.value)));for(const r of _r)Ws.set(r,new Qt(r));for(const r of _r)Ws.set(-r,new Qt(-r));const $s={bool:si,uint:ni,ints:ii,float:Ws},zr=new Map([...si,...Ws]),ri=(r,t)=>zr.has(r)?zr.get(r):r.isNode===!0?r:new Qt(r,t),Da=r=>{try{return r.getNodeType()}catch{return}},tt=function(r,t=null){return(...e)=>{if((e.length===0||!["bool","float","int","uint"].includes(r)&&e.every(n=>typeof n!="object"))&&(e=[yr(r,...e)]),e.length===1&&t!==null&&t.has(e[0]))return v(t.get(e[0]));if(e.length===1){const n=ri(e[0],r);return Da(n)===r?v(n):v(new xr(n,r))}const s=e.map(n=>ri(n));return v(new Ma(s,r))}},Va=r=>r!=null?r.nodeType||r.convertTo||(typeof r=="string"?r:null):null;function Ua(r,t){return new Proxy(new Pa(r,t),Sr)}const v=(r,t=null)=>Ea(r,t),Gs=(r,t=null)=>new Ca(r,t),De=(r,t=null)=>new Fa(r,t),R=(...r)=>new Ba(...r),O=(...r)=>new Ra(...r),et=(r,t)=>{const e=new Ua(r,t),s=(...n)=>{let i;return Gs(n),n[0]&&n[0].isNode?i=[...n]:i=n[0],e.call(i)};return s.shaderNode=e,s.setLayout=n=>(e.setLayout(n),s),s.once=()=>(e.once=!0,s),s};F("toGlobal",r=>(r.global=!0,r));const oi=(...r)=>Nr.If(...r);function ka(r){return r}F("append",ka);const qa=new tt("color"),H=new tt("float",$s.float),Ve=new tt("int",$s.ints),Ha=new tt("uint",$s.uint),Wa=new tt("bool",$s.bool),V=new tt("vec2"),$a=new tt("ivec2"),Ga=new tt("uvec2"),Xa=new tt("bvec2"),k=new tt("vec3"),Ya=new tt("ivec3"),Za=new tt("uvec3"),Ja=new tt("bvec3"),Ue=new tt("vec4"),Qa=new tt("ivec4"),ja=new tt("uvec4"),Ka=new tt("bvec4"),br=new tt("mat2"),Xs=new tt("mat3"),tc=new tt("mat4");F("toColor",qa),F("toFloat",H),F("toInt",Ve),F("toUint",Ha),F("toBool",Wa),F("toVec2",V),F("toIVec2",$a),F("toUVec2",Ga),F("toBVec2",Xa),F("toVec3",k),F("toIVec3",Ya),F("toUVec3",Za),F("toBVec3",Ja),F("toVec4",Ue),F("toIVec4",Qa),F("toUVec4",ja),F("toBVec4",Ka),F("toMat2",br),F("toMat3",Xs),F("toMat4",tc);const ec=R(ls),sc=(r,t)=>v(new xr(v(r),t));F("element",ec),F("convert",sc);class Er extends U{static get type(){return"UniformGroupNode"}constructor(t,e=!1,s=1){super("string"),this.name=t,this.version=0,this.shared=e,this.order=s,this.isUniformGroup=!0}set needsUpdate(t){t===!0&&this.version++}serialize(t){super.serialize(t),t.name=this.name,t.version=this.version,t.shared=this.shared}deserialize(t){super.deserialize(t),this.name=t.name,this.version=t.version,this.shared=t.shared}}const nc=r=>new Er(r),xe=((r,t=0)=>new Er(r,!0,t))("render"),ic=nc("object");class ke extends ti{static get type(){return"UniformNode"}constructor(t,e=null){super(t,e),this.isUniformNode=!0,this.name="",this.groupNode=ic}label(t){return this.name=t,this}setGroup(t){return this.groupNode=t,this}getGroup(){return this.groupNode}getUniformHash(t){return this.getHash(t)}onUpdate(t,e){const s=this.getSelf();return t=t.bind(s),super.onUpdate(n=>{const i=t(n,s);i!==void 0&&(this.value=i)},e)}generate(t,e){const s=this.getNodeType(t),n=this.getUniformHash(t);let i=t.getNodeFromHash(n);i===void 0&&(t.setHashNode(this,n),i=this);const o=i.getInputType(t),a=t.getUniformFromNode(i,o,t.shaderStage,this.name||t.context.label),c=t.getPropertyName(a);return t.context.label!==void 0&&delete t.context.label,t.format(c,s,e)}}const Mt=(r,t)=>{const e=Va(t||r),s=r&&r.isNode===!0?r.node&&r.node.value||r.value:r;return v(new ke(s,e))};class Cr extends U{static get type(){return"PropertyNode"}constructor(t,e=null,s=!1){super(t),this.name=e,this.varying=s,this.isPropertyNode=!0}getHash(t){return this.name||super.getHash(t)}isGlobal(){return!0}generate(t){let e;return this.varying===!0?(e=t.getVaryingFromNode(this,this.name),e.needsInterpolation=!0):e=t.getVarFromNode(this,this.name),t.getPropertyName(e)}}const qe=(r,t)=>v(new Cr(r,t)),Fr=O(Cr,"vec4","DiffuseColor");class rc extends Tt{static get type(){return"AssignNode"}constructor(t,e){super(),this.targetNode=t,this.sourceNode=e}hasDependencies(){return!1}getNodeType(t,e){return e!=="void"?this.targetNode.getNodeType(t):"void"}needsSplitAssign(t){const{targetNode:e}=this;if(t.isAvailable("swizzleAssign")===!1&&e.isSplitNode&&e.components.length>1){const s=t.getTypeLength(e.node.getNodeType(t));return us.join("").slice(0,s)!==e.components}return!1}generate(t,e){const{targetNode:s,sourceNode:n}=this,i=this.needsSplitAssign(t),o=s.getNodeType(t),a=s.context({assign:!0}).build(t),c=n.build(t,o),u=n.getNodeType(t),h=t.getDataFromNode(this);let l;if(h.initialized===!0)e!=="void"&&(l=a);else if(i){const d=t.getVarFromNode(this,null,o),f=t.getPropertyName(d);t.addLineFlowCode(`${f} = ${c}`,this);const p=s.node.context({assign:!0}).build(t);for(let m=0;m<s.components.length;m++){const x=s.components[m];t.addLineFlowCode(`${p}.${x} = ${f}[ ${m} ]`,this)}e!=="void"&&(l=a)}else l=`${a} = ${c}`,(e==="void"||u==="void")&&(t.addLineFlowCode(l,this),e!=="void"&&(l=a));return h.initialized=!0,t.format(l,o,e)}}F("assign",R(rc));class oc extends Tt{static get type(){return"FunctionCallNode"}constructor(t=null,e={}){super(),this.functionNode=t,this.parameters=e}setParameters(t){return this.parameters=t,this}getParameters(){return this.parameters}getNodeType(t){return this.functionNode.getNodeType(t)}generate(t){const e=[],s=this.functionNode,n=s.getInputs(t),i=this.parameters;if(Array.isArray(i))for(let a=0;a<i.length;a++){const c=n[a],u=i[a];e.push(u.build(t,c.type))}else for(const a of n){const c=i[a.name];if(c!==void 0)e.push(c.build(t,a.type));else throw new Error(`FunctionCallNode: Input '${a.name}' not found in FunctionNode.`)}return`${s.build(t,"property")}( ${e.join(", ")} )`}}F("call",(r,...t)=>(t=t.length>1||t[0]&&t[0].isNode===!0?De(t):Gs(t[0]),v(new oc(v(r),t))));class Y extends Tt{static get type(){return"OperatorNode"}constructor(t,e,s,...n){if(super(),n.length>0){let i=new Y(t,e,s);for(let o=0;o<n.length-1;o++)i=new Y(t,i,n[o]);e=i,s=n[n.length-1]}this.op=t,this.aNode=e,this.bNode=s}getNodeType(t,e){const s=this.op,n=this.aNode,i=this.bNode,o=n.getNodeType(t),a=typeof i<"u"?i.getNodeType(t):null;if(o==="void"||a==="void")return"void";if(s==="%")return o;if(s==="~"||s==="&"||s==="|"||s==="^"||s===">>"||s==="<<")return t.getIntegerType(o);if(s==="!"||s==="=="||s==="&&"||s==="||"||s==="^^")return"bool";if(s==="<"||s===">"||s==="<="||s===">="){const c=e?t.getTypeLength(e):Math.max(t.getTypeLength(o),t.getTypeLength(a));return c>1?`bvec${c}`:"bool"}else return o==="float"&&t.isMatrix(a)?a:t.isMatrix(o)&&t.isVector(a)?t.getVectorFromMatrix(o):t.isVector(o)&&t.isMatrix(a)?t.getVectorFromMatrix(a):t.getTypeLength(a)>t.getTypeLength(o)?a:o}generate(t,e){const s=this.op,n=this.aNode,i=this.bNode,o=this.getNodeType(t,e);let a=null,c=null;o!=="void"?(a=n.getNodeType(t),c=typeof i<"u"?i.getNodeType(t):null,s==="<"||s===">"||s==="<="||s===">="||s==="=="?t.isVector(a)?c=a:a!==c&&(a=c="float"):s===">>"||s==="<<"?(a=o,c=t.changeComponentType(c,"uint")):t.isMatrix(a)&&t.isVector(c)?c=t.getVectorFromMatrix(a):t.isVector(a)&&t.isMatrix(c)?a=t.getVectorFromMatrix(c):a=c=o):a=c=o;const u=n.build(t,a),h=typeof i<"u"?i.build(t,c):null,l=t.getTypeLength(e),d=t.getFunctionOperator(s);if(e!=="void")return s==="<"&&l>1?t.useComparisonMethod?t.format(`${t.getMethod("lessThan",e)}( ${u}, ${h} )`,o,e):t.format(`( ${u} < ${h} )`,o,e):s==="<="&&l>1?t.useComparisonMethod?t.format(`${t.getMethod("lessThanEqual",e)}( ${u}, ${h} )`,o,e):t.format(`( ${u} <= ${h} )`,o,e):s===">"&&l>1?t.useComparisonMethod?t.format(`${t.getMethod("greaterThan",e)}( ${u}, ${h} )`,o,e):t.format(`( ${u} > ${h} )`,o,e):s===">="&&l>1?t.useComparisonMethod?t.format(`${t.getMethod("greaterThanEqual",e)}( ${u}, ${h} )`,o,e):t.format(`( ${u} >= ${h} )`,o,e):s==="!"||s==="~"?t.format(`(${s}${u})`,a,e):d?t.format(`${d}( ${u}, ${h} )`,o,e):t.format(`( ${u} ${s} ${h} )`,o,e);if(a!=="void")return d?t.format(`${d}( ${u}, ${h} )`,o,e):t.format(`${u} ${s} ${h}`,o,e)}serialize(t){super.serialize(t),t.op=this.op}deserialize(t){super.deserialize(t),this.op=t.op}}const Te=R(Y,"+"),Ys=R(Y,"-"),Zs=R(Y,"*"),Br=R(Y,"/"),Rr=R(Y,"%"),ac=R(Y,"=="),cc=R(Y,"!="),hc=R(Y,"<"),uc=R(Y,">"),lc=R(Y,"<="),dc=R(Y,">="),fc=R(Y,"&&"),pc=R(Y,"||"),mc=R(Y,"!"),yc=R(Y,"^^"),gc=R(Y,"&"),xc=R(Y,"~"),Tc=R(Y,"|"),Nc=R(Y,"^"),wc=R(Y,"<<"),Ac=R(Y,">>");F("add",Te),F("sub",Ys),F("mul",Zs),F("div",Br),F("modInt",Rr),F("equal",ac),F("notEqual",cc),F("lessThan",hc),F("greaterThan",uc),F("lessThanEqual",lc),F("greaterThanEqual",dc),F("and",fc),F("or",pc),F("not",mc),F("xor",yc),F("bitAnd",gc),F("bitNot",xc),F("bitOr",Tc),F("bitXor",Nc),F("shiftLeft",wc),F("shiftRight",Ac),F("remainder",(...r)=>(console.warn("TSL.OperatorNode: .remainder() has been renamed to .modInt()."),Rr(...r)));class A extends Tt{static get type(){return"MathNode"}constructor(t,e,s=null,n=null){super(),this.method=t,this.aNode=e,this.bNode=s,this.cNode=n}getInputType(t){const e=this.aNode.getNodeType(t),s=this.bNode?this.bNode.getNodeType(t):null,n=this.cNode?this.cNode.getNodeType(t):null,i=t.isMatrix(e)?0:t.getTypeLength(e),o=t.isMatrix(s)?0:t.getTypeLength(s),a=t.isMatrix(n)?0:t.getTypeLength(n);return i>o&&i>a?e:o>a?s:a>i?n:e}getNodeType(t){const e=this.method;return e===A.LENGTH||e===A.DISTANCE||e===A.DOT?"float":e===A.CROSS?"vec3":e===A.ALL?"bool":e===A.EQUALS?t.changeComponentType(this.aNode.getNodeType(t),"bool"):e===A.MOD?this.aNode.getNodeType(t):this.getInputType(t)}generate(t,e){const s=this.method,n=this.getNodeType(t),i=this.getInputType(t),o=this.aNode,a=this.bNode,c=this.cNode,u=t.renderer.isWebGLRenderer===!0;if(s===A.TRANSFORM_DIRECTION){let h=o,l=a;t.isMatrix(h.getNodeType(t))?l=Ue(k(l),0):h=Ue(k(h),0);const d=Zs(h,l).xyz;return Ir(d).build(t,e)}else{if(s===A.NEGATE)return t.format("( - "+o.build(t,i)+" )",n,e);if(s===A.ONE_MINUS)return Ys(1,o).build(t,e);if(s===A.RECIPROCAL)return Br(1,o).build(t,e);if(s===A.DIFFERENCE)return hi(Ys(o,a)).build(t,e);{const h=[];return s===A.CROSS||s===A.MOD?h.push(o.build(t,n),a.build(t,n)):u&&s===A.STEP?h.push(o.build(t,t.getTypeLength(o.getNodeType(t))===1?"float":i),a.build(t,i)):u&&(s===A.MIN||s===A.MAX)||s===A.MOD?h.push(o.build(t,i),a.build(t,t.getTypeLength(a.getNodeType(t))===1?"float":i)):s===A.REFRACT?h.push(o.build(t,i),a.build(t,i),c.build(t,"float")):s===A.MIX?h.push(o.build(t,i),a.build(t,i),c.build(t,t.getTypeLength(c.getNodeType(t))===1?"float":i)):(h.push(o.build(t,i)),a!==null&&h.push(a.build(t,i)),c!==null&&h.push(c.build(t,i))),t.format(`${t.getMethod(s,n)}( ${h.join(", ")} )`,n,e)}}}serialize(t){super.serialize(t),t.method=this.method}deserialize(t){super.deserialize(t),this.method=t.method}}A.ALL="all",A.ANY="any",A.EQUALS="equals",A.RADIANS="radians",A.DEGREES="degrees",A.EXP="exp",A.EXP2="exp2",A.LOG="log",A.LOG2="log2",A.SQRT="sqrt",A.INVERSE_SQRT="inversesqrt",A.FLOOR="floor",A.CEIL="ceil",A.NORMALIZE="normalize",A.FRACT="fract",A.SIN="sin",A.COS="cos",A.TAN="tan",A.ASIN="asin",A.ACOS="acos",A.ATAN="atan",A.ABS="abs",A.SIGN="sign",A.LENGTH="length",A.NEGATE="negate",A.ONE_MINUS="oneMinus",A.DFDX="dFdx",A.DFDY="dFdy",A.ROUND="round",A.RECIPROCAL="reciprocal",A.TRUNC="trunc",A.FWIDTH="fwidth",A.BITCAST="bitcast",A.TRANSPOSE="transpose",A.ATAN2="atan2",A.MIN="min",A.MAX="max",A.MOD="mod",A.STEP="step",A.REFLECT="reflect",A.DISTANCE="distance",A.DIFFERENCE="difference",A.DOT="dot",A.CROSS="cross",A.POW="pow",A.TRANSFORM_DIRECTION="transformDirection",A.MIX="mix",A.CLAMP="clamp",A.REFRACT="refract",A.SMOOTHSTEP="smoothstep",A.FACEFORWARD="faceforward";const Sc=H(Math.PI),Mc=R(A,A.ALL),_c=R(A,A.ANY),zc=R(A,A.EQUALS),bc=R(A,A.RADIANS),Ec=R(A,A.DEGREES),Cc=R(A,A.EXP),Fc=R(A,A.EXP2),Bc=R(A,A.LOG),Rc=R(A,A.LOG2),ai=R(A,A.SQRT),Ic=R(A,A.INVERSE_SQRT),Pc=R(A,A.FLOOR),vc=R(A,A.CEIL),Ir=R(A,A.NORMALIZE),ci=R(A,A.FRACT),Pr=R(A,A.SIN),Lc=R(A,A.COS),Oc=R(A,A.TAN),Dc=R(A,A.ASIN),Vc=R(A,A.ACOS),Uc=R(A,A.ATAN),hi=R(A,A.ABS),vr=R(A,A.SIGN),kc=R(A,A.LENGTH),qc=R(A,A.NEGATE),Hc=R(A,A.ONE_MINUS),Wc=R(A,A.DFDX),$c=R(A,A.DFDY),Gc=R(A,A.ROUND),Xc=R(A,A.RECIPROCAL),Yc=R(A,A.TRUNC),Zc=R(A,A.FWIDTH);A.BITCAST;const Jc=R(A,A.TRANSPOSE),Qc=R(A,A.ATAN2),jc=R(A,A.MIN),ui=R(A,A.MAX),Lr=R(A,A.MOD),Or=R(A,A.STEP),Kc=R(A,A.REFLECT),th=R(A,A.DISTANCE),eh=R(A,A.DIFFERENCE),li=R(A,A.DOT),sh=R(A,A.CROSS),Dr=R(A,A.POW),nh=R(A,A.POW,2),ih=R(A,A.POW,3),rh=R(A,A.POW,4),oh=R(A,A.TRANSFORM_DIRECTION),ah=r=>Zs(vr(r),Dr(hi(r),1/3)),ch=r=>li(r,r),he=R(A,A.MIX),Js=(r,t=0,e=1)=>v(new A(A.CLAMP,v(r),v(t),v(e))),hh=r=>Js(r),uh=R(A,A.REFRACT),di=R(A,A.SMOOTHSTEP),lh=R(A,A.FACEFORWARD),dh=et(([r])=>{const s=43758.5453,n=li(r.xy,V(12.9898,78.233)),i=Lr(n,Sc);return ci(Pr(i).mul(s))}),fh=(r,t,e)=>he(t,e,r),ph=(r,t,e)=>di(t,e,r);F("all",Mc),F("any",_c),F("equals",zc),F("radians",bc),F("degrees",Ec),F("exp",Cc),F("exp2",Fc),F("log",Bc),F("log2",Rc),F("sqrt",ai),F("inverseSqrt",Ic),F("floor",Pc),F("ceil",vc),F("normalize",Ir),F("fract",ci),F("sin",Pr),F("cos",Lc),F("tan",Oc),F("asin",Dc),F("acos",Vc),F("atan",Uc),F("abs",hi),F("sign",vr),F("length",kc),F("lengthSq",ch),F("negate",qc),F("oneMinus",Hc),F("dFdx",Wc),F("dFdy",$c),F("round",Gc),F("reciprocal",Xc),F("trunc",Yc),F("fwidth",Zc),F("atan2",Qc),F("min",jc),F("max",ui),F("mod",Lr),F("step",Or),F("reflect",Kc),F("distance",th),F("dot",li),F("cross",sh),F("pow",Dr),F("pow2",nh),F("pow3",ih),F("pow4",rh),F("transformDirection",oh),F("mix",fh),F("clamp",Js),F("refract",uh),F("smoothstep",ph),F("faceForward",lh),F("difference",eh),F("saturate",hh),F("cbrt",ah),F("transpose",Jc),F("rand",dh);class mh extends U{static get type(){return"ConditionalNode"}constructor(t,e,s=null){super(),this.condNode=t,this.ifNode=e,this.elseNode=s}getNodeType(t){const e=this.ifNode.getNodeType(t);if(this.elseNode!==null){const s=this.elseNode.getNodeType(t);if(t.getTypeLength(s)>t.getTypeLength(e))return s}return e}setup(t){const e=this.condNode.cache(),s=this.ifNode.cache(),n=this.elseNode?this.elseNode.cache():null,i=t.context.nodeBlock;t.getDataFromNode(s).parentNodeBlock=i,n!==null&&(t.getDataFromNode(n).parentNodeBlock=i);const o=t.getNodeProperties(this);o.condNode=e,o.ifNode=s.context({nodeBlock:s}),o.elseNode=n?n.context({nodeBlock:n}):null}generate(t,e){const s=this.getNodeType(t),n=t.getDataFromNode(this);if(n.nodeProperty!==void 0)return n.nodeProperty;const{condNode:i,ifNode:o,elseNode:a}=t.getNodeProperties(this),c=e!=="void",u=c?qe(s).build(t):"";n.nodeProperty=u;const h=i.build(t,"bool");t.addFlowCode(`
2
+ ${t.tab}if ( ${h} ) {
3
+
4
+ `).addFlowTab();let l=o.build(t,s);if(l&&(c?l=u+" = "+l+";":l="return "+l+";"),t.removeFlowTab().addFlowCode(t.tab+" "+l+`
5
+
6
+ `+t.tab+"}"),a!==null){t.addFlowCode(` else {
7
+
8
+ `).addFlowTab();let d=a.build(t,s);d&&(c?d=u+" = "+d+";":d="return "+d+";"),t.removeFlowTab().addFlowCode(t.tab+" "+d+`
9
+
10
+ `+t.tab+`}
11
+
12
+ `)}else t.addFlowCode(`
13
+
14
+ `);return t.format(u,s,e)}}const fi=R(mh);F("select",fi),F("cond",(...r)=>(console.warn("TSL.ConditionalNode: cond() has been renamed to select()."),fi(...r)));class yh extends U{static get type(){return"ContextNode"}constructor(t,e={}){super(),this.isContextNode=!0,this.node=t,this.value=e}getScope(){return this.node.getScope()}getNodeType(t){return this.node.getNodeType(t)}analyze(t){this.node.build(t)}setup(t){const e=t.getContext();t.setContext({...t.context,...this.value});const s=this.node.build(t);return t.setContext(e),s}generate(t,e){const s=t.getContext();t.setContext({...t.context,...this.value});const n=this.node.build(t,e);return t.setContext(s),n}}const Vr=R(yh),gh=(r,t)=>Vr(r,{label:t});F("context",Vr),F("label",gh);class xh extends U{static get type(){return"VarNode"}constructor(t,e=null){super(),this.node=t,this.name=e,this.global=!0,this.isVarNode=!0}getHash(t){return this.name||super.getHash(t)}getNodeType(t){return this.node.getNodeType(t)}generate(t){const{node:e,name:s}=this,n=t.getVarFromNode(this,s,t.getVectorType(this.getNodeType(t))),i=t.getPropertyName(n),o=e.build(t,n.type);return t.addLineFlowCode(`${i} = ${o}`,this),i}}const Ur=R(xh);F("temp",Ur),F("toVar",(...r)=>Ur(...r).append());class Th extends U{static get type(){return"VaryingNode"}constructor(t,e=null){super(),this.node=t,this.name=e,this.isVaryingNode=!0}isGlobal(){return!0}getHash(t){return this.name||super.getHash(t)}getNodeType(t){return this.node.getNodeType(t)}setupVarying(t){const e=t.getNodeProperties(this);let s=e.varying;if(s===void 0){const n=this.name,i=this.getNodeType(t);e.varying=s=t.getVaryingFromNode(this,n,i),e.node=this.node}return s.needsInterpolation||(s.needsInterpolation=t.shaderStage==="fragment"),s}setup(t){this.setupVarying(t)}analyze(t){return this.setupVarying(t),this.node.analyze(t)}generate(t){const e=t.getNodeProperties(this),s=this.setupVarying(t);if(e.propertyName===void 0){const n=this.getNodeType(t),i=t.getPropertyName(s,gr.VERTEX);t.flowNodeFromShaderStage(gr.VERTEX,this.node,n,i),e.propertyName=i}return t.getPropertyName(s)}}const He=R(Th);F("varying",He);const ds="WorkingColorSpace",pi="OutputColorSpace";function kr(r){let t=null;return r===Bs?t="Linear":r===Wt&&(t="sRGB"),t}function Nh(r,t){return kr(r)+"To"+kr(t)}class Qs extends Tt{static get type(){return"ColorSpaceNode"}constructor(t,e,s){super("vec4"),this.colorNode=t,this.source=e,this.target=s}getColorSpace(t,e){return e===ds?wt.workingColorSpace:e===pi?t.context.outputColorSpace||t.renderer.outputColorSpace:e}setup(t){const{renderer:e}=t,{colorNode:s}=this,n=this.getColorSpace(t,this.source),i=this.getColorSpace(t,this.target);if(n===i)return s;const o=Nh(n,i);let a=null;const c=e.nodes.library.getColorSpaceFunction(o);return c!==null?a=Ue(c(s.rgb),s.a):(console.error("ColorSpaceNode: Unsupported Color Space configuration.",o),a=s),a}}const wh=r=>v(new Qs(v(r),ds,pi)),Ah=r=>v(new Qs(v(r),pi,ds)),Sh=(r,t)=>v(new Qs(v(r),ds,t)),qr=(r,t)=>v(new Qs(v(r),t,ds));F("toOutputColorSpace",wh),F("toWorkingColorSpace",Ah),F("workingToColorSpace",Sh),F("colorSpaceToWorking",qr);let Mh=class extends ls{static get type(){return"ReferenceElementNode"}constructor(t,e){super(t,e),this.referenceNode=t,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(t){const e=super.generate(t),s=this.referenceNode.getNodeType(),n=this.getNodeType();return t.format(e,s,n)}};class _h extends U{static get type(){return"ReferenceBaseNode"}constructor(t,e,s=null,n=null){super(),this.property=t,this.uniformType=e,this.object=s,this.count=n,this.properties=t.split("."),this.reference=s,this.node=null,this.group=null,this.updateType=K.OBJECT}setGroup(t){return this.group=t,this}element(t){return v(new Mh(this,v(t)))}setNodeType(t){const e=Mt(null,t).getSelf();this.group!==null&&e.setGroup(this.group),this.node=e}getNodeType(t){return this.node===null&&(this.updateReference(t),this.updateValue()),this.node.getNodeType(t)}getValueFromReference(t=this.reference){const{properties:e}=this;let s=t[e[0]];for(let n=1;n<e.length;n++)s=s[e[n]];return s}updateReference(t){return this.reference=this.object!==null?this.object:t.object,this.reference}setup(){return this.updateValue(),this.node}update(){this.updateValue()}updateValue(){this.node===null&&this.setNodeType(this.uniformType);const t=this.getValueFromReference();Array.isArray(t)?this.node.array=t:this.node.value=t}}class zh extends _h{static get type(){return"RendererReferenceNode"}constructor(t,e,s=null){super(t,e,s),this.renderer=s,this.setGroup(xe)}updateReference(t){return this.reference=this.renderer!==null?this.renderer:t.renderer,this.reference}}const bh=(r,t,e)=>v(new zh(r,t,e));class Eh extends Tt{static get type(){return"ToneMappingNode"}constructor(t,e=Fh,s=null){super("vec3"),this.toneMapping=t,this.exposureNode=e,this.colorNode=s}getCacheKey(){return Ta(super.getCacheKey(),this.toneMapping)}setup(t){const e=this.colorNode||t.context.color,s=this.toneMapping;if(s===0)return e;let n=null;const i=t.renderer.nodes.library.getToneMappingFunction(s);return i!==null?n=Ue(i(e.rgb,this.exposureNode),e.a):(console.error("ToneMappingNode: Unsupported Tone Mapping configuration.",s),n=e),n}}const Ch=(r,t,e)=>v(new Eh(r,v(t),v(e))),Fh=bh("toneMappingExposure","float");F("toneMapping",(r,t,e)=>Ch(t,e,r));class Bh extends ti{static get type(){return"BufferAttributeNode"}constructor(t,e=null,s=0,n=0){super(t,e),this.isBufferNode=!0,this.bufferType=e,this.bufferStride=s,this.bufferOffset=n,this.usage=35044,this.instanced=!1,this.attribute=null,this.global=!0,t&&t.isBufferAttribute===!0&&(this.attribute=t,this.usage=t.usage,this.instanced=t.isInstancedBufferAttribute)}getHash(t){if(this.bufferStride===0&&this.bufferOffset===0){let e=t.globalCache.getData(this.value);return e===void 0&&(e={node:this},t.globalCache.setData(this.value,e)),e.node.uuid}return this.uuid}getNodeType(t){return this.bufferType===null&&(this.bufferType=t.getTypeFromAttribute(this.attribute)),this.bufferType}setup(t){if(this.attribute!==null)return;const e=this.getNodeType(t),s=this.value,n=t.getTypeLength(e),i=this.bufferStride||n,o=this.bufferOffset,a=s.isInterleavedBuffer===!0?s:new ga(s,i),c=new Qn(a,n,o);a.setUsage(this.usage),this.attribute=c,this.attribute.isInstancedBufferAttribute=this.instanced}generate(t){const e=this.getNodeType(t),s=t.getBufferAttributeFromNode(this,e),n=t.getPropertyName(s);let i=null;return t.shaderStage==="vertex"||t.shaderStage==="compute"?(this.name=n,i=n):i=He(this).build(t,e),i}getInputType(){return"bufferAttribute"}setUsage(t){return this.usage=t,this.attribute&&this.attribute.isBufferAttribute===!0&&(this.attribute.usage=t),this}setInstanced(t){return this.instanced=t,this}}const Rh=(r,t,e,s)=>v(new Bh(r,t,e,s));F("toAttribute",r=>Rh(r.value));class Ih extends U{static get type(){return"ComputeNode"}constructor(t,e,s=[64]){super("void"),this.isComputeNode=!0,this.computeNode=t,this.count=e,this.workgroupSize=s,this.dispatchCount=0,this.version=1,this.updateBeforeType=K.OBJECT,this.updateDispatchCount()}dispose(){this.dispatchEvent({type:"dispose"})}set needsUpdate(t){t===!0&&this.version++}updateDispatchCount(){const{count:t,workgroupSize:e}=this;let s=e[0];for(let n=1;n<e.length;n++)s*=e[n];this.dispatchCount=Math.ceil(t/s)}onInit(){}updateBefore({renderer:t}){t.compute(this)}generate(t){const{shaderStage:e}=t;if(e==="compute"){const s=this.computeNode.build(t,"void");s!==""&&t.addLineFlowCode(s,this)}}}F("compute",(r,t,e)=>v(new Ih(v(r),t,e)));class Ph extends U{static get type(){return"CacheNode"}constructor(t,e=!0){super(),this.node=t,this.parent=e,this.isCacheNode=!0}getNodeType(t){return this.node.getNodeType(t)}build(t,...e){const s=t.getCache(),n=t.getCacheFromNode(this,this.parent);t.setCache(n);const i=this.node.build(t,...e);return t.setCache(s),i}}F("cache",(r,...t)=>v(new Ph(v(r),...t)));class vh extends U{static get type(){return"BypassNode"}constructor(t,e){super(),this.isBypassNode=!0,this.outputNode=t,this.callNode=e}getNodeType(t){return this.outputNode.getNodeType(t)}generate(t){const e=this.callNode.build(t,"void");return e!==""&&t.addLineFlowCode(e,this),this.outputNode.build(t)}}F("bypass",R(vh));class Hr extends U{static get type(){return"RemapNode"}constructor(t,e,s,n=H(0),i=H(1)){super(),this.node=t,this.inLowNode=e,this.inHighNode=s,this.outLowNode=n,this.outHighNode=i,this.doClamp=!0}setup(){const{node:t,inLowNode:e,inHighNode:s,outLowNode:n,outHighNode:i,doClamp:o}=this;let a=t.sub(e).div(s.sub(e));return o===!0&&(a=a.clamp()),a.mul(i.sub(n)).add(n)}}const Lh=R(Hr,null,null,{doClamp:!1}),Oh=R(Hr);F("remap",Lh),F("remapClamp",Oh);class Dh extends U{static get type(){return"ExpressionNode"}constructor(t="",e="void"){super(e),this.snippet=t}generate(t,e){const s=this.getNodeType(t),n=this.snippet;if(s==="void")t.addLineFlowCode(n,this);else return t.format(`( ${n} )`,s,e)}}const js=R(Dh);F("discard",r=>(r?fi(r,js("discard")):js("discard")).append());class Vh extends Tt{static get type(){return"RenderOutputNode"}constructor(t,e,s){super("vec4"),this.colorNode=t,this.toneMapping=e,this.outputColorSpace=s,this.isRenderOutput=!0}setup({context:t}){let e=this.colorNode||t.color;const s=(this.toneMapping!==null?this.toneMapping:t.toneMapping)||0,n=(this.outputColorSpace!==null?this.outputColorSpace:t.outputColorSpace)||"";return s!==0&&(e=e.toneMapping(s)),n!==""&&n!==wt.workingColorSpace&&(e=e.workingToColorSpace(n)),e}}F("renderOutput",(r,t=null,e=null)=>v(new Vh(v(r),t,e)));class Uh extends U{static get type(){return"AttributeNode"}constructor(t,e=null){super(e),this.global=!0,this._attributeName=t}getHash(t){return this.getAttributeName(t)}getNodeType(t){let e=this.nodeType;if(e===null){const s=this.getAttributeName(t);if(t.hasGeometryAttribute(s)){const n=t.geometry.getAttribute(s);e=t.getTypeFromAttribute(n)}else e="float"}return e}setAttributeName(t){return this._attributeName=t,this}getAttributeName(){return this._attributeName}generate(t){const e=this.getAttributeName(t),s=this.getNodeType(t);if(t.hasGeometryAttribute(e)===!0){const i=t.geometry.getAttribute(e),o=t.getTypeFromAttribute(i),a=t.getAttribute(e,o);return t.shaderStage==="vertex"?t.format(a.name,o,s):He(this).build(t,s)}else return console.warn(`AttributeNode: Vertex attribute "${e}" not found on geometry.`),t.generateConst(s)}serialize(t){super.serialize(t),t.global=this.global,t._attributeName=this._attributeName}deserialize(t){super.deserialize(t),this.global=t.global,this._attributeName=t._attributeName}}const fs=(r,t)=>v(new Uh(r,t)),Ks=r=>fs("uv"+(r>0?r:""),"vec2");class kh extends U{static get type(){return"TextureSizeNode"}constructor(t,e=null){super("uvec2"),this.isTextureSizeNode=!0,this.textureNode=t,this.levelNode=e}generate(t,e){const s=this.textureNode.build(t,"property"),n=this.levelNode===null?"0":this.levelNode.build(t,"int");return t.format(`${t.getMethod("textureDimensions")}( ${s}, ${n} )`,this.getNodeType(t),e)}}const Wr=R(kh);class qh extends ke{static get type(){return"MaxMipLevelNode"}constructor(t){super(0),this._textureNode=t,this.updateType=K.FRAME}get textureNode(){return this._textureNode}get texture(){return this._textureNode.value}update(){const t=this.texture,e=t.images,s=e&&e.length>0?e[0]&&e[0].image||e[0]:t.image;if(s&&s.width!==void 0){const{width:n,height:i}=s;this.value=Math.log2(Math.max(n,i))}}}const Hh=R(qh);class tn extends ke{static get type(){return"TextureNode"}constructor(t,e=null,s=null,n=null){super(t),this.isTextureNode=!0,this.uvNode=e,this.levelNode=s,this.biasNode=n,this.compareNode=null,this.depthNode=null,this.gradNode=null,this.sampler=!0,this.updateMatrix=!1,this.updateType=K.NONE,this.referenceNode=null,this._value=t,this._matrixUniform=null,this.setUpdateMatrix(e===null)}set value(t){this.referenceNode?this.referenceNode.value=t:this._value=t}get value(){return this.referenceNode?this.referenceNode.value:this._value}getUniformHash(){return this.value.uuid}getNodeType(){return this.value.isDepthTexture===!0?"float":this.value.type===1014?"uvec4":this.value.type===1013?"ivec4":"vec4"}getInputType(){return"texture"}getDefaultUV(){return Ks(this.value.channel)}updateReference(){return this.value}getTransformedUV(t){return this._matrixUniform===null&&(this._matrixUniform=Mt(this.value.matrix)),this._matrixUniform.mul(k(t,1)).xy}setUpdateMatrix(t){return this.updateMatrix=t,this.updateType=t?K.FRAME:K.NONE,this}setupUV(t,e){const s=this.value;return t.isFlipY()&&(s.isRenderTargetTexture===!0||s.isFramebufferTexture===!0||s.isDepthTexture===!0)&&(this.sampler?e=e.flipY():e=e.setY(Ve(Wr(this,this.levelNode).y).sub(e.y).sub(1))),e}setup(t){const e=t.getNodeProperties(this);e.referenceNode=this.referenceNode;let s=this.uvNode;(s===null||t.context.forceUVContext===!0)&&t.context.getUV&&(s=t.context.getUV(this)),s||(s=this.getDefaultUV()),this.updateMatrix===!0&&(s=this.getTransformedUV(s)),s=this.setupUV(t,s);let n=this.levelNode;n===null&&t.context.getTextureLevel&&(n=t.context.getTextureLevel(this)),e.uvNode=s,e.levelNode=n,e.biasNode=this.biasNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.depthNode=this.depthNode}generateUV(t,e){return e.build(t,this.sampler===!0?"vec2":"ivec2")}generateSnippet(t,e,s,n,i,o,a,c){const u=this.value;let h;return n?h=t.generateTextureLevel(u,e,s,n,o):i?h=t.generateTextureBias(u,e,s,i,o):c?h=t.generateTextureGrad(u,e,s,c,o):a?h=t.generateTextureCompare(u,e,s,a,o):this.sampler===!1?h=t.generateTextureLoad(u,e,s,o):h=t.generateTexture(u,e,s,o),h}generate(t,e){const s=t.getNodeProperties(this),n=this.value;if(!n||n.isTexture!==!0)throw new Error("TextureNode: Need a three.js texture.");const i=super.generate(t,"property");if(e==="sampler")return i+"_sampler";if(t.isReference(e))return i;{const o=t.getDataFromNode(this);let a=o.propertyName;if(a===void 0){const{uvNode:h,levelNode:l,biasNode:d,compareNode:f,depthNode:p,gradNode:m}=s,x=this.generateUV(t,h),g=l?l.build(t,"float"):null,y=d?d.build(t,"float"):null,N=p?p.build(t,"int"):null,w=f?f.build(t,"float"):null,T=m?[m[0].build(t,"vec2"),m[1].build(t,"vec2")]:null,_=t.getVarFromNode(this);a=t.getPropertyName(_);const S=this.generateSnippet(t,i,x,g,y,N,w,T);t.addLineFlowCode(`${a} = ${S}`,this),o.snippet=S,o.propertyName=a}let c=a;const u=this.getNodeType(t);return t.needsToWorkingColorSpace(n)&&(c=qr(js(c,u),n.colorSpace).setup(t).build(t,u)),t.format(c,u,e)}}setSampler(t){return this.sampler=t,this}getSampler(){return this.sampler}uv(t){const e=this.clone();return e.uvNode=v(t),e.referenceNode=this.getSelf(),v(e)}blur(t){const e=this.clone();return e.biasNode=v(t).mul(Hh(e)),e.referenceNode=this.getSelf(),v(e)}level(t){const e=this.clone();return e.levelNode=v(t),e.referenceNode=this.getSelf(),v(e)}size(t){return Wr(this,t)}bias(t){const e=this.clone();return e.biasNode=v(t),e.referenceNode=this.getSelf(),v(e)}compare(t){const e=this.clone();return e.compareNode=v(t),e.referenceNode=this.getSelf(),v(e)}grad(t,e){const s=this.clone();return s.gradNode=[v(t),v(e)],s.referenceNode=this.getSelf(),v(s)}depth(t){const e=this.clone();return e.depthNode=v(t),e.referenceNode=this.getSelf(),v(e)}serialize(t){super.serialize(t),t.value=this.value.toJSON(t.meta).uuid,t.sampler=this.sampler,t.updateMatrix=this.updateMatrix,t.updateType=this.updateType}deserialize(t){super.deserialize(t),this.value=t.meta.textures[t.value],this.sampler=t.sampler,this.updateMatrix=t.updateMatrix,this.updateType=t.updateType}update(){const t=this.value,e=this._matrixUniform;e!==null&&(e.value=t.matrix),t.matrixAutoUpdate===!0&&t.updateMatrix()}clone(){const t=new this.constructor(this.value,this.uvNode,this.levelNode,this.biasNode);return t.sampler=this.sampler,t}}const ps=R(tn),ms=Mt("float").label("cameraNear").setGroup(xe).onRenderUpdate(({camera:r})=>r.near),ys=Mt("float").label("cameraFar").setGroup(xe).onRenderUpdate(({camera:r})=>r.far),en=Mt("mat4").label("cameraViewMatrix").setGroup(xe).onRenderUpdate(({camera:r})=>r.matrixWorldInverse);class q extends U{static get type(){return"Object3DNode"}constructor(t,e=null){super(),this.scope=t,this.object3d=e,this.updateType=K.OBJECT,this._uniformNode=new ke(null)}getNodeType(){const t=this.scope;if(t===q.WORLD_MATRIX)return"mat4";if(t===q.POSITION||t===q.VIEW_POSITION||t===q.DIRECTION||t===q.SCALE)return"vec3"}update(t){const e=this.object3d,s=this._uniformNode,n=this.scope;if(n===q.WORLD_MATRIX)s.value=e.matrixWorld;else if(n===q.POSITION)s.value=s.value||new M,s.value.setFromMatrixPosition(e.matrixWorld);else if(n===q.SCALE)s.value=s.value||new M,s.value.setFromMatrixScale(e.matrixWorld);else if(n===q.DIRECTION)s.value=s.value||new M,e.getWorldDirection(s.value);else if(n===q.VIEW_POSITION){const i=t.camera;s.value=s.value||new M,s.value.setFromMatrixPosition(e.matrixWorld),s.value.applyMatrix4(i.matrixWorldInverse)}}generate(t){const e=this.scope;return e===q.WORLD_MATRIX?this._uniformNode.nodeType="mat4":(e===q.POSITION||e===q.VIEW_POSITION||e===q.DIRECTION||e===q.SCALE)&&(this._uniformNode.nodeType="vec3"),this._uniformNode.build(t)}serialize(t){super.serialize(t),t.scope=this.scope}deserialize(t){super.deserialize(t),this.scope=t.scope}}q.WORLD_MATRIX="worldMatrix",q.POSITION="position",q.SCALE="scale",q.VIEW_POSITION="viewPosition",q.DIRECTION="direction",q.DIRECTION,q.WORLD_MATRIX,q.POSITION,q.SCALE,q.VIEW_POSITION;class kt extends q{static get type(){return"ModelNode"}constructor(t){super(t)}update(t){this.object3d=t.object,super.update(t)}}kt.DIRECTION;const Wh=O(kt,kt.WORLD_MATRIX);kt.POSITION,kt.SCALE,kt.VIEW_POSITION;const $h=Mt(new Bt).onObjectUpdate(({object:r},t)=>t.value.getNormalMatrix(r.matrixWorld)),$r=en.mul(Wh).toVar("modelViewMatrix_2"),Gh=fs("position","vec3").varying("positionLocal"),bt=$r.mul(Gh).xyz.varying("v_positionView"),Gr=bt.negate().varying("v_positionViewDirection").normalize().toVar("positionViewDirection");class Xh extends U{static get type(){return"FrontFacingNode"}constructor(){super("bool"),this.isFrontFacingNode=!0}generate(t){const{renderer:e,material:s}=t;return e.coordinateSystem===2e3&&s.side===1?"false":t.getFrontFacing()}}const mi=H(O(Xh)).mul(2).sub(1),Yh=fs("normal","vec3"),Zh=et(r=>r.geometry.hasAttribute("normal")===!1?(console.warn('TSL.NormalNode: Vertex attribute "normal" not found on geometry.'),k(0,1,0)):Yh,"vec3").once()().toVar("normalLocal"),Jh=bt.dFdx().cross(bt.dFdy()).normalize().toVar("normalFlat"),We=et(r=>{let t;return r.material.flatShading===!0?t=Jh:t=He(Yr(Zh),"v_normalView").normalize(),t},"vec3").once()().toVar("normalView"),Xr=et(r=>r.context.setupNormal(),"vec3").once()().mul(mi).toVar("transformedNormalView"),Yr=et(([r],t)=>{const e=t.renderer.nodes.modelNormalViewMatrix;if(e!==null)return e.transformDirection(r);const s=$h.mul(r);return en.transformDirection(s)}),Qh=Mt(0).onReference(({material:r})=>r).onRenderUpdate(({material:r})=>r.refractionRatio),jh=Gr.negate().reflect(Xr),Kh=Gr.negate().refract(Xr,Qh),tu=jh.transformDirection(en).toVar("reflectVector"),eu=Kh.transformDirection(en).toVar("reflectVector");class su extends tn{static get type(){return"CubeTextureNode"}constructor(t,e=null,s=null,n=null){super(t,e,s,n),this.isCubeTextureNode=!0}getInputType(){return"cubeTexture"}getDefaultUV(){const t=this.value;return t.mapping===301?tu:t.mapping===302?eu:(console.error('THREE.CubeTextureNode: Mapping "%s" not supported.',t.mapping),k(0,0,0))}setUpdateMatrix(){}setupUV(t,e){const s=this.value;return t.renderer.coordinateSystem===2001||!s.isRenderTargetTexture?k(e.x.negate(),e.yz):e}generateUV(t,e){return e.build(t,"vec3")}}const nu=R(su);class Zr extends ke{static get type(){return"BufferNode"}constructor(t,e,s=0){super(t,e),this.isBufferNode=!0,this.bufferType=e,this.bufferCount=s}getElementType(t){return this.getNodeType(t)}getInputType(){return"buffer"}}const iu=(r,t,e)=>v(new Zr(r,t,e));class ru extends ls{static get type(){return"UniformArrayElementNode"}constructor(t,e){super(t,e),this.isArrayBufferElementNode=!0}generate(t){const e=super.generate(t),s=this.getNodeType();return t.format(e,"vec4",s)}}class ou extends Zr{static get type(){return"UniformArrayNode"}constructor(t,e=null){super(null,"vec4"),this.array=t,this.elementType=e,this._elementType=null,this._elementLength=0,this.updateType=K.RENDER,this.isArrayBufferNode=!0}getElementType(){return this.elementType||this._elementType}getElementLength(){return this._elementLength}update(){const{array:t,value:e}=this,s=this.getElementLength(),n=this.getElementType();if(s===1)for(let i=0;i<t.length;i++){const o=i*4;e[o]=t[i]}else if(n==="color")for(let i=0;i<t.length;i++){const o=i*4,a=t[i];e[o]=a.r,e[o+1]=a.g,e[o+2]=a.b||0}else for(let i=0;i<t.length;i++){const o=i*4,a=t[i];e[o]=a.x,e[o+1]=a.y,e[o+2]=a.z||0,e[o+3]=a.w||0}}setup(t){const e=this.array.length;this._elementType=this.elementType===null?Hs(this.array[0]):this.elementType,this._elementLength=t.getTypeLength(this._elementType);let s=Float32Array;return this._elementType.charAt(0)==="i"?s=Int32Array:this._elementType.charAt(0)==="u"&&(s=Uint32Array),this.value=new s(e*4),this.bufferCount=e,this.bufferType=t.changeComponentType("vec4",t.getComponentType(this._elementType)),super.setup(t)}element(t){return v(new ru(this,v(t)))}}const yi=(r,t)=>v(new ou(r,t));class au extends ls{static get type(){return"ReferenceElementNode"}constructor(t,e){super(t,e),this.referenceNode=t,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(t){const e=super.generate(t),s=this.referenceNode.getNodeType(),n=this.getNodeType();return t.format(e,s,n)}}class Jr extends U{static get type(){return"ReferenceNode"}constructor(t,e,s=null,n=null){super(),this.property=t,this.uniformType=e,this.object=s,this.count=n,this.properties=t.split("."),this.reference=s,this.node=null,this.group=null,this.name=null,this.updateType=K.OBJECT}element(t){return v(new au(this,v(t)))}setGroup(t){return this.group=t,this}label(t){return this.name=t,this}setNodeType(t){let e=null;this.count!==null?e=iu(null,t,this.count):Array.isArray(this.getValueFromReference())?e=yi(null,t):t==="texture"?e=ps(null):t==="cubeTexture"?e=nu(null):e=Mt(null,t),this.group!==null&&e.setGroup(this.group),this.name!==null&&e.label(this.name),this.node=e.getSelf()}getNodeType(t){return this.node===null&&(this.updateReference(t),this.updateValue()),this.node.getNodeType(t)}getValueFromReference(t=this.reference){const{properties:e}=this;let s=t[e[0]];for(let n=1;n<e.length;n++)s=s[e[n]];return s}updateReference(t){return this.reference=this.object!==null?this.object:t.object,this.reference}setup(){return this.updateValue(),this.node}update(){this.updateValue()}updateValue(){this.node===null&&this.setNodeType(this.uniformType);const t=this.getValueFromReference();Array.isArray(t)?this.node.array=t:this.node.value=t}}const Ne=(r,t,e)=>v(new Jr(r,t,e));class cu extends Jr{static get type(){return"MaterialReferenceNode"}constructor(t,e,s=null){super(t,e,s),this.material=s,this.isMaterialReferenceNode=!0}updateReference(t){return this.reference=this.material!==null?this.material:t.material,this.reference}}const hu=(r,t,e)=>v(new cu(r,t,e)),Qr=et(r=>(r.geometry.hasAttribute("tangent")===!1&&r.geometry.computeTangents(),fs("tangent","vec4")))(),uu=Qr.xyz.toVar("tangentLocal"),jr=$r.mul(Ue(uu,0)).xyz.varying("v_tangentView").normalize().toVar("tangentView"),lu=Xs(jr,He((r=>r.mul(Qr.w).xyz)(We.cross(jr)),"v_bitangentView").normalize().toVar("bitangentView"),We),du=et(r=>{const{eye_pos:t,surf_norm:e,mapN:s,uv:n}=r,i=t.dFdx(),o=t.dFdy(),a=n.dFdx(),c=n.dFdy(),u=e,h=o.cross(u),l=u.cross(i),d=h.mul(a.x).add(l.mul(c.x)),f=h.mul(a.y).add(l.mul(c.y)),p=d.dot(d).max(f.dot(f)),m=mi.mul(p.inverseSqrt());return Te(d.mul(s.x,m),f.mul(s.y,m),u.mul(s.z)).normalize()});class fu extends Tt{static get type(){return"NormalMapNode"}constructor(t,e=null){super("vec3"),this.node=t,this.scaleNode=e,this.normalMapType=0}setup(t){const{normalMapType:e,scaleNode:s}=this;let n=this.node.mul(2).sub(1);s!==null&&(n=k(n.xy.mul(s),n.z));let i=null;return e===1?i=Yr(n):e===0&&(t.hasGeometryAttribute("tangent")===!0?i=lu.mul(n).normalize():i=du({eye_pos:bt,surf_norm:We,mapN:n,uv:Ks()})),i}}const Kr=R(fu),pu=et(({textureNode:r,bumpScale:t})=>{const e=n=>r.cache().context({getUV:i=>n(i.uvNode||Ks()),forceUVContext:!0}),s=H(e(n=>n));return V(H(e(n=>n.add(n.dFdx()))).sub(s),H(e(n=>n.add(n.dFdy()))).sub(s)).mul(t)}),mu=et(r=>{const{surf_pos:t,surf_norm:e,dHdxy:s}=r,n=t.dFdx().normalize(),i=t.dFdy().normalize(),o=e,a=i.cross(o),c=o.cross(n),u=n.dot(a).mul(mi),h=u.sign().mul(s.x.mul(a).add(s.y.mul(c)));return u.abs().mul(e).sub(h).normalize()});class yu extends Tt{static get type(){return"BumpMapNode"}constructor(t,e=null){super("vec3"),this.textureNode=t,this.scaleNode=e}setup(){const t=this.scaleNode!==null?this.scaleNode:1,e=pu({textureNode:this.textureNode,bumpScale:t});return mu({surf_pos:bt,surf_norm:We,dHdxy:e})}}const gu=R(yu),to=new Map;class E extends U{static get type(){return"MaterialNode"}constructor(t){super(),this.scope=t}getCache(t,e){let s=to.get(t);return s===void 0&&(s=hu(t,e),to.set(t,s)),s}getFloat(t){return this.getCache(t,"float")}getColor(t){return this.getCache(t,"color")}getTexture(t){return this.getCache(t==="map"?"map":t+"Map","texture")}setup(t){const e=t.context.material,s=this.scope;let n=null;if(s===E.COLOR){const i=e.color!==void 0?this.getColor(s):k();e.map&&e.map.isTexture===!0?n=i.mul(this.getTexture("map")):n=i}else if(s===E.OPACITY){const i=this.getFloat(s);e.alphaMap&&e.alphaMap.isTexture===!0?n=i.mul(this.getTexture("alpha")):n=i}else if(s===E.SPECULAR_STRENGTH)e.specularMap&&e.specularMap.isTexture===!0?n=this.getTexture("specular").r:n=H(1);else if(s===E.SPECULAR_INTENSITY){const i=this.getFloat(s);e.specularMap?n=i.mul(this.getTexture(s).a):n=i}else if(s===E.SPECULAR_COLOR){const i=this.getColor(s);e.specularColorMap&&e.specularColorMap.isTexture===!0?n=i.mul(this.getTexture(s).rgb):n=i}else if(s===E.ROUGHNESS){const i=this.getFloat(s);e.roughnessMap&&e.roughnessMap.isTexture===!0?n=i.mul(this.getTexture(s).g):n=i}else if(s===E.METALNESS){const i=this.getFloat(s);e.metalnessMap&&e.metalnessMap.isTexture===!0?n=i.mul(this.getTexture(s).b):n=i}else if(s===E.EMISSIVE){const i=this.getFloat("emissiveIntensity"),o=this.getColor(s).mul(i);e.emissiveMap&&e.emissiveMap.isTexture===!0?n=o.mul(this.getTexture(s)):n=o}else if(s===E.NORMAL)e.normalMap?(n=Kr(this.getTexture("normal"),this.getCache("normalScale","vec2")),n.normalMapType=e.normalMapType):e.bumpMap?n=gu(this.getTexture("bump").r,this.getFloat("bumpScale")):n=We;else if(s===E.CLEARCOAT){const i=this.getFloat(s);e.clearcoatMap&&e.clearcoatMap.isTexture===!0?n=i.mul(this.getTexture(s).r):n=i}else if(s===E.CLEARCOAT_ROUGHNESS){const i=this.getFloat(s);e.clearcoatRoughnessMap&&e.clearcoatRoughnessMap.isTexture===!0?n=i.mul(this.getTexture(s).r):n=i}else if(s===E.CLEARCOAT_NORMAL)e.clearcoatNormalMap?n=Kr(this.getTexture(s),this.getCache(s+"Scale","vec2")):n=We;else if(s===E.SHEEN){const i=this.getColor("sheenColor").mul(this.getFloat("sheen"));e.sheenColorMap&&e.sheenColorMap.isTexture===!0?n=i.mul(this.getTexture("sheenColor").rgb):n=i}else if(s===E.SHEEN_ROUGHNESS){const i=this.getFloat(s);e.sheenRoughnessMap&&e.sheenRoughnessMap.isTexture===!0?n=i.mul(this.getTexture(s).a):n=i,n=n.clamp(.07,1)}else if(s===E.ANISOTROPY)if(e.anisotropyMap&&e.anisotropyMap.isTexture===!0){const i=this.getTexture(s);n=br(gs.x,gs.y,gs.y.negate(),gs.x).mul(i.rg.mul(2).sub(V(1)).normalize().mul(i.b))}else n=gs;else if(s===E.IRIDESCENCE_THICKNESS){const i=Ne("1","float",e.iridescenceThicknessRange);if(e.iridescenceThicknessMap){const o=Ne("0","float",e.iridescenceThicknessRange);n=i.sub(o).mul(this.getTexture(s).g).add(o)}else n=i}else if(s===E.TRANSMISSION){const i=this.getFloat(s);e.transmissionMap?n=i.mul(this.getTexture(s).r):n=i}else if(s===E.THICKNESS){const i=this.getFloat(s);e.thicknessMap?n=i.mul(this.getTexture(s).g):n=i}else if(s===E.IOR)n=this.getFloat(s);else if(s===E.LIGHT_MAP)n=this.getTexture(s).rgb.mul(this.getFloat("lightMapIntensity"));else if(s===E.AO_MAP)n=this.getTexture(s).r.sub(1).mul(this.getFloat("aoMapIntensity")).add(1);else{const i=this.getNodeType(t);n=this.getCache(s,i)}return n}}E.ALPHA_TEST="alphaTest",E.COLOR="color",E.OPACITY="opacity",E.SHININESS="shininess",E.SPECULAR="specular",E.SPECULAR_STRENGTH="specularStrength",E.SPECULAR_INTENSITY="specularIntensity",E.SPECULAR_COLOR="specularColor",E.REFLECTIVITY="reflectivity",E.ROUGHNESS="roughness",E.METALNESS="metalness",E.NORMAL="normal",E.CLEARCOAT="clearcoat",E.CLEARCOAT_ROUGHNESS="clearcoatRoughness",E.CLEARCOAT_NORMAL="clearcoatNormal",E.EMISSIVE="emissive",E.ROTATION="rotation",E.SHEEN="sheen",E.SHEEN_ROUGHNESS="sheenRoughness",E.ANISOTROPY="anisotropy",E.IRIDESCENCE="iridescence",E.IRIDESCENCE_IOR="iridescenceIOR",E.IRIDESCENCE_THICKNESS="iridescenceThickness",E.IOR="ior",E.TRANSMISSION="transmission",E.THICKNESS="thickness",E.ATTENUATION_DISTANCE="attenuationDistance",E.ATTENUATION_COLOR="attenuationColor",E.LINE_SCALE="scale",E.LINE_DASH_SIZE="dashSize",E.LINE_GAP_SIZE="gapSize",E.LINE_WIDTH="linewidth",E.LINE_DASH_OFFSET="dashOffset",E.POINT_WIDTH="pointWidth",E.DISPERSION="dispersion",E.LIGHT_MAP="light",E.AO_MAP="ao",E.ALPHA_TEST,E.COLOR,E.SHININESS,E.EMISSIVE,E.OPACITY,E.SPECULAR,E.SPECULAR_INTENSITY,E.SPECULAR_COLOR,E.SPECULAR_STRENGTH,E.REFLECTIVITY,E.ROUGHNESS,E.METALNESS,E.CLEARCOAT,E.CLEARCOAT_ROUGHNESS,E.ROTATION,E.SHEEN,E.SHEEN_ROUGHNESS,E.ANISOTROPY,E.IRIDESCENCE,E.IRIDESCENCE_IOR,E.IRIDESCENCE_THICKNESS,E.TRANSMISSION,E.THICKNESS,E.IOR,E.ATTENUATION_DISTANCE,E.ATTENUATION_COLOR,E.LINE_SCALE,E.LINE_DASH_SIZE,E.LINE_GAP_SIZE,E.LINE_WIDTH,E.LINE_DASH_OFFSET,E.POINT_WIDTH,E.DISPERSION,E.LIGHT_MAP,E.AO_MAP;const gs=Mt(new Z).onReference(function(r){return r.material}).onRenderUpdate(function({material:r}){this.value.set(r.anisotropy*Math.cos(r.anisotropyRotation),r.anisotropy*Math.sin(r.anisotropyRotation))});class $ extends U{static get type(){return"IndexNode"}constructor(t){super("uint"),this.scope=t,this.isInstanceIndexNode=!0}generate(t){const e=this.getNodeType(t),s=this.scope;let n;if(s===$.VERTEX)n=t.getVertexIndex();else if(s===$.INSTANCE)n=t.getInstanceIndex();else if(s===$.DRAW)n=t.getDrawIndex();else if(s===$.INVOCATION_LOCAL)n=t.getInvocationLocalIndex();else if(s===$.INVOCATION_SUBGROUP)n=t.getInvocationSubgroupIndex();else if(s===$.SUBGROUP)n=t.getSubgroupIndex();else throw new Error("THREE.IndexNode: Unknown scope: "+s);let i;return t.shaderStage==="vertex"||t.shaderStage==="compute"?i=n:i=He(this).build(t,e),i}}$.VERTEX="vertex",$.INSTANCE="instance",$.SUBGROUP="subgroup",$.INVOCATION_LOCAL="invocationLocal",$.INVOCATION_SUBGROUP="invocationSubgroup",$.DRAW="draw",$.VERTEX,$.INSTANCE,$.SUBGROUP,$.INVOCATION_SUBGROUP,$.INVOCATION_LOCAL,$.DRAW;class xu extends U{static get type(){return"LoopNode"}constructor(t=[]){super(),this.params=t}getVarName(t){return String.fromCharCode(105+t)}getProperties(t){const e=t.getNodeProperties(this);if(e.stackNode!==void 0)return e;const s={};for(let i=0,o=this.params.length-1;i<o;i++){const a=this.params[i],c=a.isNode!==!0&&a.name||this.getVarName(i),u=a.isNode!==!0&&a.type||"int";s[c]=js(c,u)}const n=t.addStack();return e.returnsNode=this.params[this.params.length-1](s,n,t),e.stackNode=n,t.removeStack(),e}getNodeType(t){const{returnsNode:e}=this.getProperties(t);return e?e.getNodeType(t):"void"}setup(t){this.getProperties(t)}generate(t){const e=this.getProperties(t),s=this.params,n=e.stackNode;for(let a=0,c=s.length-1;a<c;a++){const u=s[a];let h=null,l=null,d=null,f=null,p=null,m=null;u.isNode?(f="int",d=this.getVarName(a),h="0",l=u.build(t,f),p="<"):(f=u.type||"int",d=u.name||this.getVarName(a),h=u.start,l=u.end,p=u.condition,m=u.update,typeof h=="number"?h=h.toString():h&&h.isNode&&(h=h.build(t,f)),typeof l=="number"?l=l.toString():l&&l.isNode&&(l=l.build(t,f)),h!==void 0&&l===void 0?(h=h+" - 1",l="0",p=">="):l!==void 0&&h===void 0&&(h="0",p="<"),p===void 0&&(Number(h)>Number(l)?p=">=":p="<"));const x={start:h,end:l},g=x.start,y=x.end;let N="",w="",T="";m||(f==="int"||f==="uint"?p.includes("<")?m="++":m="--":p.includes("<")?m="+= 1.":m="-= 1."),N+=t.getVar(f,d)+" = "+g,w+=d+" "+p+" "+y,T+=d+" "+m;const _=`for ( ${N}; ${w}; ${T} )`;t.addFlowCode((a===0?`
15
+ `:"")+t.tab+_+` {
16
+
17
+ `).addFlowTab()}const i=n.build(t,"void"),o=e.returnsNode?e.returnsNode.build(t):"";t.removeFlowTab().addFlowCode(`
18
+ `+t.tab+i);for(let a=0,c=this.params.length-1;a<c;a++)t.addFlowCode((a===0?"":t.tab)+`}
19
+
20
+ `).removeFlowTab();return t.addFlowTab(),o}}const $e=(...r)=>v(new xu(De(r,"int"))).append();let xs,Ts;class st extends U{static get type(){return"ScreenNode"}constructor(t){super(),this.scope=t,this.isViewportNode=!0}getNodeType(){return this.scope===st.VIEWPORT?"vec4":"vec2"}getUpdateType(){let t=K.NONE;return(this.scope===st.SIZE||this.scope===st.VIEWPORT)&&(t=K.RENDER),this.updateType=t,t}update({renderer:t}){const e=t.getRenderTarget();this.scope===st.VIEWPORT?e!==null?Ts.copy(e.viewport):(t.getViewport(Ts),Ts.multiplyScalar(t.getPixelRatio())):e!==null?(xs.width=e.width,xs.height=e.height):t.getDrawingBufferSize(xs)}setup(){const t=this.scope;let e=null;return t===st.SIZE?e=Mt(xs||(xs=new Z)):t===st.VIEWPORT?e=Mt(Ts||(Ts=new Rt)):e=V(sn.div(eo)),e}generate(t){if(this.scope===st.COORDINATE){let e=t.getFragCoord();if(t.isFlipY()){const s=t.getNodeProperties(eo).outputNode.build(t);e=`${t.getType("vec2")}( ${e}.x, ${s}.y - ${e}.y )`}return e}return super.generate(t)}}st.COORDINATE="coordinate",st.VIEWPORT="viewport",st.SIZE="size",st.UV="uv";const gi=O(st,st.UV),eo=O(st,st.SIZE),sn=O(st,st.COORDINATE),so=O(st,st.VIEWPORT);so.zw,so.xy;const Ns=new Z;class Tu extends tn{static get type(){return"ViewportTextureNode"}constructor(t=gi,e=null,s=null){s===null&&(s=new xa,s.minFilter=1008),super(s,t,e),this.generateMipmaps=!1,this.isOutputTextureNode=!0,this.updateBeforeType=K.FRAME}updateBefore(t){const e=t.renderer;e.getDrawingBufferSize(Ns);const s=this.value;(s.image.width!==Ns.width||s.image.height!==Ns.height)&&(s.image.width=Ns.width,s.image.height=Ns.height,s.needsUpdate=!0);const n=s.generateMipmaps;s.generateMipmaps=this.generateMipmaps,e.copyFramebufferToTexture(s),s.generateMipmaps=n}clone(){const t=new this.constructor(this.uvNode,this.levelNode,this.value);return t.generateMipmaps=this.generateMipmaps,t}}let xi=null;class Nu extends Tu{static get type(){return"ViewportDepthTextureNode"}constructor(t=gi,e=null){xi===null&&(xi=new pr),super(t,e,xi)}}const wu=R(Nu);class Nt extends U{static get type(){return"ViewportDepthNode"}constructor(t,e=null){super("float"),this.scope=t,this.valueNode=e,this.isViewportDepthNode=!0}generate(t){const{scope:e}=this;return e===Nt.DEPTH_BASE?t.getFragDepth():super.generate(t)}setup({camera:t}){const{scope:e}=this,s=this.valueNode;let n=null;if(e===Nt.DEPTH_BASE)s!==null&&(n=io().assign(s));else if(e===Nt.DEPTH)t.isPerspectiveCamera?n=Au(bt.z,ms,ys):n=nn(bt.z,ms,ys);else if(e===Nt.LINEAR_DEPTH)if(s!==null)if(t.isPerspectiveCamera){const i=no(s,ms,ys);n=nn(i,ms,ys)}else n=s;else n=nn(bt.z,ms,ys);return n}}Nt.DEPTH_BASE="depthBase",Nt.DEPTH="depth",Nt.LINEAR_DEPTH="linearDepth";const nn=(r,t,e)=>r.add(t).div(t.sub(e)),Au=(r,t,e)=>t.add(r).mul(e).div(e.sub(t).mul(r)),no=(r,t,e)=>t.mul(e).div(e.sub(t).mul(r).sub(e)),io=R(Nt,Nt.DEPTH_BASE),Su=O(Nt,Nt.DEPTH);wu(),Su.assign=r=>io(r);class ws extends U{static get type(){return"ClippingNode"}constructor(t=ws.DEFAULT){super(),this.scope=t}setup(t){super.setup(t);const e=t.clippingContext,{localClipIntersection:s,localClippingCount:n,globalClippingCount:i}=e,o=i+n,a=s?o-n:o;return this.scope===ws.ALPHA_TO_COVERAGE?this.setupAlphaToCoverage(e.planes,o,a):this.setupDefault(e.planes,o,a)}setupAlphaToCoverage(t,e,s){return et(()=>{const n=yi(t),i=qe("float","distanceToPlane"),o=qe("float","distanceToGradient"),a=qe("float","clipOpacity");a.assign(1);let c;if($e(s,({i:u})=>{c=n.element(u),i.assign(bt.dot(c.xyz).negate().add(c.w)),o.assign(i.fwidth().div(2)),a.mulAssign(di(o.negate(),o,i)),a.equal(0).discard()}),s<e){const u=qe("float","unionclipOpacity");u.assign(1),$e({start:s,end:e},({i:h})=>{c=n.element(h),i.assign(bt.dot(c.xyz).negate().add(c.w)),o.assign(i.fwidth().div(2)),u.mulAssign(di(o.negate(),o,i).oneMinus())}),a.mulAssign(u.oneMinus())}Fr.a.mulAssign(a),Fr.a.equal(0).discard()})()}setupDefault(t,e,s){return et(()=>{const n=yi(t);let i;if($e(s,({i:o})=>{i=n.element(o),bt.dot(i.xyz).greaterThan(i.w).discard()}),s<e){const o=qe("bool","clipped");o.assign(!0),$e({start:s,end:e},({i:a})=>{i=n.element(a),o.assign(bt.dot(i.xyz).greaterThan(i.w).and(o))}),o.discard()}})()}}ws.ALPHA_TO_COVERAGE="alphaToCoverage",ws.DEFAULT="default",k(.04),H(1);const Mu=et(([r,t])=>{const e=r.toVar();e.assign(Zs(2,e).sub(1));const s=k(e,1).toVar();return oi(t.equal(0),()=>{s.assign(s.zyx)}).ElseIf(t.equal(1),()=>{s.assign(s.xzy),s.xz.mulAssign(-1)}).ElseIf(t.equal(2),()=>{s.x.mulAssign(-1)}).ElseIf(t.equal(3),()=>{s.assign(s.zyx),s.xz.mulAssign(-1)}).ElseIf(t.equal(4),()=>{s.assign(s.xzy),s.xy.mulAssign(-1)}).ElseIf(t.equal(5),()=>{s.z.mulAssign(-1)}),s}).setLayout({name:"getDirection",type:"vec3",inputs:[{name:"uv",type:"vec2"},{name:"face",type:"float"}]});et(({texture:r,uv:t})=>{const s=k().toVar();return oi(t.x.lessThan(1e-4),()=>{s.assign(k(1,0,0))}).ElseIf(t.y.lessThan(1e-4),()=>{s.assign(k(0,1,0))}).ElseIf(t.z.lessThan(1e-4),()=>{s.assign(k(0,0,1))}).ElseIf(t.x.greaterThan(1-1e-4),()=>{s.assign(k(-1,0,0))}).ElseIf(t.y.greaterThan(1-1e-4),()=>{s.assign(k(0,-1,0))}).ElseIf(t.z.greaterThan(1-1e-4),()=>{s.assign(k(0,0,-1))}).Else(()=>{const i=r.uv(t.add(k(-.01,0,0))).r.sub(r.uv(t.add(k(.01,0,0))).r),o=r.uv(t.add(k(0,-.01,0))).r.sub(r.uv(t.add(k(0,.01,0))).r),a=r.uv(t.add(k(0,0,-.01))).r.sub(r.uv(t.add(k(0,0,.01))).r);s.assign(k(i,o,a))}),s.normalize()});const Ti=Mu(Ks(),fs("faceIndex")).normalize();k(Ti.x,Ti.y.negate(),Ti.z);class Ot extends ke{static get type(){return"TimerNode"}constructor(t=Ot.LOCAL,e=1,s=0){super(s),this.scope=t,this.scale=e,this.updateType=K.FRAME}update(t){const e=this.scope,s=this.scale;e===Ot.LOCAL?this.value+=t.deltaTime*s:e===Ot.DELTA?this.value=t.deltaTime*s:e===Ot.FRAME?this.value=t.frameId:this.value=t.time*s}serialize(t){super.serialize(t),t.scope=this.scope,t.scale=this.scale}deserialize(t){super.deserialize(t),this.scope=t.scope,this.scale=t.scale}}Ot.LOCAL="local",Ot.GLOBAL="global",Ot.DELTA="delta",Ot.FRAME="frame";const _u=(r,t=0)=>v(new Ot(Ot.LOCAL,r,t));class at extends U{static get type(){return"OscNode"}constructor(t=at.SINE,e=_u()){super(),this.method=t,this.timeNode=e}getNodeType(t){return this.timeNode.getNodeType(t)}setup(){const t=this.method,e=v(this.timeNode);let s=null;return t===at.SINE?s=e.add(.75).mul(Math.PI*2).sin().mul(.5).add(.5):t===at.SQUARE?s=e.fract().round():t===at.TRIANGLE?s=e.add(.5).fract().mul(2).sub(1).abs():t===at.SAWTOOTH&&(s=e.fract()),s}serialize(t){super.serialize(t),t.method=this.method}deserialize(t){super.deserialize(t),this.method=t.method}}at.SINE="sine",at.SQUARE="square",at.TRIANGLE="triangle",at.SAWTOOTH="sawtooth",at.SINE,at.SQUARE,at.TRIANGLE,at.SAWTOOTH,new Jn,new M,new M,new M,new Q,new M(0,0,-1),new Rt,new M,new M,new Rt,new Z,new nr,gi.flipX();class qt extends U{static get type(){return"SceneNode"}constructor(t=qt.BACKGROUND_BLURRINESS,e=null){super(),this.scope=t,this.scene=e}setup(t){const e=this.scope,s=this.scene!==null?this.scene:t.scene;let n;return e===qt.BACKGROUND_BLURRINESS?n=Ne("backgroundBlurriness","float",s):e===qt.BACKGROUND_INTENSITY?n=Ne("backgroundIntensity","float",s):console.error("THREE.SceneNode: Unknown scope:",e),n}}qt.BACKGROUND_BLURRINESS="backgroundBlurriness",qt.BACKGROUND_INTENSITY="backgroundIntensity",qt.BACKGROUND_BLURRINESS,qt.BACKGROUND_INTENSITY;const zu=new Z;class bu extends tn{static get type(){return"PassTextureNode"}constructor(t,e){super(e),this.passNode=t,this.setUpdateMatrix(!1)}setup(t){return t.object.isQuadMesh&&this.passNode.build(t),super.setup(t)}clone(){return new this.constructor(this.passNode,this.value)}}class ro extends bu{static get type(){return"PassMultipleTextureNode"}constructor(t,e,s=!1){super(t,null),this.textureName=e,this.previousTexture=s}updateTexture(){this.value=this.previousTexture?this.passNode.getPreviousTexture(this.textureName):this.passNode.getTexture(this.textureName)}setup(t){return this.updateTexture(),super.setup(t)}clone(){return new this.constructor(this.passNode,this.textureName,this.previousTexture)}}class rn extends Tt{static get type(){return"PassNode"}constructor(t,e,s,n={}){super("vec4"),this.scope=t,this.scene=e,this.camera=s,this.options=n,this._pixelRatio=1,this._width=1,this._height=1;const i=new pr;i.isRenderTargetTexture=!0,i.name="depth";const o=new nr(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:1016,...n});o.texture.name="output",o.depthTexture=i,this.renderTarget=o,this.updateBeforeType=K.FRAME,this._textures={output:o.texture,depth:i},this._textureNodes={},this._linearDepthNodes={},this._viewZNodes={},this._previousTextures={},this._previousTextureNodes={},this._cameraNear=Mt(0),this._cameraFar=Mt(0),this._mrt=null,this.isPassNode=!0}setMRT(t){return this._mrt=t,this}getMRT(){return this._mrt}isGlobal(){return!0}getTexture(t){let e=this._textures[t];return e===void 0&&(e=this.renderTarget.texture.clone(),e.isRenderTargetTexture=!0,e.name=t,this._textures[t]=e,this.renderTarget.textures.push(e)),e}getPreviousTexture(t){let e=this._previousTextures[t];return e===void 0&&(e=this.getTexture(t).clone(),e.isRenderTargetTexture=!0,this._previousTextures[t]=e),e}toggleTexture(t){const e=this._previousTextures[t];if(e!==void 0){const s=this._textures[t],n=this.renderTarget.textures.indexOf(s);this.renderTarget.textures[n]=e,this._textures[t]=e,this._previousTextures[t]=s,this._textureNodes[t].updateTexture(),this._previousTextureNodes[t].updateTexture()}}getTextureNode(t="output"){let e=this._textureNodes[t];return e===void 0&&(this._textureNodes[t]=e=v(new ro(this,t)),this._textureNodes[t].updateTexture()),e}getPreviousTextureNode(t="output"){let e=this._previousTextureNodes[t];return e===void 0&&(this._textureNodes[t]===void 0&&this.getTextureNode(t),this._previousTextureNodes[t]=e=v(new ro(this,t,!0)),this._previousTextureNodes[t].updateTexture()),e}getViewZNode(t="depth"){let e=this._viewZNodes[t];if(e===void 0){const s=this._cameraNear,n=this._cameraFar;this._viewZNodes[t]=e=no(this.getTextureNode(t),s,n)}return e}getLinearDepthNode(t="depth"){let e=this._linearDepthNodes[t];if(e===void 0){const s=this._cameraNear,n=this._cameraFar,i=this.getViewZNode(t);this._linearDepthNodes[t]=e=nn(i,s,n)}return e}setup({renderer:t}){return this.renderTarget.samples=this.options.samples===void 0?t.samples:this.options.samples,t.backend.isWebGLBackend===!0&&(this.renderTarget.samples=0),this.renderTarget.depthTexture.isMultisampleRenderTargetTexture=this.renderTarget.samples>1,this.scope===rn.COLOR?this.getTextureNode():this.getLinearDepthNode()}updateBefore(t){const{renderer:e}=t,{scene:s,camera:n}=this;this._pixelRatio=e.getPixelRatio();const i=e.getSize(zu);this.setSize(i.width,i.height);const o=e.getRenderTarget(),a=e.getMRT();this._cameraNear.value=n.near,this._cameraFar.value=n.far;for(const c in this._previousTextures)this.toggleTexture(c);e.setRenderTarget(this.renderTarget),e.setMRT(this._mrt),e.render(s,n),e.setRenderTarget(o),e.setMRT(a)}setSize(t,e){this._width=t,this._height=e;const s=this._width*this._pixelRatio,n=this._height*this._pixelRatio;this.renderTarget.setSize(s,n)}setPixelRatio(t){this._pixelRatio=t,this.setSize(this._width,this._height)}dispose(){this.renderTarget.dispose()}}rn.COLOR="color",rn.DEPTH="depth",et(({depthTexture:r,shadowCoord:t})=>ps(r,t.xy).compare(t.z)),et(({depthTexture:r,shadowCoord:t,shadow:e})=>{const s=(m,x)=>ps(r,m).compare(x),n=Ne("mapSize","vec2",e).setGroup(xe),i=Ne("radius","float",e).setGroup(xe),o=V(1).div(n),a=o.x.negate().mul(i),c=o.y.negate().mul(i),u=o.x.mul(i),h=o.y.mul(i),l=a.div(2),d=c.div(2),f=u.div(2),p=h.div(2);return Te(s(t.xy.add(V(a,c)),t.z),s(t.xy.add(V(0,c)),t.z),s(t.xy.add(V(u,c)),t.z),s(t.xy.add(V(l,d)),t.z),s(t.xy.add(V(0,d)),t.z),s(t.xy.add(V(f,d)),t.z),s(t.xy.add(V(a,0)),t.z),s(t.xy.add(V(l,0)),t.z),s(t.xy,t.z),s(t.xy.add(V(f,0)),t.z),s(t.xy.add(V(u,0)),t.z),s(t.xy.add(V(l,p)),t.z),s(t.xy.add(V(0,p)),t.z),s(t.xy.add(V(f,p)),t.z),s(t.xy.add(V(a,h)),t.z),s(t.xy.add(V(0,h)),t.z),s(t.xy.add(V(u,h)),t.z)).mul(1/17)}),et(({depthTexture:r,shadowCoord:t,shadow:e})=>{const s=(h,l)=>ps(r,h).compare(l),n=Ne("mapSize","vec2",e).setGroup(xe),i=V(1).div(n),o=i.x,a=i.y,c=t.xy,u=ci(c.mul(n).add(.5));return c.subAssign(u.mul(i)),Te(s(c,t.z),s(c.add(V(o,0)),t.z),s(c.add(V(0,a)),t.z),s(c.add(i),t.z),he(s(c.add(V(o.negate(),0)),t.z),s(c.add(V(o.mul(2),0)),t.z),u.x),he(s(c.add(V(o.negate(),a)),t.z),s(c.add(V(o.mul(2),a)),t.z),u.x),he(s(c.add(V(0,a.negate())),t.z),s(c.add(V(0,a.mul(2))),t.z),u.y),he(s(c.add(V(o,a.negate())),t.z),s(c.add(V(o,a.mul(2))),t.z),u.y),he(he(s(c.add(V(o.negate(),a.negate())),t.z),s(c.add(V(o.mul(2),a.negate())),t.z),u.x),he(s(c.add(V(o.negate(),a.mul(2))),t.z),s(c.add(V(o.mul(2),a.mul(2))),t.z),u.x),u.y)).mul(1/9)}),et(({depthTexture:r,shadowCoord:t})=>{const e=H(1).toVar(),s=ps(r).uv(t.xy).rg,n=Or(t.z,s.x);return oi(n.notEqual(H(1)),()=>{const i=t.z.sub(s.x),o=ui(0,s.y.mul(s.y));let a=o.div(o.add(i.mul(i)));a=Js(Ys(a,.3).div(.95-.3)),e.assign(Js(ui(n,a)))}),e}),et(({samples:r,radius:t,size:e,shadowPass:s})=>{const n=H(0).toVar(),i=H(0).toVar(),o=r.lessThanEqual(H(1)).select(H(0),H(2).div(r.sub(1))),a=r.lessThanEqual(H(1)).select(H(0),H(-1));$e({start:Ve(0),end:Ve(r),type:"int",condition:"<"},({i:u})=>{const h=a.add(H(u).mul(o)),l=s.uv(Te(sn.xy,V(0,h).mul(t)).div(e)).x;n.addAssign(l),i.addAssign(l.mul(l))}),n.divAssign(r),i.divAssign(r);const c=ai(i.sub(n.mul(n)));return V(n,c)}),et(({samples:r,radius:t,size:e,shadowPass:s})=>{const n=H(0).toVar(),i=H(0).toVar(),o=r.lessThanEqual(H(1)).select(H(0),H(2).div(r.sub(1))),a=r.lessThanEqual(H(1)).select(H(0),H(-1));$e({start:Ve(0),end:Ve(r),type:"int",condition:"<"},({i:u})=>{const h=a.add(H(u).mul(o)),l=s.uv(Te(sn.xy,V(h,0).mul(t)).div(e));n.addAssign(l.x),i.addAssign(Te(l.y.mul(l.y),l.x.mul(l.x)))}),n.divAssign(r),i.divAssign(r);const c=ai(i.sub(n.mul(n)));return V(n,c)}),k(1.6605,-.1246,-.0182),k(-.5876,1.1329,-.1006),k(-.0728,-.0083,1.1187),k(.6274,.0691,.0164),k(.3293,.9195,.088),k(.0433,.0113,.8956);class Eu extends U{constructor(t){super(),this.scope=t}generate(t){const{scope:e}=this,{renderer:s}=t;s.backend.isWebGLBackend===!0?t.addFlowCode(` // ${e}Barrier
21
+ `):t.addLineFlowCode(`${e}Barrier()`,this)}}R(Eu);class Ht extends Tt{static get type(){return"AtomicFunctionNode"}constructor(t,e,s,n=null){super("uint"),this.method=t,this.pointerNode=e,this.valueNode=s,this.storeNode=n}getInputType(t){return this.pointerNode.getNodeType(t)}getNodeType(t){return this.getInputType(t)}generate(t){const e=this.method,s=this.getNodeType(t),n=this.getInputType(t),i=this.pointerNode,o=this.valueNode,a=[];a.push(`&${i.build(t,n)}`),a.push(o.build(t,n));const c=`${t.getMethod(e,s)}( ${a.join(", ")} )`;if(this.storeNode!==null){const u=this.storeNode.build(t,n);t.addLineFlowCode(`${u} = ${c}`,this)}else t.addLineFlowCode(c,this)}}if(Ht.ATOMIC_LOAD="atomicLoad",Ht.ATOMIC_STORE="atomicStore",Ht.ATOMIC_ADD="atomicAdd",Ht.ATOMIC_SUB="atomicSub",Ht.ATOMIC_MAX="atomicMax",Ht.ATOMIC_MIN="atomicMin",Ht.ATOMIC_AND="atomicAnd",Ht.ATOMIC_OR="atomicOr",Ht.ATOMIC_XOR="atomicXor",R(Ht),typeof __THREE_DEVTOOLS__<"u"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("register",{detail:{revision:"169"}})),typeof window<"u"){try{self.location.href,window.__THREE__IMPORTS__||(window.__THREE__IMPORTS__=[]),window.__THREE__IMPORTS__.push({url:self.location.href,revision:"169"})}catch{}window.__THREE__?(console.warn("WARNING: Multiple instances of Three.js being imported. Existing: "+window.__THREE__+", new: 169"),console.warn(window.__THREE__IMPORTS__)):window.__THREE__="169"}const oo=0,Cu=1,Fu=2,ao=2,Ni=1.25,co=1,ft=32,it=ft/4,ho=65535,on=Math.pow(2,-24),wi=Symbol("SKIP_GENERATION"),uo={strategy:oo,maxDepth:40,maxLeafSize:10,useSharedArrayBuffer:!1,setBoundingBox:!0,onProgress:null,indirect:!1,verbose:!0,range:null,[wi]:!1};class jt{constructor(){this.min=1/0,this.max=-1/0}setFromPointsField(t,e){let s=1/0,n=-1/0;for(let i=0,o=t.length;i<o;i++){const c=t[i][e];s=c<s?c:s,n=c>n?c:n}this.min=s,this.max=n}setFromPoints(t,e){let s=1/0,n=-1/0;for(let i=0,o=e.length;i<o;i++){const a=e[i],c=t.dot(a);s=c<s?c:s,n=c>n?c:n}this.min=s,this.max=n}isSeparated(t){return this.min>t.max||t.min>this.max}}jt.prototype.setFromBox=(function(){const r=new M;return function(e,s){const n=s.min,i=s.max;let o=1/0,a=-1/0;for(let c=0;c<=1;c++)for(let u=0;u<=1;u++)for(let h=0;h<=1;h++){r.x=n.x*c+i.x*(1-c),r.y=n.y*u+i.y*(1-u),r.z=n.z*h+i.z*(1-h);const l=e.dot(r);o=Math.min(l,o),a=Math.max(l,a)}this.min=o,this.max=a}})();const Bu=(function(){const r=new M,t=new M,e=new M;return function(n,i,o){const a=n.start,c=r,u=i.start,h=t;e.subVectors(a,u),r.subVectors(n.end,n.start),t.subVectors(i.end,i.start);const l=e.dot(h),d=h.dot(c),f=h.dot(h),p=e.dot(c),x=c.dot(c)*f-d*d;let g,y;x!==0?g=(l*d-p*f)/x:g=0,y=(l+g*d)/f,o.x=g,o.y=y}})(),Ai=(function(){const r=new Z,t=new M,e=new M;return function(n,i,o,a){Bu(n,i,r);let c=r.x,u=r.y;if(c>=0&&c<=1&&u>=0&&u<=1){n.at(c,o),i.at(u,a);return}else if(c>=0&&c<=1){u<0?i.at(0,a):i.at(1,a),n.closestPointToPoint(a,!0,o);return}else if(u>=0&&u<=1){c<0?n.at(0,o):n.at(1,o),i.closestPointToPoint(o,!0,a);return}else{let h;c<0?h=n.start:h=n.end;let l;u<0?l=i.start:l=i.end;const d=t,f=e;if(n.closestPointToPoint(l,!0,t),i.closestPointToPoint(h,!0,e),d.distanceToSquared(l)<=f.distanceToSquared(h)){o.copy(d),a.copy(l);return}else{o.copy(h),a.copy(f);return}}}})(),Ru=(function(){const r=new M,t=new M,e=new Jn,s=new Jt;return function(i,o){const{radius:a,center:c}=i,{a:u,b:h,c:l}=o;if(s.start=u,s.end=h,s.closestPointToPoint(c,!0,r).distanceTo(c)<=a||(s.start=u,s.end=l,s.closestPointToPoint(c,!0,r).distanceTo(c)<=a)||(s.start=h,s.end=l,s.closestPointToPoint(c,!0,r).distanceTo(c)<=a))return!0;const m=o.getPlane(e);if(Math.abs(m.distanceToPoint(c))<=a){const g=m.projectPoint(c,t);if(o.containsPoint(g))return!0}return!1}})(),Iu=["x","y","z"],Kt=1e-15,lo=Kt*Kt;function Et(r){return Math.abs(r)<Kt}class Dt extends _t{constructor(...t){super(...t),this.isExtendedTriangle=!0,this.satAxes=new Array(4).fill().map(()=>new M),this.satBounds=new Array(4).fill().map(()=>new jt),this.points=[this.a,this.b,this.c],this.plane=new Jn,this.isDegenerateIntoSegment=!1,this.isDegenerateIntoPoint=!1,this.degenerateSegment=new Jt,this.needsUpdate=!0}intersectsSphere(t){return Ru(t,this)}update(){const t=this.a,e=this.b,s=this.c,n=this.points,i=this.satAxes,o=this.satBounds,a=i[0],c=o[0];this.getNormal(a),c.setFromPoints(a,n);const u=i[1],h=o[1];u.subVectors(t,e),h.setFromPoints(u,n);const l=i[2],d=o[2];l.subVectors(e,s),d.setFromPoints(l,n);const f=i[3],p=o[3];f.subVectors(s,t),p.setFromPoints(f,n);const m=u.length(),x=l.length(),g=f.length();this.isDegenerateIntoPoint=!1,this.isDegenerateIntoSegment=!1,m<Kt?x<Kt||g<Kt?this.isDegenerateIntoPoint=!0:(this.isDegenerateIntoSegment=!0,this.degenerateSegment.start.copy(t),this.degenerateSegment.end.copy(s)):x<Kt?g<Kt?this.isDegenerateIntoPoint=!0:(this.isDegenerateIntoSegment=!0,this.degenerateSegment.start.copy(e),this.degenerateSegment.end.copy(t)):g<Kt&&(this.isDegenerateIntoSegment=!0,this.degenerateSegment.start.copy(s),this.degenerateSegment.end.copy(e)),this.plane.setFromNormalAndCoplanarPoint(a,t),this.needsUpdate=!1}}Dt.prototype.closestPointToSegment=(function(){const r=new M,t=new M,e=new Jt;return function(n,i=null,o=null){const{start:a,end:c}=n,u=this.points;let h,l=1/0;for(let d=0;d<3;d++){const f=(d+1)%3;e.start.copy(u[d]),e.end.copy(u[f]),Ai(e,n,r,t),h=r.distanceToSquared(t),h<l&&(l=h,i&&i.copy(r),o&&o.copy(t))}return this.closestPointToPoint(a,r),h=a.distanceToSquared(r),h<l&&(l=h,i&&i.copy(r),o&&o.copy(a)),this.closestPointToPoint(c,r),h=c.distanceToSquared(r),h<l&&(l=h,i&&i.copy(r),o&&o.copy(c)),Math.sqrt(l)}})(),Dt.prototype.intersectsTriangle=(function(){const r=new Dt,t=new jt,e=new jt,s=new M,n=new M,i=new M,o=new M,a=new Jt,c=new Jt,u=new M,h=new Z,l=new Z;function d(N,w,T,_){const S=s;!N.isDegenerateIntoPoint&&!N.isDegenerateIntoSegment?S.copy(N.plane.normal):S.copy(w.plane.normal);const z=N.satBounds,B=N.satAxes;for(let C=1;C<4;C++){const P=z[C],L=B[C];if(t.setFromPoints(L,w.points),P.isSeparated(t)||(o.copy(S).cross(L),t.setFromPoints(o,N.points),e.setFromPoints(o,w.points),t.isSeparated(e)))return!1}const b=w.satBounds,I=w.satAxes;for(let C=1;C<4;C++){const P=b[C],L=I[C];if(t.setFromPoints(L,N.points),P.isSeparated(t)||(o.crossVectors(S,L),t.setFromPoints(o,N.points),e.setFromPoints(o,w.points),t.isSeparated(e)))return!1}return T&&(_||console.warn("ExtendedTriangle.intersectsTriangle: Triangles are coplanar which does not support an output edge. Setting edge to 0, 0, 0."),T.start.set(0,0,0),T.end.set(0,0,0)),!0}function f(N,w,T,_,S,z,B,b,I,C,P){let L=B/(B-b);C.x=_+(S-_)*L,P.start.subVectors(w,N).multiplyScalar(L).add(N),L=B/(B-I),C.y=_+(z-_)*L,P.end.subVectors(T,N).multiplyScalar(L).add(N)}function p(N,w,T,_,S,z,B,b,I,C,P){if(S>0)f(N.c,N.a,N.b,_,w,T,I,B,b,C,P);else if(z>0)f(N.b,N.a,N.c,T,w,_,b,B,I,C,P);else if(b*I>0||B!=0)f(N.a,N.b,N.c,w,T,_,B,b,I,C,P);else if(b!=0)f(N.b,N.a,N.c,T,w,_,b,B,I,C,P);else if(I!=0)f(N.c,N.a,N.b,_,w,T,I,B,b,C,P);else return!0;return!1}function m(N,w,T,_){const S=w.degenerateSegment,z=N.plane.distanceToPoint(S.start),B=N.plane.distanceToPoint(S.end);return Et(z)?Et(B)?d(N,w,T,_):(T&&(T.start.copy(S.start),T.end.copy(S.start)),N.containsPoint(S.start)):Et(B)?(T&&(T.start.copy(S.end),T.end.copy(S.end)),N.containsPoint(S.end)):N.plane.intersectLine(S,s)!=null?(T&&(T.start.copy(s),T.end.copy(s)),N.containsPoint(s)):!1}function x(N,w,T){const _=w.a;return Et(N.plane.distanceToPoint(_))&&N.containsPoint(_)?(T&&(T.start.copy(_),T.end.copy(_)),!0):!1}function g(N,w,T){const _=N.degenerateSegment,S=w.a;return _.closestPointToPoint(S,!0,s),S.distanceToSquared(s)<lo?(T&&(T.start.copy(S),T.end.copy(S)),!0):!1}function y(N,w,T,_){if(N.isDegenerateIntoSegment)if(w.isDegenerateIntoSegment){const S=N.degenerateSegment,z=w.degenerateSegment,B=n,b=i;S.delta(B),z.delta(b);const I=s.subVectors(z.start,S.start),C=B.x*b.y-B.y*b.x;if(Et(C))return!1;const P=(I.x*b.y-I.y*b.x)/C,L=-(B.x*I.y-B.y*I.x)/C;if(P<0||P>1||L<0||L>1)return!1;const D=S.start.z+B.z*P,X=z.start.z+b.z*L;return Et(D-X)?(T&&(T.start.copy(S.start).addScaledVector(B,P),T.end.copy(S.start).addScaledVector(B,P)),!0):!1}else return w.isDegenerateIntoPoint?g(N,w,T):m(w,N,T,_);else{if(N.isDegenerateIntoPoint)return w.isDegenerateIntoPoint?w.a.distanceToSquared(N.a)<lo?(T&&(T.start.copy(N.a),T.end.copy(N.a)),!0):!1:w.isDegenerateIntoSegment?g(w,N,T):x(w,N,T);if(w.isDegenerateIntoPoint)return x(N,w,T);if(w.isDegenerateIntoSegment)return m(N,w,T,_)}}return function(w,T=null,_=!1){this.needsUpdate&&this.update(),w.isExtendedTriangle?w.needsUpdate&&w.update():(r.copy(w),r.update(),w=r);const S=y(this,w,T,_);if(S!==void 0)return S;const z=this.plane,B=w.plane;let b=B.distanceToPoint(this.a),I=B.distanceToPoint(this.b),C=B.distanceToPoint(this.c);Et(b)&&(b=0),Et(I)&&(I=0),Et(C)&&(C=0);const P=b*I,L=b*C;if(P>0&&L>0)return!1;let D=z.distanceToPoint(w.a),X=z.distanceToPoint(w.b),ee=z.distanceToPoint(w.c);Et(D)&&(D=0),Et(X)&&(X=0),Et(ee)&&(ee=0);const Me=D*X,_e=D*ee;if(Me>0&&_e>0)return!1;n.copy(z.normal),i.copy(B.normal);const pe=n.cross(i);let me=0,$i=Math.abs(pe.x);const Bo=Math.abs(pe.y);Bo>$i&&($i=Bo,me=1),Math.abs(pe.z)>$i&&(me=2);const es=Iu[me],Cl=this.a[es],Fl=this.b[es],Bl=this.c[es],Rl=w.a[es],Il=w.b[es],Pl=w.c[es];if(p(this,Cl,Fl,Bl,P,L,b,I,C,h,a))return d(this,w,T,_);if(p(w,Rl,Il,Pl,Me,_e,D,X,ee,l,c))return d(this,w,T,_);if(h.y<h.x){const Gi=h.y;h.y=h.x,h.x=Gi,u.copy(a.start),a.start.copy(a.end),a.end.copy(u)}if(l.y<l.x){const Gi=l.y;l.y=l.x,l.x=Gi,u.copy(c.start),c.start.copy(c.end),c.end.copy(u)}return h.y<l.x||l.y<h.x?!1:(T&&(l.x>h.x?T.start.copy(c.start):T.start.copy(a.start),l.y<h.y?T.end.copy(c.end):T.end.copy(a.end)),!0)}})(),Dt.prototype.distanceToPoint=(function(){const r=new M;return function(e){return this.closestPointToPoint(e,r),e.distanceTo(r)}})(),Dt.prototype.distanceToTriangle=(function(){const r=new M,t=new M,e=["a","b","c"],s=new Jt,n=new Jt;return function(o,a=null,c=null){const u=a||c?s:null;if(this.intersectsTriangle(o,u))return(a||c)&&(a&&u.getCenter(a),c&&u.getCenter(c)),0;let h=1/0;for(let l=0;l<3;l++){let d;const f=e[l],p=o[f];this.closestPointToPoint(p,r),d=p.distanceToSquared(r),d<h&&(h=d,a&&a.copy(r),c&&c.copy(p));const m=this[f];o.closestPointToPoint(m,r),d=m.distanceToSquared(r),d<h&&(h=d,a&&a.copy(m),c&&c.copy(r))}for(let l=0;l<3;l++){const d=e[l],f=e[(l+1)%3];s.set(this[d],this[f]);for(let p=0;p<3;p++){const m=e[p],x=e[(p+1)%3];n.set(o[m],o[x]),Ai(s,n,r,t);const g=r.distanceToSquared(t);g<h&&(h=g,a&&a.copy(r),c&&c.copy(t))}}return Math.sqrt(h)}})();class gt{constructor(t,e,s){this.isOrientedBox=!0,this.min=new M,this.max=new M,this.matrix=new Q,this.invMatrix=new Q,this.points=new Array(8).fill().map(()=>new M),this.satAxes=new Array(3).fill().map(()=>new M),this.satBounds=new Array(3).fill().map(()=>new jt),this.alignedSatBounds=new Array(3).fill().map(()=>new jt),this.needsUpdate=!1,t&&this.min.copy(t),e&&this.max.copy(e),s&&this.matrix.copy(s)}set(t,e,s){this.min.copy(t),this.max.copy(e),this.matrix.copy(s),this.needsUpdate=!0}copy(t){this.min.copy(t.min),this.max.copy(t.max),this.matrix.copy(t.matrix),this.needsUpdate=!0}}gt.prototype.update=(function(){return function(){const t=this.matrix,e=this.min,s=this.max,n=this.points;for(let u=0;u<=1;u++)for(let h=0;h<=1;h++)for(let l=0;l<=1;l++){const d=1*u|2*h|4*l,f=n[d];f.x=u?s.x:e.x,f.y=h?s.y:e.y,f.z=l?s.z:e.z,f.applyMatrix4(t)}const i=this.satBounds,o=this.satAxes,a=n[0];for(let u=0;u<3;u++){const h=o[u],l=i[u],d=1<<u,f=n[d];h.subVectors(a,f),l.setFromPoints(h,n)}const c=this.alignedSatBounds;c[0].setFromPointsField(n,"x"),c[1].setFromPointsField(n,"y"),c[2].setFromPointsField(n,"z"),this.invMatrix.copy(this.matrix).invert(),this.needsUpdate=!1}})(),gt.prototype.intersectsBox=(function(){const r=new jt;return function(e){this.needsUpdate&&this.update();const s=e.min,n=e.max,i=this.satBounds,o=this.satAxes,a=this.alignedSatBounds;if(r.min=s.x,r.max=n.x,a[0].isSeparated(r)||(r.min=s.y,r.max=n.y,a[1].isSeparated(r))||(r.min=s.z,r.max=n.z,a[2].isSeparated(r)))return!1;for(let c=0;c<3;c++){const u=o[c],h=i[c];if(r.setFromBox(u,e),h.isSeparated(r))return!1}return!0}})(),gt.prototype.intersectsTriangle=(function(){const r=new Dt,t=new Array(3),e=new jt,s=new jt,n=new M;return function(o){this.needsUpdate&&this.update(),o.isExtendedTriangle?o.needsUpdate&&o.update():(r.copy(o),r.update(),o=r);const a=this.satBounds,c=this.satAxes;t[0]=o.a,t[1]=o.b,t[2]=o.c;for(let d=0;d<3;d++){const f=a[d],p=c[d];if(e.setFromPoints(p,t),f.isSeparated(e))return!1}const u=o.satBounds,h=o.satAxes,l=this.points;for(let d=0;d<3;d++){const f=u[d],p=h[d];if(e.setFromPoints(p,l),f.isSeparated(e))return!1}for(let d=0;d<3;d++){const f=c[d];for(let p=0;p<4;p++){const m=h[p];if(n.crossVectors(f,m),e.setFromPoints(n,t),s.setFromPoints(n,l),e.isSeparated(s))return!1}}return!0}})(),gt.prototype.closestPointToPoint=(function(){return function(t,e){return this.needsUpdate&&this.update(),e.copy(t).applyMatrix4(this.invMatrix).clamp(this.min,this.max).applyMatrix4(this.matrix),e}})(),gt.prototype.distanceToPoint=(function(){const r=new M;return function(e){return this.closestPointToPoint(e,r),e.distanceTo(r)}})(),gt.prototype.distanceToBox=(function(){const r=["x","y","z"],t=new Array(12).fill().map(()=>new Jt),e=new Array(12).fill().map(()=>new Jt),s=new M,n=new M;return function(o,a=0,c=null,u=null){if(this.needsUpdate&&this.update(),this.intersectsBox(o))return(c||u)&&(o.getCenter(n),this.closestPointToPoint(n,s),o.closestPointToPoint(s,n),c&&c.copy(s),u&&u.copy(n)),0;const h=a*a,l=o.min,d=o.max,f=this.points;let p=1/0;for(let x=0;x<8;x++){const g=f[x];n.copy(g).clamp(l,d);const y=g.distanceToSquared(n);if(y<p&&(p=y,c&&c.copy(g),u&&u.copy(n),y<h))return Math.sqrt(y)}let m=0;for(let x=0;x<3;x++)for(let g=0;g<=1;g++)for(let y=0;y<=1;y++){const N=(x+1)%3,w=(x+2)%3,T=g<<N|y<<w,_=1<<x|g<<N|y<<w,S=f[T],z=f[_];t[m].set(S,z);const b=r[x],I=r[N],C=r[w],P=e[m],L=P.start,D=P.end;L[b]=l[b],L[I]=g?l[I]:d[I],L[C]=y?l[C]:d[I],D[b]=d[b],D[I]=g?l[I]:d[I],D[C]=y?l[C]:d[I],m++}for(let x=0;x<=1;x++)for(let g=0;g<=1;g++)for(let y=0;y<=1;y++){n.x=x?d.x:l.x,n.y=g?d.y:l.y,n.z=y?d.z:l.z,this.closestPointToPoint(n,s);const N=n.distanceToSquared(s);if(N<p&&(p=N,c&&c.copy(s),u&&u.copy(n),N<h))return Math.sqrt(N)}for(let x=0;x<12;x++){const g=t[x];for(let y=0;y<12;y++){const N=e[y];Ai(g,N,s,n);const w=s.distanceToSquared(n);if(w<p&&(p=w,c&&c.copy(s),u&&u.copy(n),w<h))return Math.sqrt(w)}}return Math.sqrt(p)}})();class Si{constructor(t){this._getNewPrimitive=t,this._primitives=[]}getPrimitive(){const t=this._primitives;return t.length===0?this._getNewPrimitive():t.pop()}releasePrimitive(t){this._primitives.push(t)}}class Pu extends Si{constructor(){super(()=>new Dt)}}const Ct=new Pu,As=new M,Mi=new M;function vu(r,t,e={},s=0,n=1/0){const i=s*s,o=n*n;let a=1/0,c=null;if(r.shapecast({boundsTraverseOrder:h=>(As.copy(t).clamp(h.min,h.max),As.distanceToSquared(t)),intersectsBounds:(h,l,d)=>d<a&&d<o,intersectsTriangle:(h,l)=>{h.closestPointToPoint(t,As);const d=t.distanceToSquared(As);return d<a&&(Mi.copy(As),a=d,c=l),d<i}}),a===1/0)return null;const u=Math.sqrt(a);return e.point?e.point.copy(Mi):e.point=Mi.clone(),e.distance=u,e.faceIndex=c,e}function rt(r,t){return t[r+15]===ho}function pt(r,t){return t[r+6]}function xt(r,t){return t[r+14]}function ct(r){return r+it}function ht(r,t){const e=t[r+6];return r+e*it}function _i(r,t){return t[r+7]}function zd(r){return r}const an=parseInt("169")>=169,Lu=parseInt("169")<=161,we=new M,Ae=new M,Se=new M,cn=new Z,hn=new Z,un=new Z,fo=new M,po=new M,mo=new M,Ss=new M;function Ou(r,t,e,s,n,i,o,a){let c;if(i===1?c=r.intersectTriangle(s,e,t,!0,n):c=r.intersectTriangle(t,e,s,i!==2,n),c===null)return null;const u=r.origin.distanceTo(n);return u<o||u>a?null:{distance:u,point:n.clone()}}function yo(r,t,e,s,n,i,o,a,c,u,h){we.fromBufferAttribute(t,i),Ae.fromBufferAttribute(t,o),Se.fromBufferAttribute(t,a);const l=Ou(r,we,Ae,Se,Ss,c,u,h);if(l){if(s){cn.fromBufferAttribute(s,i),hn.fromBufferAttribute(s,o),un.fromBufferAttribute(s,a),l.uv=new Z;const f=_t.getInterpolation(Ss,we,Ae,Se,cn,hn,un,l.uv);an||(l.uv=f)}if(n){cn.fromBufferAttribute(n,i),hn.fromBufferAttribute(n,o),un.fromBufferAttribute(n,a),l.uv1=new Z;const f=_t.getInterpolation(Ss,we,Ae,Se,cn,hn,un,l.uv1);an||(l.uv1=f),Lu&&(l.uv2=l.uv1)}if(e){fo.fromBufferAttribute(e,i),po.fromBufferAttribute(e,o),mo.fromBufferAttribute(e,a),l.normal=new M;const f=_t.getInterpolation(Ss,we,Ae,Se,fo,po,mo,l.normal);l.normal.dot(r.direction)>0&&l.normal.multiplyScalar(-1),an||(l.normal=f)}const d={a:i,b:o,c:a,normal:new M,materialIndex:0};if(_t.getNormal(we,Ae,Se,d.normal),l.face=d,l.faceIndex=i,an){const f=new M;_t.getBarycoord(Ss,we,Ae,Se,f),l.barycoord=f}}return l}function go(r){return r&&r.isMaterial?r.side:r}function ln(r,t,e,s,n,i,o){const a=s*3;let c=a+0,u=a+1,h=a+2;const{index:l,groups:d}=r;r.index&&(c=l.getX(c),u=l.getX(u),h=l.getX(h));const{position:f,normal:p,uv:m,uv1:x}=r.attributes;if(Array.isArray(t)){const g=s*3;for(let y=0,N=d.length;y<N;y++){const{start:w,count:T,materialIndex:_}=d[y];if(g>=w&&g<w+T){const S=go(t[_]),z=yo(e,f,p,m,x,c,u,h,S,i,o);if(z)if(z.faceIndex=s,z.face.materialIndex=_,n)n.push(z);else return z}}}else{const g=go(t),y=yo(e,f,p,m,x,c,u,h,g,i,o);if(y)if(y.faceIndex=s,y.face.materialIndex=0,n)n.push(y);else return y}return null}function nt(r,t,e,s){const n=r.a,i=r.b,o=r.c;let a=t,c=t+1,u=t+2;e&&(a=e.getX(a),c=e.getX(c),u=e.getX(u)),n.x=s.getX(a),n.y=s.getY(a),n.z=s.getZ(a),i.x=s.getX(c),i.y=s.getY(c),i.z=s.getZ(c),o.x=s.getX(u),o.y=s.getY(u),o.z=s.getZ(u)}function Du(r,t,e,s,n,i,o,a){const{geometry:c,_indirectBuffer:u}=r;for(let h=s,l=s+n;h<l;h++)ln(c,t,e,h,i,o,a)}function Vu(r,t,e,s,n,i,o){const{geometry:a,_indirectBuffer:c}=r;let u=1/0,h=null;for(let l=s,d=s+n;l<d;l++){let f;f=ln(a,t,e,l,null,i,o),f&&f.distance<u&&(h=f,u=f.distance)}return h}function Uu(r,t,e,s,n,i,o){const{geometry:a}=e,{index:c}=a,u=a.attributes.position;for(let h=r,l=t+r;h<l;h++){let d;if(d=h,nt(o,d*3,c,u),o.needsUpdate=!0,s(o,d,n,i))return!0}return!1}function ku(r,t=null){t&&Array.isArray(t)&&(t=new Set(t));const e=r.geometry,s=e.index?e.index.array:null,n=e.attributes.position;let i,o,a,c,u=0;const h=r._roots;for(let d=0,f=h.length;d<f;d++)i=h[d],o=new Uint32Array(i),a=new Uint16Array(i),c=new Float32Array(i),l(0,u),u+=i.byteLength;function l(d,f,p=!1){const m=d*2;if(rt(m,a)){const x=pt(d,o),g=xt(m,a);let y=1/0,N=1/0,w=1/0,T=-1/0,_=-1/0,S=-1/0;for(let z=3*x,B=3*(x+g);z<B;z++){let b=s[z];const I=n.getX(b),C=n.getY(b),P=n.getZ(b);I<y&&(y=I),I>T&&(T=I),C<N&&(N=C),C>_&&(_=C),P<w&&(w=P),P>S&&(S=P)}return c[d+0]!==y||c[d+1]!==N||c[d+2]!==w||c[d+3]!==T||c[d+4]!==_||c[d+5]!==S?(c[d+0]=y,c[d+1]=N,c[d+2]=w,c[d+3]=T,c[d+4]=_,c[d+5]=S,!0):!1}else{const x=ct(d),g=ht(d,o);let y=p,N=!1,w=!1;if(t){if(!y){const b=x/it+f/ft,I=g/it+f/ft;N=t.has(b),w=t.has(I),y=!N&&!w}}else N=!0,w=!0;const T=y||N,_=y||w;let S=!1;T&&(S=l(x,f,y));let z=!1;_&&(z=l(g,f,y));const B=S||z;if(B)for(let b=0;b<3;b++){const I=x+b,C=g+b,P=c[I],L=c[I+3],D=c[C],X=c[C+3];c[d+b]=P<D?P:D,c[d+b+3]=L>X?L:X}return B}}}function ue(r,t,e,s,n){let i,o,a,c,u,h;const l=1/e.direction.x,d=1/e.direction.y,f=1/e.direction.z,p=e.origin.x,m=e.origin.y,x=e.origin.z;let g=t[r],y=t[r+3],N=t[r+1],w=t[r+3+1],T=t[r+2],_=t[r+3+2];return l>=0?(i=(g-p)*l,o=(y-p)*l):(i=(y-p)*l,o=(g-p)*l),d>=0?(a=(N-m)*d,c=(w-m)*d):(a=(w-m)*d,c=(N-m)*d),i>c||a>o||((a>i||isNaN(i))&&(i=a),(c<o||isNaN(o))&&(o=c),f>=0?(u=(T-x)*f,h=(_-x)*f):(u=(_-x)*f,h=(T-x)*f),i>h||u>o)?!1:((u>i||i!==i)&&(i=u),(h<o||o!==o)&&(o=h),i<=n&&o>=s)}class qu{constructor(){this.float32Array=null,this.uint16Array=null,this.uint32Array=null;const t=[];let e=null;this.setBuffer=s=>{e&&t.push(e),e=s,this.float32Array=new Float32Array(s),this.uint16Array=new Uint16Array(s),this.uint32Array=new Uint32Array(s)},this.clearBuffer=()=>{e=null,this.float32Array=null,this.uint16Array=null,this.uint32Array=null,t.length!==0&&this.setBuffer(t.pop())}}}const G=new qu;function Hu(r,t,e,s,n,i,o,a){const{geometry:c,_indirectBuffer:u}=r;for(let h=s,l=s+n;h<l;h++){let d=u?u[h]:h;ln(c,t,e,d,i,o,a)}}function Wu(r,t,e,s,n,i,o){const{geometry:a,_indirectBuffer:c}=r;let u=1/0,h=null;for(let l=s,d=s+n;l<d;l++){let f;f=ln(a,t,e,c?c[l]:l,null,i,o),f&&f.distance<u&&(h=f,u=f.distance)}return h}function $u(r,t,e,s,n,i,o){const{geometry:a}=e,{index:c}=a,u=a.attributes.position;for(let h=r,l=t+r;h<l;h++){let d;if(d=e.resolveTriangleIndex(h),nt(o,d*3,c,u),o.needsUpdate=!0,s(o,d,n,i))return!0}return!1}function Gu(r,t,e,s,n,i,o){G.setBuffer(r._roots[t]),zi(0,r,e,s,n,i,o),G.clearBuffer()}function zi(r,t,e,s,n,i,o){const{float32Array:a,uint16Array:c,uint32Array:u}=G,h=r*2;if(rt(h,c)){const d=pt(r,u),f=xt(h,c);Du(t,e,s,d,f,n,i,o)}else{const d=ct(r);ue(d,a,s,i,o)&&zi(d,t,e,s,n,i,o);const f=ht(r,u);ue(f,a,s,i,o)&&zi(f,t,e,s,n,i,o)}}const Xu=["x","y","z"];function Yu(r,t,e,s,n,i){G.setBuffer(r._roots[t]);const o=bi(0,r,e,s,n,i);return G.clearBuffer(),o}function bi(r,t,e,s,n,i){const{float32Array:o,uint16Array:a,uint32Array:c}=G;let u=r*2;if(rt(u,a)){const l=pt(r,c),d=xt(u,a);return Vu(t,e,s,l,d,n,i)}else{const l=_i(r,c),d=Xu[l],p=s.direction[d]>=0;let m,x;p?(m=ct(r),x=ht(r,c)):(m=ht(r,c),x=ct(r));const y=ue(m,o,s,n,i)?bi(m,t,e,s,n,i):null;if(y){const T=y.point[d];if(p?T<=o[x+l]:T>=o[x+l+3])return y}const w=ue(x,o,s,n,i)?bi(x,t,e,s,n,i):null;return y&&w?y.distance<=w.distance?y:w:y||w||null}}function J(r,t,e){return e.min.x=t[r],e.min.y=t[r+1],e.min.z=t[r+2],e.max.x=t[r+3],e.max.y=t[r+4],e.max.z=t[r+5],e}function xo(r){let t=-1,e=-1/0;for(let s=0;s<3;s++){const n=r[s+3]-r[s];n>e&&(e=n,t=s)}return t}function To(r,t){t.set(r)}function No(r,t,e){let s,n;for(let i=0;i<3;i++){const o=i+3;s=r[i],n=t[i],e[i]=s<n?s:n,s=r[o],n=t[o],e[o]=s>n?s:n}}function dn(r,t,e){for(let s=0;s<3;s++){const n=t[r+2*s],i=t[r+2*s+1],o=n-i,a=n+i;o<e[s]&&(e[s]=o),a>e[s+3]&&(e[s+3]=a)}}function Ms(r){const t=r[3]-r[0],e=r[4]-r[1],s=r[5]-r[2];return 2*(t*e+e*s+s*t)}function Ei(r){return r.index?r.index.count:r.attributes.position.count}function fn(r){return Ei(r)/3}function Zu(r,t=ArrayBuffer){return r>65535?new Uint32Array(new t(4*r)):new Uint16Array(new t(2*r))}function Ju(r,t){if(!r.index){const e=r.attributes.position.count,s=t.useSharedArrayBuffer?SharedArrayBuffer:ArrayBuffer,n=Zu(e,s);r.setIndex(new Lt(n,1));for(let i=0;i<e;i++)n[i]=i}}function Qu(r,t,e){const s=Ei(r)/e,n=t||r.drawRange,i=n.start/e,o=(n.start+n.count)/e,a=Math.max(0,i),c=Math.min(s,o)-a;return{offset:Math.floor(a),count:Math.floor(c)}}function ju(r,t){return r.groups.map(e=>({offset:e.start/t,count:e.count/t}))}function wo(r,t,e){const s=Qu(r,t,e),n=ju(r,e);if(!n.length)return[s];const i=[],o=s.offset,a=s.offset+s.count,c=Ei(r)/e,u=[];for(const d of n){const{offset:f,count:p}=d,m=f,x=isFinite(p)?p:c-f,g=f+x;m<a&&g>o&&(u.push({pos:Math.max(o,m),isStart:!0}),u.push({pos:Math.min(a,g),isStart:!1}))}u.sort((d,f)=>d.pos!==f.pos?d.pos-f.pos:d.type==="end"?-1:1);let h=0,l=null;for(const d of u){const f=d.pos;h!==0&&f!==l&&i.push({offset:l,count:f-l}),h+=d.isStart?1:-1,l=f}return i}const pn=new mt,Ge=new Dt,Xe=new Dt,_s=new Q,Ao=new gt,mn=new gt;function Ku(r,t,e,s){G.setBuffer(r._roots[t]);const n=Ci(0,r,e,s);return G.clearBuffer(),n}function Ci(r,t,e,s,n=null){const{float32Array:i,uint16Array:o,uint32Array:a}=G;let c=r*2;if(n===null&&(e.boundingBox||e.computeBoundingBox(),Ao.set(e.boundingBox.min,e.boundingBox.max,s),n=Ao),rt(c,o)){const h=t.geometry,l=h.index,d=h.attributes.position,f=e.index,p=e.attributes.position,m=pt(r,a),x=xt(c,o);if(_s.copy(s).invert(),e.boundsTree)return J(r,i,mn),mn.matrix.copy(_s),mn.needsUpdate=!0,e.boundsTree.shapecast({intersectsBounds:y=>mn.intersectsBox(y),intersectsTriangle:y=>{y.a.applyMatrix4(s),y.b.applyMatrix4(s),y.c.applyMatrix4(s),y.needsUpdate=!0;for(let N=m*3,w=(x+m)*3;N<w;N+=3)if(nt(Xe,N,l,d),Xe.needsUpdate=!0,y.intersectsTriangle(Xe))return!0;return!1}});{const g=fn(e);for(let y=m*3,N=(x+m)*3;y<N;y+=3){nt(Ge,y,l,d),Ge.a.applyMatrix4(_s),Ge.b.applyMatrix4(_s),Ge.c.applyMatrix4(_s),Ge.needsUpdate=!0;for(let w=0,T=g*3;w<T;w+=3)if(nt(Xe,w,f,p),Xe.needsUpdate=!0,Ge.intersectsTriangle(Xe))return!0}}}else{const h=ct(r),l=ht(r,a);return J(h,i,pn),!!(n.intersectsBox(pn)&&Ci(h,t,e,s,n)||(J(l,i,pn),n.intersectsBox(pn)&&Ci(l,t,e,s,n)))}}const yn=new Q,Fi=new gt,zs=new gt,tl=new M,el=new M,sl=new M,nl=new M;function il(r,t,e,s={},n={},i=0,o=1/0){t.boundingBox||t.computeBoundingBox(),Fi.set(t.boundingBox.min,t.boundingBox.max,e),Fi.needsUpdate=!0;const a=r.geometry,c=a.attributes.position,u=a.index,h=t.attributes.position,l=t.index,d=Ct.getPrimitive(),f=Ct.getPrimitive();let p=tl,m=el,x=null,g=null;n&&(x=sl,g=nl);let y=1/0,N=null,w=null;return yn.copy(e).invert(),zs.matrix.copy(yn),r.shapecast({boundsTraverseOrder:T=>Fi.distanceToBox(T),intersectsBounds:(T,_,S)=>S<y&&S<o?(_&&(zs.min.copy(T.min),zs.max.copy(T.max),zs.needsUpdate=!0),!0):!1,intersectsRange:(T,_)=>{if(t.boundsTree)return t.boundsTree.shapecast({boundsTraverseOrder:z=>zs.distanceToBox(z),intersectsBounds:(z,B,b)=>b<y&&b<o,intersectsRange:(z,B)=>{for(let b=z,I=z+B;b<I;b++){nt(f,3*b,l,h),f.a.applyMatrix4(e),f.b.applyMatrix4(e),f.c.applyMatrix4(e),f.needsUpdate=!0;for(let C=T,P=T+_;C<P;C++){nt(d,3*C,u,c),d.needsUpdate=!0;const L=d.distanceToTriangle(f,p,x);if(L<y&&(m.copy(p),g&&g.copy(x),y=L,N=C,w=b),L<i)return!0}}}});{const S=fn(t);for(let z=0,B=S;z<B;z++){nt(f,3*z,l,h),f.a.applyMatrix4(e),f.b.applyMatrix4(e),f.c.applyMatrix4(e),f.needsUpdate=!0;for(let b=T,I=T+_;b<I;b++){nt(d,3*b,u,c),d.needsUpdate=!0;const C=d.distanceToTriangle(f,p,x);if(C<y&&(m.copy(p),g&&g.copy(x),y=C,N=b,w=z),C<i)return!0}}}}}),Ct.releasePrimitive(d),Ct.releasePrimitive(f),y===1/0?null:(s.point?s.point.copy(m):s.point=m.clone(),s.distance=y,s.faceIndex=N,n&&(n.point?n.point.copy(g):n.point=g.clone(),n.point.applyMatrix4(yn),m.applyMatrix4(yn),n.distance=m.sub(n.point).length(),n.faceIndex=w),s)}function rl(r,t=null){t&&Array.isArray(t)&&(t=new Set(t));const e=r.geometry,s=e.index?e.index.array:null,n=e.attributes.position;let i,o,a,c,u=0;const h=r._roots;for(let d=0,f=h.length;d<f;d++)i=h[d],o=new Uint32Array(i),a=new Uint16Array(i),c=new Float32Array(i),l(0,u),u+=i.byteLength;function l(d,f,p=!1){const m=d*2;if(rt(m,a)){const x=pt(d,o),g=xt(m,a);let y=1/0,N=1/0,w=1/0,T=-1/0,_=-1/0,S=-1/0;for(let z=x,B=x+g;z<B;z++){const b=3*r.resolveTriangleIndex(z);for(let I=0;I<3;I++){let C=b+I;C=s?s[C]:C;const P=n.getX(C),L=n.getY(C),D=n.getZ(C);P<y&&(y=P),P>T&&(T=P),L<N&&(N=L),L>_&&(_=L),D<w&&(w=D),D>S&&(S=D)}}return c[d+0]!==y||c[d+1]!==N||c[d+2]!==w||c[d+3]!==T||c[d+4]!==_||c[d+5]!==S?(c[d+0]=y,c[d+1]=N,c[d+2]=w,c[d+3]=T,c[d+4]=_,c[d+5]=S,!0):!1}else{const x=ct(d),g=ht(d,o);let y=p,N=!1,w=!1;if(t){if(!y){const b=x/it+f/ft,I=g/it+f/ft;N=t.has(b),w=t.has(I),y=!N&&!w}}else N=!0,w=!0;const T=y||N,_=y||w;let S=!1;T&&(S=l(x,f,y));let z=!1;_&&(z=l(g,f,y));const B=S||z;if(B)for(let b=0;b<3;b++){const I=x+b,C=g+b,P=c[I],L=c[I+3],D=c[C],X=c[C+3];c[d+b]=P<D?P:D,c[d+b+3]=L>X?L:X}return B}}}function ol(r,t,e,s,n,i,o){G.setBuffer(r._roots[t]),Bi(0,r,e,s,n,i,o),G.clearBuffer()}function Bi(r,t,e,s,n,i,o){const{float32Array:a,uint16Array:c,uint32Array:u}=G,h=r*2;if(rt(h,c)){const d=pt(r,u),f=xt(h,c);Hu(t,e,s,d,f,n,i,o)}else{const d=ct(r);ue(d,a,s,i,o)&&Bi(d,t,e,s,n,i,o);const f=ht(r,u);ue(f,a,s,i,o)&&Bi(f,t,e,s,n,i,o)}}const al=["x","y","z"];function cl(r,t,e,s,n,i){G.setBuffer(r._roots[t]);const o=Ri(0,r,e,s,n,i);return G.clearBuffer(),o}function Ri(r,t,e,s,n,i){const{float32Array:o,uint16Array:a,uint32Array:c}=G;let u=r*2;if(rt(u,a)){const l=pt(r,c),d=xt(u,a);return Wu(t,e,s,l,d,n,i)}else{const l=_i(r,c),d=al[l],p=s.direction[d]>=0;let m,x;p?(m=ct(r),x=ht(r,c)):(m=ht(r,c),x=ct(r));const y=ue(m,o,s,n,i)?Ri(m,t,e,s,n,i):null;if(y){const T=y.point[d];if(p?T<=o[x+l]:T>=o[x+l+3])return y}const w=ue(x,o,s,n,i)?Ri(x,t,e,s,n,i):null;return y&&w?y.distance<=w.distance?y:w:y||w||null}}const gn=new mt,Ye=new Dt,Ze=new Dt,bs=new Q,So=new gt,xn=new gt;function hl(r,t,e,s){G.setBuffer(r._roots[t]);const n=Ii(0,r,e,s);return G.clearBuffer(),n}function Ii(r,t,e,s,n=null){const{float32Array:i,uint16Array:o,uint32Array:a}=G;let c=r*2;if(n===null&&(e.boundingBox||e.computeBoundingBox(),So.set(e.boundingBox.min,e.boundingBox.max,s),n=So),rt(c,o)){const h=t.geometry,l=h.index,d=h.attributes.position,f=e.index,p=e.attributes.position,m=pt(r,a),x=xt(c,o);if(bs.copy(s).invert(),e.boundsTree)return J(r,i,xn),xn.matrix.copy(bs),xn.needsUpdate=!0,e.boundsTree.shapecast({intersectsBounds:y=>xn.intersectsBox(y),intersectsTriangle:y=>{y.a.applyMatrix4(s),y.b.applyMatrix4(s),y.c.applyMatrix4(s),y.needsUpdate=!0;for(let N=m,w=x+m;N<w;N++)if(nt(Ze,3*t.resolveTriangleIndex(N),l,d),Ze.needsUpdate=!0,y.intersectsTriangle(Ze))return!0;return!1}});{const g=fn(e);for(let y=m,N=x+m;y<N;y++){const w=t.resolveTriangleIndex(y);nt(Ye,3*w,l,d),Ye.a.applyMatrix4(bs),Ye.b.applyMatrix4(bs),Ye.c.applyMatrix4(bs),Ye.needsUpdate=!0;for(let T=0,_=g*3;T<_;T+=3)if(nt(Ze,T,f,p),Ze.needsUpdate=!0,Ye.intersectsTriangle(Ze))return!0}}}else{const h=ct(r),l=ht(r,a);return J(h,i,gn),!!(n.intersectsBox(gn)&&Ii(h,t,e,s,n)||(J(l,i,gn),n.intersectsBox(gn)&&Ii(l,t,e,s,n)))}}const Tn=new Q,Pi=new gt,Es=new gt,ul=new M,ll=new M,dl=new M,fl=new M;function pl(r,t,e,s={},n={},i=0,o=1/0){t.boundingBox||t.computeBoundingBox(),Pi.set(t.boundingBox.min,t.boundingBox.max,e),Pi.needsUpdate=!0;const a=r.geometry,c=a.attributes.position,u=a.index,h=t.attributes.position,l=t.index,d=Ct.getPrimitive(),f=Ct.getPrimitive();let p=ul,m=ll,x=null,g=null;n&&(x=dl,g=fl);let y=1/0,N=null,w=null;return Tn.copy(e).invert(),Es.matrix.copy(Tn),r.shapecast({boundsTraverseOrder:T=>Pi.distanceToBox(T),intersectsBounds:(T,_,S)=>S<y&&S<o?(_&&(Es.min.copy(T.min),Es.max.copy(T.max),Es.needsUpdate=!0),!0):!1,intersectsRange:(T,_)=>{if(t.boundsTree){const S=t.boundsTree;return S.shapecast({boundsTraverseOrder:z=>Es.distanceToBox(z),intersectsBounds:(z,B,b)=>b<y&&b<o,intersectsRange:(z,B)=>{for(let b=z,I=z+B;b<I;b++){const C=S.resolveTriangleIndex(b);nt(f,3*C,l,h),f.a.applyMatrix4(e),f.b.applyMatrix4(e),f.c.applyMatrix4(e),f.needsUpdate=!0;for(let P=T,L=T+_;P<L;P++){const D=r.resolveTriangleIndex(P);nt(d,3*D,u,c),d.needsUpdate=!0;const X=d.distanceToTriangle(f,p,x);if(X<y&&(m.copy(p),g&&g.copy(x),y=X,N=P,w=b),X<i)return!0}}}})}else{const S=fn(t);for(let z=0,B=S;z<B;z++){nt(f,3*z,l,h),f.a.applyMatrix4(e),f.b.applyMatrix4(e),f.c.applyMatrix4(e),f.needsUpdate=!0;for(let b=T,I=T+_;b<I;b++){const C=r.resolveTriangleIndex(b);nt(d,3*C,u,c),d.needsUpdate=!0;const P=d.distanceToTriangle(f,p,x);if(P<y&&(m.copy(p),g&&g.copy(x),y=P,N=b,w=z),P<i)return!0}}}}}),Ct.releasePrimitive(d),Ct.releasePrimitive(f),y===1/0?null:(s.point?s.point.copy(m):s.point=m.clone(),s.distance=y,s.faceIndex=N,n&&(n.point?n.point.copy(g):n.point=g.clone(),n.point.applyMatrix4(Tn),m.applyMatrix4(Tn),n.distance=m.sub(n.point).length(),n.faceIndex=w),s)}function Mo(r,t,e){return r===null?null:(r.point.applyMatrix4(t.matrixWorld),r.distance=r.point.distanceTo(e.ray.origin),r.object=t,r)}function ml(){return typeof SharedArrayBuffer<"u"}function vi(r,t,e,s,n){let i=1/0,o=1/0,a=1/0,c=-1/0,u=-1/0,h=-1/0,l=1/0,d=1/0,f=1/0,p=-1/0,m=-1/0,x=-1/0;const g=r.offset||0;for(let y=(t-g)*6,N=(t+e-g)*6;y<N;y+=6){const w=r[y+0],T=r[y+1],_=w-T,S=w+T;_<i&&(i=_),S>c&&(c=S),w<l&&(l=w),w>p&&(p=w);const z=r[y+2],B=r[y+3],b=z-B,I=z+B;b<o&&(o=b),I>u&&(u=I),z<d&&(d=z),z>m&&(m=z);const C=r[y+4],P=r[y+5],L=C-P,D=C+P;L<a&&(a=L),D>h&&(h=D),C<f&&(f=C),C>x&&(x=C)}s[0]=i,s[1]=o,s[2]=a,s[3]=c,s[4]=u,s[5]=h,n[0]=l,n[1]=d,n[2]=f,n[3]=p,n[4]=m,n[5]=x}const te=32,yl=(r,t)=>r.candidate-t.candidate,le=new Array(te).fill().map(()=>({count:0,bounds:new Float32Array(6),rightCacheBounds:new Float32Array(6),leftCacheBounds:new Float32Array(6),candidate:0})),Nn=new Float32Array(6);function gl(r,t,e,s,n,i){let o=-1,a=0;if(i===oo)o=xo(t),o!==-1&&(a=(t[o]+t[o+3])/2);else if(i===Cu)o=xo(r),o!==-1&&(a=xl(e,s,n,o));else if(i===Fu){const c=Ms(r);let u=Ni*n;const h=e.offset||0,l=(s-h)*6,d=(s+n-h)*6;for(let f=0;f<3;f++){const p=t[f],g=(t[f+3]-p)/te;if(n<te/4){const y=[...le];y.length=n;let N=0;for(let T=l;T<d;T+=6,N++){const _=y[N];_.candidate=e[T+2*f],_.count=0;const{bounds:S,leftCacheBounds:z,rightCacheBounds:B}=_;for(let b=0;b<3;b++)B[b]=1/0,B[b+3]=-1/0,z[b]=1/0,z[b+3]=-1/0,S[b]=1/0,S[b+3]=-1/0;dn(T,e,S)}y.sort(yl);let w=n;for(let T=0;T<w;T++){const _=y[T];for(;T+1<w&&y[T+1].candidate===_.candidate;)y.splice(T+1,1),w--}for(let T=l;T<d;T+=6){const _=e[T+2*f];for(let S=0;S<w;S++){const z=y[S];_>=z.candidate?dn(T,e,z.rightCacheBounds):(dn(T,e,z.leftCacheBounds),z.count++)}}for(let T=0;T<w;T++){const _=y[T],S=_.count,z=n-_.count,B=_.leftCacheBounds,b=_.rightCacheBounds;let I=0;S!==0&&(I=Ms(B)/c);let C=0;z!==0&&(C=Ms(b)/c);const P=co+Ni*(I*S+C*z);P<u&&(o=f,u=P,a=_.candidate)}}else{for(let w=0;w<te;w++){const T=le[w];T.count=0,T.candidate=p+g+w*g;const _=T.bounds;for(let S=0;S<3;S++)_[S]=1/0,_[S+3]=-1/0}for(let w=l;w<d;w+=6){let S=~~((e[w+2*f]-p)/g);S>=te&&(S=te-1);const z=le[S];z.count++,dn(w,e,z.bounds)}const y=le[te-1];To(y.bounds,y.rightCacheBounds);for(let w=te-2;w>=0;w--){const T=le[w],_=le[w+1];No(T.bounds,_.rightCacheBounds,T.rightCacheBounds)}let N=0;for(let w=0;w<te-1;w++){const T=le[w],_=T.count,S=T.bounds,B=le[w+1].rightCacheBounds;_!==0&&(N===0?To(S,Nn):No(S,Nn,Nn)),N+=_;let b=0,I=0;N!==0&&(b=Ms(Nn)/c);const C=n-N;C!==0&&(I=Ms(B)/c);const P=co+Ni*(b*N+I*C);P<u&&(o=f,u=P,a=T.candidate)}}}}else console.warn(`BVH: Invalid build strategy value ${i} used.`);return{axis:o,pos:a}}function xl(r,t,e,s){let n=0;const i=r.offset;for(let o=t,a=t+e;o<a;o++)n+=r[(o-i)*6+s*2];return n/e}class Li{constructor(){this.boundingData=new Float32Array(6)}}function Tl(r,t,e,s,n,i){let o=s,a=s+n-1;const c=i.pos,u=i.axis*2,h=e.offset||0;for(;;){for(;o<=a&&e[(o-h)*6+u]<c;)o++;for(;o<=a&&e[(a-h)*6+u]>=c;)a--;if(o<a){for(let l=0;l<t;l++){let d=r[o*t+l];r[o*t+l]=r[a*t+l],r[a*t+l]=d}for(let l=0;l<6;l++){const d=o-h,f=a-h,p=e[d*6+l];e[d*6+l]=e[f*6+l],e[f*6+l]=p}o++,a--}else return o}}let _o,wn,Oi,zo;const Nl=Math.pow(2,32);function Di(r){return"count"in r?1:1+Di(r.left)+Di(r.right)}function wl(r,t,e){return _o=new Float32Array(e),wn=new Uint32Array(e),Oi=new Uint16Array(e),zo=new Uint8Array(e),Vi(r,t)}function Vi(r,t){const e=r/4,s=r/2,n="count"in t,i=t.boundingData;for(let o=0;o<6;o++)_o[e+o]=i[o];if(n)return t.buffer?(zo.set(new Uint8Array(t.buffer),r),r+t.buffer.byteLength):(wn[e+6]=t.offset,Oi[s+14]=t.count,Oi[s+15]=ho,r+ft);{const{left:o,right:a,splitAxis:c}=t,u=r+ft;let h=Vi(u,o);const l=r/ft,f=h/ft-l;if(f>Nl)throw new Error("MeshBVH: Cannot store relative child node offset greater than 32 bits.");return wn[e+6]=f,wn[e+7]=c,Vi(h,a)}}function Al(r,t,e,s,n){const{maxDepth:i,verbose:o,maxLeafSize:a,strategy:c,onProgress:u}=n,h=r.primitiveBuffer,l=r.primitiveBufferStride,d=new Float32Array(6);let f=!1;const p=new Li;return vi(t,e,s,p.boundingData,d),x(p,e,s,d),p;function m(g){u&&u(g/s)}function x(g,y,N,w=null,T=0){if(!f&&T>=i&&(f=!0,o&&console.warn(`BVH: Max depth of ${i} reached when generating BVH. Consider increasing maxDepth.`)),N<=a||T>=i)return m(y+N),g.offset=y,g.count=N,g;const _=gl(g.boundingData,w,t,y,N,c);if(_.axis===-1)return m(y+N),g.offset=y,g.count=N,g;const S=Tl(h,l,t,y,N,_);if(S===y||S===y+N)m(y+N),g.offset=y,g.count=N;else{g.splitAxis=_.axis;const z=new Li,B=y,b=S-y;g.left=z,vi(t,B,b,z.boundingData,d),x(z,B,b,d,T+1);const I=new Li,C=S,P=N-b;g.right=I,vi(t,C,P,I.boundingData,d),x(I,C,P,d,T+1)}return g}}function Sl(r,t){const e=t.useSharedArrayBuffer?SharedArrayBuffer:ArrayBuffer,s=r.getRootRanges(t.range),n=s[0],i=s[s.length-1],o={offset:n.offset,count:i.offset+i.count-n.offset},a=new Float32Array(6*o.count);a.offset=o.offset,r.computePrimitiveBounds(o.offset,o.count,a),r._roots=s.map(c=>{const u=Al(r,a,c.offset,c.count,t),h=Di(u),l=new e(ft*h);return wl(0,u,l),l})}let de,Je;const Qe=[],An=new Si(()=>new mt);function Ml(r,t,e,s,n,i){de=An.getPrimitive(),Je=An.getPrimitive(),Qe.push(de,Je),G.setBuffer(r._roots[t]);const o=Ui(0,r.geometry,e,s,n,i);G.clearBuffer(),An.releasePrimitive(de),An.releasePrimitive(Je),Qe.pop(),Qe.pop();const a=Qe.length;return a>0&&(Je=Qe[a-1],de=Qe[a-2]),o}function Ui(r,t,e,s,n=null,i=0,o=0){const{float32Array:a,uint16Array:c,uint32Array:u}=G;let h=r*2;if(rt(h,c)){const d=pt(r,u),f=xt(h,c);return J(r,a,de),s(d,f,!1,o,i+r/it,de)}else{let b=function(C){const{uint16Array:P,uint32Array:L}=G;let D=C*2;for(;!rt(D,P);)C=ct(C),D=C*2;return pt(C,L)},I=function(C){const{uint16Array:P,uint32Array:L}=G;let D=C*2;for(;!rt(D,P);)C=ht(C,L),D=C*2;return pt(C,L)+xt(D,P)};const d=ct(r),f=ht(r,u);let p=d,m=f,x,g,y,N;if(n&&(y=de,N=Je,J(p,a,y),J(m,a,N),x=n(y),g=n(N),g<x)){p=f,m=d;const C=x;x=g,g=C,y=N}y||(y=de,J(p,a,y));const w=rt(p*2,c),T=e(y,w,x,o+1,i+p/it);let _;if(T===ao){const C=b(p),L=I(p)-C;_=s(C,L,!0,o+1,i+p/it,y)}else _=T&&Ui(p,t,e,s,n,i,o+1);if(_)return!0;N=Je,J(m,a,N);const S=rt(m*2,c),z=e(N,S,g,o+1,i+m/it);let B;if(z===ao){const C=b(m),L=I(m)-C;B=s(C,L,!0,o+1,i+m/it,N)}else B=z&&Ui(m,t,e,s,n,i,o+1);return!!B}}const Cs=new G.constructor,Sn=new G.constructor,fe=new Si(()=>new mt),je=new mt,Ke=new mt,ki=new mt,qi=new mt;let Hi=!1;function _l(r,t,e,s){if(Hi)throw new Error("MeshBVH: Recursive calls to bvhcast not supported.");Hi=!0;const n=r._roots,i=t._roots;let o,a=0,c=0;const u=new Q().copy(e).invert();for(let h=0,l=n.length;h<l;h++){Cs.setBuffer(n[h]),c=0;const d=fe.getPrimitive();J(0,Cs.float32Array,d),d.applyMatrix4(u);for(let f=0,p=i.length;f<p&&(Sn.setBuffer(i[f]),o=Vt(0,0,e,u,s,a,c,0,0,d),Sn.clearBuffer(),c+=i[f].byteLength/ft,!o);f++);if(fe.releasePrimitive(d),Cs.clearBuffer(),a+=n[h].byteLength/ft,o)break}return Hi=!1,o}function Vt(r,t,e,s,n,i=0,o=0,a=0,c=0,u=null,h=!1){let l,d;h?(l=Sn,d=Cs):(l=Cs,d=Sn);const f=l.float32Array,p=l.uint32Array,m=l.uint16Array,x=d.float32Array,g=d.uint32Array,y=d.uint16Array,N=r*2,w=t*2,T=rt(N,m),_=rt(w,y);let S=!1;if(_&&T)h?S=n(pt(t,g),xt(t*2,y),pt(r,p),xt(r*2,m),c,o+t/it,a,i+r/it):S=n(pt(r,p),xt(r*2,m),pt(t,g),xt(t*2,y),a,i+r/it,c,o+t/it);else if(_){const z=fe.getPrimitive();J(t,x,z),z.applyMatrix4(e);const B=ct(r),b=ht(r,p);J(B,f,je),J(b,f,Ke);const I=z.intersectsBox(je),C=z.intersectsBox(Ke);S=I&&Vt(t,B,s,e,n,o,i,c,a+1,z,!h)||C&&Vt(t,b,s,e,n,o,i,c,a+1,z,!h),fe.releasePrimitive(z)}else{const z=ct(t),B=ht(t,g);J(z,x,ki),J(B,x,qi);const b=u.intersectsBox(ki),I=u.intersectsBox(qi);if(b&&I)S=Vt(r,z,e,s,n,i,o,a,c+1,u,h)||Vt(r,B,e,s,n,i,o,a,c+1,u,h);else if(b)if(T)S=Vt(r,z,e,s,n,i,o,a,c+1,u,h);else{const C=fe.getPrimitive();C.copy(ki).applyMatrix4(e);const P=ct(r),L=ht(r,p);J(P,f,je),J(L,f,Ke);const D=C.intersectsBox(je),X=C.intersectsBox(Ke);S=D&&Vt(z,P,s,e,n,o,i,c,a+1,C,!h)||X&&Vt(z,L,s,e,n,o,i,c,a+1,C,!h),fe.releasePrimitive(C)}else if(I)if(T)S=Vt(r,B,e,s,n,i,o,a,c+1,u,h);else{const C=fe.getPrimitive();C.copy(qi).applyMatrix4(e);const P=ct(r),L=ht(r,p);J(P,f,je),J(L,f,Ke);const D=C.intersectsBox(je),X=C.intersectsBox(Ke);S=D&&Vt(B,P,s,e,n,o,i,c,a+1,C,!h)||X&&Vt(B,L,s,e,n,o,i,c,a+1,C,!h),fe.releasePrimitive(C)}}return S}const bo=new mt,ts=new Float32Array(6);class zl{constructor(){this._roots=null,this.primitiveBuffer=null,this.primitiveBufferStride=null}init(t){t={...uo,...t},Sl(this,t)}getRootRanges(){throw new Error("BVH: getRootRanges() not implemented")}writePrimitiveBounds(){throw new Error("BVH: writePrimitiveBounds() not implemented")}writePrimitiveRangeBounds(t,e,s,n){let i=1/0,o=1/0,a=1/0,c=-1/0,u=-1/0,h=-1/0;for(let l=t,d=t+e;l<d;l++){this.writePrimitiveBounds(l,ts,0);const[f,p,m,x,g,y]=ts;f<i&&(i=f),x>c&&(c=x),p<o&&(o=p),g>u&&(u=g),m<a&&(a=m),y>h&&(h=y)}return s[n+0]=i,s[n+1]=o,s[n+2]=a,s[n+3]=c,s[n+4]=u,s[n+5]=h,s}computePrimitiveBounds(t,e,s){const n=s.offset||0;for(let i=t,o=t+e;i<o;i++){this.writePrimitiveBounds(i,ts,0);const[a,c,u,h,l,d]=ts,f=(a+h)/2,p=(c+l)/2,m=(u+d)/2,x=(h-a)/2,g=(l-c)/2,y=(d-u)/2,N=(i-n)*6;s[N+0]=f,s[N+1]=x+(Math.abs(f)+x)*on,s[N+2]=p,s[N+3]=g+(Math.abs(p)+g)*on,s[N+4]=m,s[N+5]=y+(Math.abs(m)+y)*on}return s}shiftPrimitiveOffsets(t){const e=this._indirectBuffer;if(e)for(let s=0,n=e.length;s<n;s++)e[s]+=t;else{const s=this._roots;for(let n=0;n<s.length;n++){const i=s[n],o=new Uint32Array(i),a=new Uint16Array(i),c=i.byteLength/ft;for(let u=0;u<c;u++){const h=it*u,l=2*h;rt(l,a)&&(o[h+6]+=t)}}}}traverse(t,e=0){const s=this._roots[e],n=new Uint32Array(s),i=new Uint16Array(s);o(0);function o(a,c=0){const u=a*2,h=rt(u,i);if(h){const l=n[a+6],d=i[u+14];t(c,h,new Float32Array(s,a*4,6),l,d)}else{const l=ct(a),d=ht(a,n),f=_i(a,n);t(c,h,new Float32Array(s,a*4,6),f)||(o(l,c+1),o(d,c+1))}}}refit(){const t=this._roots;for(let e=0,s=t.length;e<s;e++){const n=t[e],i=new Uint32Array(n),o=new Uint16Array(n),a=new Float32Array(n),c=n.byteLength/ft;for(let u=c-1;u>=0;u--){const h=u*it,l=h*2;if(rt(l,o)){const f=pt(h,i),p=xt(l,o);this.writePrimitiveRangeBounds(f,p,ts,0),a.set(ts,h)}else{const f=ct(h),p=ht(h,i);for(let m=0;m<3;m++){const x=a[f+m],g=a[f+m+3],y=a[p+m],N=a[p+m+3];a[h+m]=x<y?x:y,a[h+m+3]=g>N?g:N}}}}}getBoundingBox(t){return t.makeEmpty(),this._roots.forEach(s=>{J(0,new Float32Array(s),bo),t.union(bo)}),t}shapecast(t){let{boundsTraverseOrder:e,intersectsBounds:s,intersectsRange:n,intersectsPrimitive:i,scratchPrimitive:o,iterate:a}=t;if(n&&i){const l=n;n=(d,f,p,m,x)=>l(d,f,p,m,x)?!0:a(d,f,this,i,p,m,o)}else n||(i?n=(l,d,f,p)=>a(l,d,this,i,f,p,o):n=(l,d,f)=>f);let c=!1,u=0;const h=this._roots;for(let l=0,d=h.length;l<d;l++){const f=h[l];if(c=Ml(this,l,s,n,e,u),c)break;u+=f.byteLength/ft}return c}bvhcast(t,e,s){let{intersectsRanges:n}=s;return _l(this,t,e,n)}}function bl(r,t){const e=r[r.length-1],s=e.offset+e.count>2**16,n=r.reduce((u,h)=>u+h.count,0),i=s?4:2,o=t?new SharedArrayBuffer(n*i):new ArrayBuffer(n*i),a=s?new Uint32Array(o):new Uint16Array(o);let c=0;for(let u=0;u<r.length;u++){const{offset:h,count:l}=r[u];for(let d=0;d<l;d++)a[c+d]=h+d;c+=l}return a}class El extends zl{get indirect(){return!!this._indirectBuffer}get primitiveStride(){return null}get primitiveBufferStride(){return this.indirect?1:this.primitiveStride}set primitiveBufferStride(t){}get primitiveBuffer(){return this.indirect?this._indirectBuffer:this.geometry.index.array}set primitiveBuffer(t){}constructor(t,e={}){if(t.isBufferGeometry){if(t.index&&t.index.isInterleavedBufferAttribute)throw new Error("BVH: InterleavedBufferAttribute is not supported for the index attribute.")}else throw new Error("BVH: Only BufferGeometries are supported.");if(e.useSharedArrayBuffer&&!ml())throw new Error("BVH: SharedArrayBuffer is not available.");super(),this.geometry=t,this.resolvePrimitiveIndex=e.indirect?s=>this._indirectBuffer[s]:s=>s,this.primitiveBuffer=null,this.primitiveBufferStride=null,this._indirectBuffer=null,e={...uo,...e},e[wi]||this.init(e)}init(t){const{geometry:e,primitiveStride:s}=this;if(t.indirect){const n=wo(e,t.range,s),i=bl(n,t.useSharedArrayBuffer);this._indirectBuffer=i}else Ju(e,t);super.init(t),!e.boundingBox&&t.setBoundingBox&&(e.boundingBox=this.getBoundingBox(new mt))}getRootRanges(t){return this.indirect?[{offset:0,count:this._indirectBuffer.length}]:wo(this.geometry,t,this.primitiveStride)}raycastObject3D(){throw new Error("BVH: raycastObject3D() not implemented")}}const Mn=new gt,_n=new na,Eo=new M,Co=new Q,Fo=new M,Wi=["getX","getY","getZ"];class Fs extends El{static serialize(t,e={}){e={cloneBuffers:!0,...e};const s=t.geometry,n=t._roots,i=t._indirectBuffer,o=s.getIndex(),a={version:1,roots:null,index:null,indirectBuffer:null};return e.cloneBuffers?(a.roots=n.map(c=>c.slice()),a.index=o?o.array.slice():null,a.indirectBuffer=i?i.slice():null):(a.roots=n,a.index=o?o.array:null,a.indirectBuffer=i),a}static deserialize(t,e,s={}){s={setIndex:!0,indirect:!!t.indirectBuffer,...s};const{index:n,roots:i,indirectBuffer:o}=t;t.version||(console.warn("MeshBVH.deserialize: Serialization format has been changed and will be fixed up. It is recommended to regenerate any stored serialized data."),c(i));const a=new Fs(e,{...s,[wi]:!0});if(a._roots=i,a._indirectBuffer=o||null,s.setIndex){const u=e.getIndex();if(u===null){const h=new Lt(t.index,1,!1);e.setIndex(h)}else u.array!==n&&(u.array.set(n),u.needsUpdate=!0)}return a;function c(u){for(let h=0;h<u.length;h++){const l=u[h],d=new Uint32Array(l),f=new Uint16Array(l);for(let p=0,m=l.byteLength/ft;p<m;p++){const x=it*p,g=2*x;rt(g,f)||(d[x+6]=d[x+6]/it-p)}}}}get primitiveStride(){return 3}get resolveTriangleIndex(){return this.resolvePrimitiveIndex}constructor(t,e={}){e.maxLeafTris&&(console.warn('MeshBVH: "maxLeafTris" option has been deprecated. Use maxLeafSize, instead.'),e={...e,maxLeafSize:e.maxLeafTris}),super(t,e)}shiftTriangleOffsets(t){return super.shiftPrimitiveOffsets(t)}writePrimitiveBounds(t,e,s){const n=this.geometry,i=this._indirectBuffer,o=n.attributes.position,a=n.index?n.index.array:null,u=(i?i[t]:t)*3;let h=u+0,l=u+1,d=u+2;a&&(h=a[h],l=a[l],d=a[d]);for(let f=0;f<3;f++){const p=o[Wi[f]](h),m=o[Wi[f]](l),x=o[Wi[f]](d);let g=p;m<g&&(g=m),x<g&&(g=x);let y=p;m>y&&(y=m),x>y&&(y=x),e[s+f]=g,e[s+f+3]=y}return e}computePrimitiveBounds(t,e,s){const n=this.geometry,i=this._indirectBuffer,o=n.attributes.position,a=n.index?n.index.array:null,c=o.normalized;if(t<0||e+t-s.offset>s.length/6)throw new Error("MeshBVH: compute triangle bounds range is invalid.");const u=o.array,h=o.offset||0;let l=3;o.isInterleavedBufferAttribute&&(l=o.data.stride);const d=["getX","getY","getZ"],f=s.offset;for(let p=t,m=t+e;p<m;p++){const g=(i?i[p]:p)*3,y=(p-f)*6;let N=g+0,w=g+1,T=g+2;a&&(N=a[N],w=a[w],T=a[T]),c||(N=N*l+h,w=w*l+h,T=T*l+h);for(let _=0;_<3;_++){let S,z,B;c?(S=o[d[_]](N),z=o[d[_]](w),B=o[d[_]](T)):(S=u[N+_],z=u[w+_],B=u[T+_]);let b=S;z<b&&(b=z),B<b&&(b=B);let I=S;z>I&&(I=z),B>I&&(I=B);const C=(I-b)/2,P=_*2;s[y+P+0]=b+C,s[y+P+1]=C+(Math.abs(b)+C)*on}}return s}raycastObject3D(t,e,s=[]){const{material:n}=t;if(n===void 0)return;Co.copy(t.matrixWorld).invert(),_n.copy(e.ray).applyMatrix4(Co),Fo.setFromMatrixScale(t.matrixWorld),Eo.copy(_n.direction).multiply(Fo);const i=Eo.length(),o=e.near/i,a=e.far/i;if(e.firstHitOnly===!0){let c=this.raycastFirst(_n,n,o,a);c=Mo(c,t,e),c&&s.push(c)}else{const c=this.raycast(_n,n,o,a);for(let u=0,h=c.length;u<h;u++){const l=Mo(c[u],t,e);l&&s.push(l)}}return s}refit(t=null){return(this.indirect?rl:ku)(this,t)}raycast(t,e=0,s=0,n=1/0){const i=this._roots,o=[],a=this.indirect?ol:Gu;for(let c=0,u=i.length;c<u;c++)a(this,c,e,t,o,s,n);return o}raycastFirst(t,e=0,s=0,n=1/0){const i=this._roots;let o=null;const a=this.indirect?cl:Yu;for(let c=0,u=i.length;c<u;c++){const h=a(this,c,e,t,s,n);h!=null&&(o==null||h.distance<o.distance)&&(o=h)}return o}intersectsGeometry(t,e){let s=!1;const n=this._roots,i=this.indirect?hl:Ku;for(let o=0,a=n.length;o<a&&(s=i(this,o,t,e),!s);o++);return s}shapecast(t){const e=Ct.getPrimitive(),s=super.shapecast({...t,intersectsPrimitive:t.intersectsTriangle,scratchPrimitive:e,iterate:this.indirect?$u:Uu});return Ct.releasePrimitive(e),s}bvhcast(t,e,s){let{intersectsRanges:n,intersectsTriangles:i}=s;const o=Ct.getPrimitive(),a=this.geometry.index,c=this.geometry.attributes.position,u=this.indirect?p=>{const m=this.resolveTriangleIndex(p);nt(o,m*3,a,c)}:p=>{nt(o,p*3,a,c)},h=Ct.getPrimitive(),l=t.geometry.index,d=t.geometry.attributes.position,f=t.indirect?p=>{const m=t.resolveTriangleIndex(p);nt(h,m*3,l,d)}:p=>{nt(h,p*3,l,d)};if(i){if(!(t instanceof Fs))throw new Error('MeshBVH: "intersectsTriangles" callback can only be used with another MeshBVH.');const p=(m,x,g,y,N,w,T,_)=>{for(let S=g,z=g+y;S<z;S++){f(S),h.a.applyMatrix4(e),h.b.applyMatrix4(e),h.c.applyMatrix4(e),h.needsUpdate=!0;for(let B=m,b=m+x;B<b;B++)if(u(B),o.needsUpdate=!0,i(o,h,B,S,N,w,T,_))return!0}return!1};if(n){const m=n;n=function(x,g,y,N,w,T,_,S){return m(x,g,y,N,w,T,_,S)?!0:p(x,g,y,N,w,T,_,S)}}else n=p}return super.bvhcast(t,e,{intersectsRanges:n})}intersectsBox(t,e){return Mn.set(t.min,t.max,e),Mn.needsUpdate=!0,this.shapecast({intersectsBounds:s=>Mn.intersectsBox(s),intersectsTriangle:s=>Mn.intersectsTriangle(s)})}intersectsSphere(t){return this.shapecast({intersectsBounds:e=>t.intersectsBox(e),intersectsTriangle:e=>e.intersectsSphere(t)})}closestPointToGeometry(t,e,s={},n={},i=0,o=1/0){return(this.indirect?pl:il)(this,t,e,s,n,i,o)}closestPointToPoint(t,e={},s=0,n=1/0){return vu(this,t,e,s,n)}}self.onmessage=({data:r})=>{let t=performance.now();function e(o){o=Math.min(o,1);const a=performance.now();a-t>=10&&o!==1&&(self.postMessage({error:null,serialized:null,position:null,progress:o}),t=a)}const{index:s,position:n,options:i}=r;try{const o=new Yn;if(o.setAttribute("position",new Lt(n,3,!1)),s&&o.setIndex(new Lt(s,1,!1)),i.includedProgressCallback&&(i.onProgress=e),i.groups){const h=i.groups;for(const l in h){const d=h[l];o.addGroup(d.start,d.count,d.materialIndex)}}const a=new Fs(o,i),c=Fs.serialize(a,{copyIndexBuffer:!1});let u=[n.buffer,...c.roots];c.index&&u.push(c.index.buffer),u=u.filter(h=>typeof SharedArrayBuffer>"u"||!(h instanceof SharedArrayBuffer)),a._indirectBuffer&&u.push(c.indirectBuffer.buffer),self.postMessage({error:null,serialized:c,position:n,progress:1},u)}catch(o){self.postMessage({error:o,serialized:null,position:null,progress:1})}}})();