opal-js_wrap-three 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (503) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile.lock +4 -4
  4. data/lib/opal/js_wrap/three/version.rb +1 -1
  5. data/lib-opal/js_wrap/three/WebGL.js +102 -0
  6. data/lib-opal/js_wrap/three/animation/AnimationClipCreator.js +116 -0
  7. data/lib-opal/js_wrap/three/animation/CCDIKSolver.js +436 -0
  8. data/lib-opal/js_wrap/three/animation/MMDAnimationHelper.js +941 -0
  9. data/lib-opal/js_wrap/three/animation/MMDPhysics.js +1183 -0
  10. data/lib-opal/js_wrap/three/cameras/CinematicCamera.js +204 -0
  11. data/lib-opal/js_wrap/three/controls/ArcballControls.js +2649 -0
  12. data/lib-opal/js_wrap/three/controls/DragControls.js +234 -0
  13. data/lib-opal/js_wrap/three/controls/FirstPersonControls.js +301 -0
  14. data/lib-opal/js_wrap/three/controls/FlyControls.js +357 -0
  15. data/lib-opal/js_wrap/three/controls/OrbitControls.js +908 -0
  16. data/lib-opal/js_wrap/three/controls/PointerLockControls.js +173 -0
  17. data/lib-opal/js_wrap/three/controls/TrackballControls.js +666 -0
  18. data/lib-opal/js_wrap/three/controls/TransformControls.js +1210 -0
  19. data/lib-opal/js_wrap/three/controls/experimental/CameraControls.js +860 -0
  20. data/lib-opal/js_wrap/three/csm/CSM.js +346 -0
  21. data/lib-opal/js_wrap/three/csm/CSMFrustum.js +123 -0
  22. data/lib-opal/js_wrap/three/csm/CSMHelper.js +197 -0
  23. data/lib-opal/js_wrap/three/csm/CSMShader.js +29 -0
  24. data/lib-opal/js_wrap/three/curves/CurveExtras.js +544 -0
  25. data/lib-opal/js_wrap/three/curves/NURBSCurve.js +122 -0
  26. data/lib-opal/js_wrap/three/curves/NURBSSurface.js +78 -0
  27. data/lib-opal/js_wrap/three/curves/NURBSUtils.js +413 -0
  28. data/lib-opal/js_wrap/three/deprecated/Geometry.js +1373 -0
  29. data/lib-opal/js_wrap/three/effects/AnaglyphEffect.js +113 -0
  30. data/lib-opal/js_wrap/three/effects/AsciiEffect.js +267 -0
  31. data/lib-opal/js_wrap/three/effects/OutlineEffect.js +400 -0
  32. data/lib-opal/js_wrap/three/effects/ParallaxBarrierEffect.js +90 -0
  33. data/lib-opal/js_wrap/three/effects/PeppersGhostEffect.js +160 -0
  34. data/lib-opal/js_wrap/three/effects/StereoEffect.js +63 -0
  35. data/lib-opal/js_wrap/three/environments/DebugEnvironment.js +107 -0
  36. data/lib-opal/js_wrap/three/environments/RoomEnvironment.js +166 -0
  37. data/lib-opal/js_wrap/three/exporters/ColladaExporter.js +442 -0
  38. data/lib-opal/js_wrap/three/exporters/DRACOExporter.js +205 -0
  39. data/lib-opal/js_wrap/three/exporters/GLTFExporter.js +2042 -0
  40. data/lib-opal/js_wrap/three/exporters/MMDExporter.js +189 -0
  41. data/lib-opal/js_wrap/three/exporters/OBJExporter.js +241 -0
  42. data/lib-opal/js_wrap/three/exporters/PLYExporter.js +370 -0
  43. data/lib-opal/js_wrap/three/exporters/STLExporter.js +186 -0
  44. data/lib-opal/js_wrap/three/exporters/USDZExporter.js +402 -0
  45. data/lib-opal/js_wrap/three/geometries/BoxLineGeometry.js +106 -0
  46. data/lib-opal/js_wrap/three/geometries/ConvexGeometry.js +88 -0
  47. data/lib-opal/js_wrap/three/geometries/DecalGeometry.js +302 -0
  48. data/lib-opal/js_wrap/three/geometries/LightningStrike.js +817 -0
  49. data/lib-opal/js_wrap/three/geometries/ParametricGeometries.js +280 -0
  50. data/lib-opal/js_wrap/three/geometries/ParametricGeometry.js +146 -0
  51. data/lib-opal/js_wrap/three/geometries/RoundedBoxGeometry.js +183 -0
  52. data/lib-opal/js_wrap/three/geometries/TeapotGeometry.js +352 -0
  53. data/lib-opal/js_wrap/three/geometries/TextGeometry.js +76 -0
  54. data/lib-opal/js_wrap/three/helpers/LightProbeHelper.js +95 -0
  55. data/lib-opal/js_wrap/three/helpers/PositionalAudioHelper.js +138 -0
  56. data/lib-opal/js_wrap/three/helpers/RectAreaLightHelper.js +115 -0
  57. data/lib-opal/js_wrap/three/helpers/VertexNormalsHelper.js +131 -0
  58. data/lib-opal/js_wrap/three/helpers/VertexTangentsHelper.js +118 -0
  59. data/lib-opal/js_wrap/three/interactive/HTMLMesh.js +307 -0
  60. data/lib-opal/js_wrap/three/interactive/InteractiveGroup.js +138 -0
  61. data/lib-opal/js_wrap/three/interactive/SelectionBox.js +264 -0
  62. data/lib-opal/js_wrap/three/interactive/SelectionHelper.js +88 -0
  63. data/lib-opal/js_wrap/three/libs/OimoPhysics/OimoPhysics.js +46059 -0
  64. data/lib-opal/js_wrap/three/libs/OimoPhysics/index.js +92 -0
  65. data/lib-opal/js_wrap/three/libs/chevrotain.module.min.js +6947 -0
  66. data/lib-opal/js_wrap/three/libs/ecsy.module.js +1999 -0
  67. data/lib-opal/js_wrap/three/libs/fflate.module.js +3002 -0
  68. data/lib-opal/js_wrap/three/libs/flow.module.js +3033 -0
  69. data/lib-opal/js_wrap/three/libs/ktx-parse.module.js +392 -0
  70. data/lib-opal/js_wrap/three/libs/lil-gui.module.min.js +821 -0
  71. data/lib-opal/js_wrap/three/libs/meshopt_decoder.module.js +136 -0
  72. data/lib-opal/js_wrap/three/libs/mmdparser.module.js +11022 -0
  73. data/lib-opal/js_wrap/three/libs/motion-controllers.module.js +589 -0
  74. data/lib-opal/js_wrap/three/libs/opentype.module.min.js +6132 -0
  75. data/lib-opal/js_wrap/three/libs/potpack.module.js +171 -0
  76. data/lib-opal/js_wrap/three/libs/rhino3dm/rhino3dm.js +6781 -0
  77. data/lib-opal/js_wrap/three/libs/rhino3dm/rhino3dm.module.js +6783 -0
  78. data/lib-opal/js_wrap/three/libs/stats.module.js +139 -0
  79. data/lib-opal/js_wrap/three/libs/tween.module.min.js +349 -0
  80. data/lib-opal/js_wrap/three/lights/LightProbeGenerator.js +233 -0
  81. data/lib-opal/js_wrap/three/lights/RectAreaLightUniformsLib.js +75 -0
  82. data/lib-opal/js_wrap/three/lines/Line2.js +66 -0
  83. data/lib-opal/js_wrap/three/lines/LineGeometry.js +122 -0
  84. data/lib-opal/js_wrap/three/lines/LineMaterial.js +227 -0
  85. data/lib-opal/js_wrap/three/lines/LineSegments2.js +312 -0
  86. data/lib-opal/js_wrap/three/lines/LineSegmentsGeometry.js +238 -0
  87. data/lib-opal/js_wrap/three/lines/Wireframe.js +98 -0
  88. data/lib-opal/js_wrap/three/lines/WireframeGeometry2.js +65 -0
  89. data/lib-opal/js_wrap/three/loaders/3DMLoader.js +1230 -0
  90. data/lib-opal/js_wrap/three/loaders/3MFLoader.js +1123 -0
  91. data/lib-opal/js_wrap/three/loaders/AMFLoader.js +445 -0
  92. data/lib-opal/js_wrap/three/loaders/BVHLoader.js +365 -0
  93. data/lib-opal/js_wrap/three/loaders/BasisTextureLoader.js +692 -0
  94. data/lib-opal/js_wrap/three/loaders/ColladaLoader.js +3046 -0
  95. data/lib-opal/js_wrap/three/loaders/DDSLoader.js +264 -0
  96. data/lib-opal/js_wrap/three/loaders/DRACOLoader.js +531 -0
  97. data/lib-opal/js_wrap/three/loaders/EXRLoader.js +1834 -0
  98. data/lib-opal/js_wrap/three/loaders/FBXLoader.js +3125 -0
  99. data/lib-opal/js_wrap/three/loaders/FontLoader.js +201 -0
  100. data/lib-opal/js_wrap/three/loaders/GCodeLoader.js +248 -0
  101. data/lib-opal/js_wrap/three/loaders/GLTFLoader.js +3334 -0
  102. data/lib-opal/js_wrap/three/loaders/HDRCubeTextureLoader.js +144 -0
  103. data/lib-opal/js_wrap/three/loaders/IFCLoader.js +2395 -0
  104. data/lib-opal/js_wrap/three/loaders/KMZLoader.js +142 -0
  105. data/lib-opal/js_wrap/three/loaders/KTX2Loader.js +535 -0
  106. data/lib-opal/js_wrap/three/loaders/KTXLoader.js +202 -0
  107. data/lib-opal/js_wrap/three/loaders/LDrawLoader.js +1737 -0
  108. data/lib-opal/js_wrap/three/loaders/LUT3dlLoader.js +163 -0
  109. data/lib-opal/js_wrap/three/loaders/LUTCubeLoader.js +171 -0
  110. data/lib-opal/js_wrap/three/loaders/LWOLoader.js +831 -0
  111. data/lib-opal/js_wrap/three/loaders/LogLuvLoader.js +713 -0
  112. data/lib-opal/js_wrap/three/loaders/LottieLoader.js +103 -0
  113. data/lib-opal/js_wrap/three/loaders/MD2Loader.js +258 -0
  114. data/lib-opal/js_wrap/three/loaders/MDDLoader.js +116 -0
  115. data/lib-opal/js_wrap/three/loaders/MMDLoader.js +1687 -0
  116. data/lib-opal/js_wrap/three/loaders/MTLLoader.js +465 -0
  117. data/lib-opal/js_wrap/three/loaders/NRRDLoader.js +554 -0
  118. data/lib-opal/js_wrap/three/loaders/NodeMaterialLoader.js +248 -0
  119. data/lib-opal/js_wrap/three/loaders/OBJLoader.js +673 -0
  120. data/lib-opal/js_wrap/three/loaders/PCDLoader.js +322 -0
  121. data/lib-opal/js_wrap/three/loaders/PDBLoader.js +318 -0
  122. data/lib-opal/js_wrap/three/loaders/PLYLoader.js +489 -0
  123. data/lib-opal/js_wrap/three/loaders/PRWMLoader.js +247 -0
  124. data/lib-opal/js_wrap/three/loaders/PVRLoader.js +240 -0
  125. data/lib-opal/js_wrap/three/loaders/RGBELoader.js +462 -0
  126. data/lib-opal/js_wrap/three/loaders/RGBMLoader.js +1169 -0
  127. data/lib-opal/js_wrap/three/loaders/STLLoader.js +345 -0
  128. data/lib-opal/js_wrap/three/loaders/SVGLoader.js +2162 -0
  129. data/lib-opal/js_wrap/three/loaders/TDSLoader.js +982 -0
  130. data/lib-opal/js_wrap/three/loaders/TGALoader.js +444 -0
  131. data/lib-opal/js_wrap/three/loaders/TTFLoader.js +210 -0
  132. data/lib-opal/js_wrap/three/loaders/TiltLoader.js +391 -0
  133. data/lib-opal/js_wrap/three/loaders/VOXLoader.js +272 -0
  134. data/lib-opal/js_wrap/three/loaders/VRMLLoader.js +2685 -0
  135. data/lib-opal/js_wrap/three/loaders/VRMLoader.js +103 -0
  136. data/lib-opal/js_wrap/three/loaders/VTKLoader.js +894 -0
  137. data/lib-opal/js_wrap/three/loaders/XYZLoader.js +136 -0
  138. data/lib-opal/js_wrap/three/loaders/ifc/web-ifc-api.js +60504 -0
  139. data/lib-opal/js_wrap/three/loaders/lwo/IFFParser.js +931 -0
  140. data/lib-opal/js_wrap/three/loaders/lwo/LWO2Parser.js +450 -0
  141. data/lib-opal/js_wrap/three/loaders/lwo/LWO3Parser.js +406 -0
  142. data/lib-opal/js_wrap/three/math/Capsule.js +133 -0
  143. data/lib-opal/js_wrap/three/math/ColorConverter.js +104 -0
  144. data/lib-opal/js_wrap/three/math/ConvexHull.js +924 -0
  145. data/lib-opal/js_wrap/three/math/ImprovedNoise.js +86 -0
  146. data/lib-opal/js_wrap/three/math/Lut.js +170 -0
  147. data/lib-opal/js_wrap/three/math/MeshSurfaceSampler.js +187 -0
  148. data/lib-opal/js_wrap/three/math/OBB.js +345 -0
  149. data/lib-opal/js_wrap/three/math/Octree.js +409 -0
  150. data/lib-opal/js_wrap/three/math/SimplexNoise.js +425 -0
  151. data/lib-opal/js_wrap/three/misc/ConvexObjectBreaker.js +447 -0
  152. data/lib-opal/js_wrap/three/misc/GPUComputationRenderer.js +322 -0
  153. data/lib-opal/js_wrap/three/misc/Gyroscope.js +94 -0
  154. data/lib-opal/js_wrap/three/misc/MD2Character.js +225 -0
  155. data/lib-opal/js_wrap/three/misc/MD2CharacterComplex.js +424 -0
  156. data/lib-opal/js_wrap/three/misc/MorphAnimMesh.js +109 -0
  157. data/lib-opal/js_wrap/three/misc/MorphBlendMesh.js +283 -0
  158. data/lib-opal/js_wrap/three/misc/ProgressiveLightMap.js +324 -0
  159. data/lib-opal/js_wrap/three/misc/RollerCoaster.js +489 -0
  160. data/lib-opal/js_wrap/three/misc/TubePainter.js +158 -0
  161. data/lib-opal/js_wrap/three/misc/Volume.js +427 -0
  162. data/lib-opal/js_wrap/three/misc/VolumeSlice.js +210 -0
  163. data/lib-opal/js_wrap/three/modifiers/CurveModifier.js +291 -0
  164. data/lib-opal/js_wrap/three/modifiers/EdgeSplitModifier.js +308 -0
  165. data/lib-opal/js_wrap/three/modifiers/SimplifyModifier.js +435 -0
  166. data/lib-opal/js_wrap/three/modifiers/TessellateModifier.js +264 -0
  167. data/lib-opal/js_wrap/three/node-editor/NodeEditor.js +402 -0
  168. data/lib-opal/js_wrap/three/node-editor/accessors/NormalEditor.js +80 -0
  169. data/lib-opal/js_wrap/three/node-editor/accessors/PositionEditor.js +80 -0
  170. data/lib-opal/js_wrap/three/node-editor/accessors/UVEditor.js +71 -0
  171. data/lib-opal/js_wrap/three/node-editor/display/BlendEditor.js +78 -0
  172. data/lib-opal/js_wrap/three/node-editor/inputs/ColorEditor.js +111 -0
  173. data/lib-opal/js_wrap/three/node-editor/inputs/FloatEditor.js +69 -0
  174. data/lib-opal/js_wrap/three/node-editor/inputs/SliderEditor.js +97 -0
  175. data/lib-opal/js_wrap/three/node-editor/inputs/Vector2Editor.js +73 -0
  176. data/lib-opal/js_wrap/three/node-editor/inputs/Vector3Editor.js +75 -0
  177. data/lib-opal/js_wrap/three/node-editor/inputs/Vector4Editor.js +77 -0
  178. data/lib-opal/js_wrap/three/node-editor/materials/StandardMaterialEditor.js +121 -0
  179. data/lib-opal/js_wrap/three/node-editor/math/DotEditor.js +76 -0
  180. data/lib-opal/js_wrap/three/node-editor/math/InvertEditor.js +80 -0
  181. data/lib-opal/js_wrap/three/node-editor/math/LimiterEditor.js +85 -0
  182. data/lib-opal/js_wrap/three/node-editor/math/NormalizeEditor.js +69 -0
  183. data/lib-opal/js_wrap/three/node-editor/math/OperatorEditor.js +91 -0
  184. data/lib-opal/js_wrap/three/node-editor/math/PowerEditor.js +73 -0
  185. data/lib-opal/js_wrap/three/node-editor/math/TrigonometryEditor.js +83 -0
  186. data/lib-opal/js_wrap/three/node-editor/procedural/CheckerEditor.js +69 -0
  187. data/lib-opal/js_wrap/three/node-editor/utils/OscillatorEditor.js +87 -0
  188. data/lib-opal/js_wrap/three/node-editor/utils/TimerEditor.js +89 -0
  189. data/lib-opal/js_wrap/three/nodes/Nodes.js +481 -0
  190. data/lib-opal/js_wrap/three/nodes/accessors/CameraNode.js +222 -0
  191. data/lib-opal/js_wrap/three/nodes/accessors/ColorsNode.js +99 -0
  192. data/lib-opal/js_wrap/three/nodes/accessors/LightNode.js +100 -0
  193. data/lib-opal/js_wrap/three/nodes/accessors/NormalNode.js +152 -0
  194. data/lib-opal/js_wrap/three/nodes/accessors/PositionNode.js +163 -0
  195. data/lib-opal/js_wrap/three/nodes/accessors/ReflectNode.js +161 -0
  196. data/lib-opal/js_wrap/three/nodes/accessors/ResolutionNode.js +99 -0
  197. data/lib-opal/js_wrap/three/nodes/accessors/ScreenUVNode.js +101 -0
  198. data/lib-opal/js_wrap/three/nodes/accessors/UVNode.js +105 -0
  199. data/lib-opal/js_wrap/three/nodes/core/AttributeNode.js +106 -0
  200. data/lib-opal/js_wrap/three/nodes/core/ConstNode.js +149 -0
  201. data/lib-opal/js_wrap/three/nodes/core/ExpressionNode.js +57 -0
  202. data/lib-opal/js_wrap/three/nodes/core/FunctionCallNode.js +138 -0
  203. data/lib-opal/js_wrap/three/nodes/core/FunctionNode.js +259 -0
  204. data/lib-opal/js_wrap/three/nodes/core/InputNode.js +124 -0
  205. data/lib-opal/js_wrap/three/nodes/core/Node.js +193 -0
  206. data/lib-opal/js_wrap/three/nodes/core/NodeBuilder.js +782 -0
  207. data/lib-opal/js_wrap/three/nodes/core/NodeFrame.js +69 -0
  208. data/lib-opal/js_wrap/three/nodes/core/NodeLib.js +56 -0
  209. data/lib-opal/js_wrap/three/nodes/core/NodeUniform.js +53 -0
  210. data/lib-opal/js_wrap/three/nodes/core/NodeUtils.js +60 -0
  211. data/lib-opal/js_wrap/three/nodes/core/StructNode.js +131 -0
  212. data/lib-opal/js_wrap/three/nodes/core/TempNode.js +160 -0
  213. data/lib-opal/js_wrap/three/nodes/core/VarNode.js +105 -0
  214. data/lib-opal/js_wrap/three/nodes/effects/BlurNode.js +160 -0
  215. data/lib-opal/js_wrap/three/nodes/effects/ColorAdjustmentNode.js +139 -0
  216. data/lib-opal/js_wrap/three/nodes/effects/LuminanceNode.js +106 -0
  217. data/lib-opal/js_wrap/three/nodes/inputs/BoolNode.js +95 -0
  218. data/lib-opal/js_wrap/three/nodes/inputs/ColorNode.js +99 -0
  219. data/lib-opal/js_wrap/three/nodes/inputs/CubeTextureNode.js +136 -0
  220. data/lib-opal/js_wrap/three/nodes/inputs/FloatNode.js +95 -0
  221. data/lib-opal/js_wrap/three/nodes/inputs/IntNode.js +95 -0
  222. data/lib-opal/js_wrap/three/nodes/inputs/Matrix3Node.js +102 -0
  223. data/lib-opal/js_wrap/three/nodes/inputs/Matrix4Node.js +102 -0
  224. data/lib-opal/js_wrap/three/nodes/inputs/PropertyNode.js +85 -0
  225. data/lib-opal/js_wrap/three/nodes/inputs/RTTNode.js +164 -0
  226. data/lib-opal/js_wrap/three/nodes/inputs/ReflectorNode.js +111 -0
  227. data/lib-opal/js_wrap/three/nodes/inputs/ScreenNode.js +69 -0
  228. data/lib-opal/js_wrap/three/nodes/inputs/TextureNode.js +140 -0
  229. data/lib-opal/js_wrap/three/nodes/inputs/Vector2Node.js +98 -0
  230. data/lib-opal/js_wrap/three/nodes/inputs/Vector3Node.js +99 -0
  231. data/lib-opal/js_wrap/three/nodes/inputs/Vector4Node.js +100 -0
  232. data/lib-opal/js_wrap/three/nodes/materials/BasicNodeMaterial.js +63 -0
  233. data/lib-opal/js_wrap/three/nodes/materials/MeshStandardNodeMaterial.js +63 -0
  234. data/lib-opal/js_wrap/three/nodes/materials/NodeMaterial.js +202 -0
  235. data/lib-opal/js_wrap/three/nodes/materials/PhongNodeMaterial.js +63 -0
  236. data/lib-opal/js_wrap/three/nodes/materials/SpriteNodeMaterial.js +63 -0
  237. data/lib-opal/js_wrap/three/nodes/materials/StandardNodeMaterial.js +63 -0
  238. data/lib-opal/js_wrap/three/nodes/materials/nodes/BasicNode.js +146 -0
  239. data/lib-opal/js_wrap/three/nodes/materials/nodes/MeshStandardNode.js +133 -0
  240. data/lib-opal/js_wrap/three/nodes/materials/nodes/PhongNode.js +273 -0
  241. data/lib-opal/js_wrap/three/nodes/materials/nodes/RawNode.js +101 -0
  242. data/lib-opal/js_wrap/three/nodes/materials/nodes/SpriteNode.js +176 -0
  243. data/lib-opal/js_wrap/three/nodes/materials/nodes/StandardNode.js +397 -0
  244. data/lib-opal/js_wrap/three/nodes/math/CondNode.js +151 -0
  245. data/lib-opal/js_wrap/three/nodes/math/MathNode.js +266 -0
  246. data/lib-opal/js_wrap/three/nodes/math/OperatorNode.js +120 -0
  247. data/lib-opal/js_wrap/three/nodes/misc/BumpMapNode.js +139 -0
  248. data/lib-opal/js_wrap/three/nodes/misc/NormalMapNode.js +122 -0
  249. data/lib-opal/js_wrap/three/nodes/misc/TextureCubeNode.js +107 -0
  250. data/lib-opal/js_wrap/three/nodes/misc/TextureCubeUVNode.js +191 -0
  251. data/lib-opal/js_wrap/three/nodes/postprocessing/NodePass.js +117 -0
  252. data/lib-opal/js_wrap/three/nodes/postprocessing/NodePostProcessing.js +128 -0
  253. data/lib-opal/js_wrap/three/nodes/procedural/CheckerNode.js +104 -0
  254. data/lib-opal/js_wrap/three/nodes/procedural/Fractal3DNode.js +121 -0
  255. data/lib-opal/js_wrap/three/nodes/procedural/Noise2DNode.js +115 -0
  256. data/lib-opal/js_wrap/three/nodes/procedural/Noise3DNode.js +112 -0
  257. data/lib-opal/js_wrap/three/nodes/utils/BypassNode.js +115 -0
  258. data/lib-opal/js_wrap/three/nodes/utils/ColorSpaceNode.js +214 -0
  259. data/lib-opal/js_wrap/three/nodes/utils/JoinNode.js +138 -0
  260. data/lib-opal/js_wrap/three/nodes/utils/MaxMIPLevelNode.js +88 -0
  261. data/lib-opal/js_wrap/three/nodes/utils/RemapNode.js +117 -0
  262. data/lib-opal/js_wrap/three/nodes/utils/SpecularMIPLevelNode.js +121 -0
  263. data/lib-opal/js_wrap/three/nodes/utils/SubSlotNode.js +112 -0
  264. data/lib-opal/js_wrap/three/nodes/utils/SwitchNode.js +129 -0
  265. data/lib-opal/js_wrap/three/nodes/utils/TimerNode.js +126 -0
  266. data/lib-opal/js_wrap/three/nodes/utils/UVTransformNode.js +104 -0
  267. data/lib-opal/js_wrap/three/nodes/utils/VelocityNode.js +181 -0
  268. data/lib-opal/js_wrap/three/objects/Lensflare.js +285 -0
  269. data/lib-opal/js_wrap/three/objects/LightningStorm.js +238 -0
  270. data/lib-opal/js_wrap/three/objects/MarchingCubes.js +667 -0
  271. data/lib-opal/js_wrap/three/objects/Reflector.js +205 -0
  272. data/lib-opal/js_wrap/three/objects/ReflectorForSSRPass.js +288 -0
  273. data/lib-opal/js_wrap/three/objects/ReflectorRTT.js +63 -0
  274. data/lib-opal/js_wrap/three/objects/Refractor.js +243 -0
  275. data/lib-opal/js_wrap/three/objects/ShadowMesh.js +100 -0
  276. data/lib-opal/js_wrap/three/objects/Sky.js +107 -0
  277. data/lib-opal/js_wrap/three/objects/Water.js +246 -0
  278. data/lib-opal/js_wrap/three/objects/Water2.js +238 -0
  279. data/lib-opal/js_wrap/three/offscreen/jank.js +51 -0
  280. data/lib-opal/js_wrap/three/offscreen/offscreen.js +24 -0
  281. data/lib-opal/js_wrap/three/offscreen/scene.js +99 -0
  282. data/lib-opal/js_wrap/three/physics/AmmoPhysics.js +266 -0
  283. data/lib-opal/js_wrap/three/physics/OimoPhysics.js +214 -0
  284. data/lib-opal/js_wrap/three/postprocessing/AdaptiveToneMappingPass.js +307 -0
  285. data/lib-opal/js_wrap/three/postprocessing/AfterimagePass.js +116 -0
  286. data/lib-opal/js_wrap/three/postprocessing/BloomPass.js +132 -0
  287. data/lib-opal/js_wrap/three/postprocessing/BokehPass.js +143 -0
  288. data/lib-opal/js_wrap/three/postprocessing/ClearPass.js +85 -0
  289. data/lib-opal/js_wrap/three/postprocessing/CubeTexturePass.js +104 -0
  290. data/lib-opal/js_wrap/three/postprocessing/DotScreenPass.js +90 -0
  291. data/lib-opal/js_wrap/three/postprocessing/EffectComposer.js +272 -0
  292. data/lib-opal/js_wrap/three/postprocessing/FilmPass.js +91 -0
  293. data/lib-opal/js_wrap/three/postprocessing/GlitchPass.js +140 -0
  294. data/lib-opal/js_wrap/three/postprocessing/HalftonePass.js +108 -0
  295. data/lib-opal/js_wrap/three/postprocessing/LUTPass.js +132 -0
  296. data/lib-opal/js_wrap/three/postprocessing/MaskPass.js +142 -0
  297. data/lib-opal/js_wrap/three/postprocessing/OutlinePass.js +480 -0
  298. data/lib-opal/js_wrap/three/postprocessing/Pass.js +101 -0
  299. data/lib-opal/js_wrap/three/postprocessing/RenderPass.js +109 -0
  300. data/lib-opal/js_wrap/three/postprocessing/SAOPass.js +384 -0
  301. data/lib-opal/js_wrap/three/postprocessing/SMAAPass.js +199 -0
  302. data/lib-opal/js_wrap/three/postprocessing/SSAARenderPass.js +186 -0
  303. data/lib-opal/js_wrap/three/postprocessing/SSAOPass.js +388 -0
  304. data/lib-opal/js_wrap/three/postprocessing/SSRPass.js +537 -0
  305. data/lib-opal/js_wrap/three/postprocessing/SSRrPass.js +481 -0
  306. data/lib-opal/js_wrap/three/postprocessing/SavePass.js +96 -0
  307. data/lib-opal/js_wrap/three/postprocessing/ShaderPass.js +98 -0
  308. data/lib-opal/js_wrap/three/postprocessing/TAARenderPass.js +159 -0
  309. data/lib-opal/js_wrap/three/postprocessing/TexturePass.js +91 -0
  310. data/lib-opal/js_wrap/three/postprocessing/UnrealBloomPass.js +335 -0
  311. data/lib-opal/js_wrap/three/renderers/CSS2DRenderer.js +213 -0
  312. data/lib-opal/js_wrap/three/renderers/CSS3DRenderer.js +277 -0
  313. data/lib-opal/js_wrap/three/renderers/Projector.js +733 -0
  314. data/lib-opal/js_wrap/three/renderers/SVGRenderer.js +470 -0
  315. data/lib-opal/js_wrap/three/renderers/nodes/Nodes.js +531 -0
  316. data/lib-opal/js_wrap/three/renderers/nodes/ShaderNode.js +386 -0
  317. data/lib-opal/js_wrap/three/renderers/nodes/accessors/CameraNode.js +114 -0
  318. data/lib-opal/js_wrap/three/renderers/nodes/accessors/MaterialNode.js +140 -0
  319. data/lib-opal/js_wrap/three/renderers/nodes/accessors/MaterialReferenceNode.js +79 -0
  320. data/lib-opal/js_wrap/three/renderers/nodes/accessors/ModelNode.js +62 -0
  321. data/lib-opal/js_wrap/three/renderers/nodes/accessors/ModelViewProjectionNode.js +80 -0
  322. data/lib-opal/js_wrap/three/renderers/nodes/accessors/NormalNode.js +113 -0
  323. data/lib-opal/js_wrap/three/renderers/nodes/accessors/Object3DNode.js +136 -0
  324. data/lib-opal/js_wrap/three/renderers/nodes/accessors/PointUVNode.js +70 -0
  325. data/lib-opal/js_wrap/three/renderers/nodes/accessors/PositionNode.js +117 -0
  326. data/lib-opal/js_wrap/three/renderers/nodes/accessors/ReferenceNode.js +124 -0
  327. data/lib-opal/js_wrap/three/renderers/nodes/accessors/SkinningNode.js +129 -0
  328. data/lib-opal/js_wrap/three/renderers/nodes/accessors/UVNode.js +77 -0
  329. data/lib-opal/js_wrap/three/renderers/nodes/core/ArrayInputNode.js +74 -0
  330. data/lib-opal/js_wrap/three/renderers/nodes/core/AttributeNode.js +97 -0
  331. data/lib-opal/js_wrap/three/renderers/nodes/core/BypassNode.js +84 -0
  332. data/lib-opal/js_wrap/three/renderers/nodes/core/CodeNode.js +131 -0
  333. data/lib-opal/js_wrap/three/renderers/nodes/core/ContextNode.js +84 -0
  334. data/lib-opal/js_wrap/three/renderers/nodes/core/ExpressionNode.js +81 -0
  335. data/lib-opal/js_wrap/three/renderers/nodes/core/FunctionCallNode.js +123 -0
  336. data/lib-opal/js_wrap/three/renderers/nodes/core/FunctionNode.js +126 -0
  337. data/lib-opal/js_wrap/three/renderers/nodes/core/InputNode.js +103 -0
  338. data/lib-opal/js_wrap/three/renderers/nodes/core/Node.js +120 -0
  339. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeAttribute.js +37 -0
  340. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeBuilder.js +650 -0
  341. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeCode.js +42 -0
  342. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeFrame.js +70 -0
  343. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeFunction.js +55 -0
  344. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeFunctionInput.js +44 -0
  345. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeKeywords.js +117 -0
  346. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeParser.js +46 -0
  347. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeUniform.js +55 -0
  348. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeVar.js +37 -0
  349. data/lib-opal/js_wrap/three/renderers/nodes/core/NodeVary.js +37 -0
  350. data/lib-opal/js_wrap/three/renderers/nodes/core/PropertyNode.js +90 -0
  351. data/lib-opal/js_wrap/three/renderers/nodes/core/TempNode.js +89 -0
  352. data/lib-opal/js_wrap/three/renderers/nodes/core/VarNode.js +101 -0
  353. data/lib-opal/js_wrap/three/renderers/nodes/core/VaryNode.js +101 -0
  354. data/lib-opal/js_wrap/three/renderers/nodes/core/constants.js +42 -0
  355. data/lib-opal/js_wrap/three/renderers/nodes/display/ColorSpaceNode.js +165 -0
  356. data/lib-opal/js_wrap/three/renderers/nodes/display/NormalMapNode.js +120 -0
  357. data/lib-opal/js_wrap/three/renderers/nodes/functions/BSDFs.js +133 -0
  358. data/lib-opal/js_wrap/three/renderers/nodes/inputs/BufferNode.js +78 -0
  359. data/lib-opal/js_wrap/three/renderers/nodes/inputs/ColorNode.js +67 -0
  360. data/lib-opal/js_wrap/three/renderers/nodes/inputs/FloatNode.js +67 -0
  361. data/lib-opal/js_wrap/three/renderers/nodes/inputs/IntNode.js +67 -0
  362. data/lib-opal/js_wrap/three/renderers/nodes/inputs/Matrix3Node.js +67 -0
  363. data/lib-opal/js_wrap/three/renderers/nodes/inputs/Matrix4Node.js +67 -0
  364. data/lib-opal/js_wrap/three/renderers/nodes/inputs/TextureNode.js +120 -0
  365. data/lib-opal/js_wrap/three/renderers/nodes/inputs/Vector2Node.js +67 -0
  366. data/lib-opal/js_wrap/three/renderers/nodes/inputs/Vector3Node.js +67 -0
  367. data/lib-opal/js_wrap/three/renderers/nodes/inputs/Vector4Node.js +67 -0
  368. data/lib-opal/js_wrap/three/renderers/nodes/lights/LightContextNode.js +103 -0
  369. data/lib-opal/js_wrap/three/renderers/nodes/lights/LightNode.js +115 -0
  370. data/lib-opal/js_wrap/three/renderers/nodes/lights/LightsNode.js +117 -0
  371. data/lib-opal/js_wrap/three/renderers/nodes/materials/LineBasicNodeMaterial.js +82 -0
  372. data/lib-opal/js_wrap/three/renderers/nodes/materials/Materials.js +49 -0
  373. data/lib-opal/js_wrap/three/renderers/nodes/materials/MeshBasicNodeMaterial.js +82 -0
  374. data/lib-opal/js_wrap/three/renderers/nodes/materials/MeshStandardNodeMaterial.js +96 -0
  375. data/lib-opal/js_wrap/three/renderers/nodes/materials/PointsNodeMaterial.js +84 -0
  376. data/lib-opal/js_wrap/three/renderers/nodes/math/CondNode.js +98 -0
  377. data/lib-opal/js_wrap/three/renderers/nodes/math/MathNode.js +255 -0
  378. data/lib-opal/js_wrap/three/renderers/nodes/math/OperatorNode.js +163 -0
  379. data/lib-opal/js_wrap/three/renderers/nodes/parsers/GLSLNodeFunction.js +158 -0
  380. data/lib-opal/js_wrap/three/renderers/nodes/parsers/GLSLNodeParser.js +68 -0
  381. data/lib-opal/js_wrap/three/renderers/nodes/parsers/WGSLNodeFunction.js +126 -0
  382. data/lib-opal/js_wrap/three/renderers/nodes/parsers/WGSLNodeParser.js +68 -0
  383. data/lib-opal/js_wrap/three/renderers/nodes/procedural/CheckerNode.js +84 -0
  384. data/lib-opal/js_wrap/three/renderers/nodes/utils/ArrayElementNode.js +79 -0
  385. data/lib-opal/js_wrap/three/renderers/nodes/utils/ConvertNode.js +82 -0
  386. data/lib-opal/js_wrap/three/renderers/nodes/utils/JoinNode.js +88 -0
  387. data/lib-opal/js_wrap/three/renderers/nodes/utils/OscNode.js +105 -0
  388. data/lib-opal/js_wrap/three/renderers/nodes/utils/SplitNode.js +96 -0
  389. data/lib-opal/js_wrap/three/renderers/nodes/utils/SpriteSheetUVNode.js +98 -0
  390. data/lib-opal/js_wrap/three/renderers/nodes/utils/TimerNode.js +93 -0
  391. data/lib-opal/js_wrap/three/renderers/webgl/nodes/SlotNode.js +72 -0
  392. data/lib-opal/js_wrap/three/renderers/webgl/nodes/WebGLNodeBuilder.js +463 -0
  393. data/lib-opal/js_wrap/three/renderers/webgl/nodes/WebGLNodes.js +62 -0
  394. data/lib-opal/js_wrap/three/renderers/webgl/nodes/WebGLPhysicalContextNode.js +95 -0
  395. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPU.js +62 -0
  396. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUAttributes.js +118 -0
  397. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBackground.js +109 -0
  398. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBinding.js +52 -0
  399. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBindings.js +254 -0
  400. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBufferUtils.js +39 -0
  401. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUComputePipelines.js +82 -0
  402. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUGeometries.js +84 -0
  403. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUInfo.js +86 -0
  404. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUObjects.js +64 -0
  405. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUProgrammableStage.js +46 -0
  406. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUProperties.js +63 -0
  407. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderLists.js +180 -0
  408. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderPipeline.js +662 -0
  409. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderPipelines.js +275 -0
  410. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderer.js +883 -0
  411. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUSampledTexture.js +139 -0
  412. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUSampler.js +76 -0
  413. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUStorageBuffer.js +69 -0
  414. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUTextureRenderer.js +64 -0
  415. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUTextureUtils.js +125 -0
  416. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUTextures.js +681 -0
  417. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUUniform.js +237 -0
  418. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUUniformBuffer.js +90 -0
  419. data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUUniformsGroup.js +294 -0
  420. data/lib-opal/js_wrap/three/renderers/webgpu/constants.js +263 -0
  421. data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeBuilder.js +619 -0
  422. data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeSampledTexture.js +67 -0
  423. data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeSampler.js +71 -0
  424. data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeUniform.js +229 -0
  425. data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeUniformsGroup.js +68 -0
  426. data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodes.js +106 -0
  427. data/lib-opal/js_wrap/three/shaders/ACESFilmicToneMappingShader.js +45 -0
  428. data/lib-opal/js_wrap/three/shaders/AfterimageShader.js +46 -0
  429. data/lib-opal/js_wrap/three/shaders/BasicShader.js +34 -0
  430. data/lib-opal/js_wrap/three/shaders/BleachBypassShader.js +43 -0
  431. data/lib-opal/js_wrap/three/shaders/BlendShader.js +47 -0
  432. data/lib-opal/js_wrap/three/shaders/BokehShader.js +65 -0
  433. data/lib-opal/js_wrap/three/shaders/BokehShader2.js +125 -0
  434. data/lib-opal/js_wrap/three/shaders/BrightnessContrastShader.js +47 -0
  435. data/lib-opal/js_wrap/three/shaders/ColorCorrectionShader.js +47 -0
  436. data/lib-opal/js_wrap/three/shaders/ColorifyShader.js +41 -0
  437. data/lib-opal/js_wrap/three/shaders/ConvolutionShader.js +75 -0
  438. data/lib-opal/js_wrap/three/shaders/CopyShader.js +41 -0
  439. data/lib-opal/js_wrap/three/shaders/DOFMipMapShader.js +49 -0
  440. data/lib-opal/js_wrap/three/shaders/DepthLimitedBlurShader.js +95 -0
  441. data/lib-opal/js_wrap/three/shaders/DigitalGlitch.js +79 -0
  442. data/lib-opal/js_wrap/three/shaders/DotScreenShader.js +52 -0
  443. data/lib-opal/js_wrap/three/shaders/FXAAShader.js +78 -0
  444. data/lib-opal/js_wrap/three/shaders/FilmShader.js +69 -0
  445. data/lib-opal/js_wrap/three/shaders/FocusShader.js +52 -0
  446. data/lib-opal/js_wrap/three/shaders/FreiChenShader.js +44 -0
  447. data/lib-opal/js_wrap/three/shaders/GammaCorrectionShader.js +39 -0
  448. data/lib-opal/js_wrap/three/shaders/GodRaysShader.js +140 -0
  449. data/lib-opal/js_wrap/three/shaders/HalftoneShader.js +77 -0
  450. data/lib-opal/js_wrap/three/shaders/HorizontalBlurShader.js +47 -0
  451. data/lib-opal/js_wrap/three/shaders/HorizontalTiltShiftShader.js +49 -0
  452. data/lib-opal/js_wrap/three/shaders/HueSaturationShader.js +47 -0
  453. data/lib-opal/js_wrap/three/shaders/KaleidoShader.js +50 -0
  454. data/lib-opal/js_wrap/three/shaders/LuminosityHighPassShader.js +52 -0
  455. data/lib-opal/js_wrap/three/shaders/LuminosityShader.js +39 -0
  456. data/lib-opal/js_wrap/three/shaders/MMDToonShader.js +48 -0
  457. data/lib-opal/js_wrap/three/shaders/MirrorShader.js +44 -0
  458. data/lib-opal/js_wrap/three/shaders/NormalMapShader.js +48 -0
  459. data/lib-opal/js_wrap/three/shaders/PixelShader.js +44 -0
  460. data/lib-opal/js_wrap/three/shaders/RGBShiftShader.js +50 -0
  461. data/lib-opal/js_wrap/three/shaders/SAOShader.js +85 -0
  462. data/lib-opal/js_wrap/three/shaders/SMAAShader.js +95 -0
  463. data/lib-opal/js_wrap/three/shaders/SSAOShader.js +113 -0
  464. data/lib-opal/js_wrap/three/shaders/SSRShader.js +126 -0
  465. data/lib-opal/js_wrap/three/shaders/SSRrShader.js +106 -0
  466. data/lib-opal/js_wrap/three/shaders/SepiaShader.js +43 -0
  467. data/lib-opal/js_wrap/three/shaders/SobelOperatorShader.js +44 -0
  468. data/lib-opal/js_wrap/three/shaders/SubsurfaceScatteringShader.js +64 -0
  469. data/lib-opal/js_wrap/three/shaders/TechnicolorShader.js +41 -0
  470. data/lib-opal/js_wrap/three/shaders/ToneMapShader.js +53 -0
  471. data/lib-opal/js_wrap/three/shaders/ToonShader.js +148 -0
  472. data/lib-opal/js_wrap/three/shaders/TriangleBlurShader.js +47 -0
  473. data/lib-opal/js_wrap/three/shaders/UnpackDepthRGBAShader.js +42 -0
  474. data/lib-opal/js_wrap/three/shaders/VerticalBlurShader.js +47 -0
  475. data/lib-opal/js_wrap/three/shaders/VerticalTiltShiftShader.js +49 -0
  476. data/lib-opal/js_wrap/three/shaders/VignetteShader.js +46 -0
  477. data/lib-opal/js_wrap/three/shaders/VolumeShader.js +55 -0
  478. data/lib-opal/js_wrap/three/shaders/WaterRefractionShader.js +46 -0
  479. data/lib-opal/js_wrap/three/textures/FlakesTexture.js +61 -0
  480. data/lib-opal/js_wrap/three/utils/BufferGeometryUtils.js +683 -0
  481. data/lib-opal/js_wrap/three/utils/CameraUtils.js +97 -0
  482. data/lib-opal/js_wrap/three/utils/GPUStatsPanel.js +154 -0
  483. data/lib-opal/js_wrap/three/utils/GeometryCompressionUtils.js +468 -0
  484. data/lib-opal/js_wrap/three/utils/GeometryUtils.js +192 -0
  485. data/lib-opal/js_wrap/three/utils/PackedPhongMaterial.js +77 -0
  486. data/lib-opal/js_wrap/three/utils/RoughnessMipmapper.js +169 -0
  487. data/lib-opal/js_wrap/three/utils/SceneUtils.js +62 -0
  488. data/lib-opal/js_wrap/three/utils/ShadowMapViewer.js +182 -0
  489. data/lib-opal/js_wrap/three/utils/SkeletonUtils.js +400 -0
  490. data/lib-opal/js_wrap/three/utils/UVsDebug.js +132 -0
  491. data/lib-opal/js_wrap/three/utils/WorkerPool.js +130 -0
  492. data/lib-opal/js_wrap/three/webxr/ARButton.js +203 -0
  493. data/lib-opal/js_wrap/three/webxr/OculusHandModel.js +131 -0
  494. data/lib-opal/js_wrap/three/webxr/OculusHandPointerModel.js +328 -0
  495. data/lib-opal/js_wrap/three/webxr/Text2D.js +54 -0
  496. data/lib-opal/js_wrap/three/webxr/VRButton.js +181 -0
  497. data/lib-opal/js_wrap/three/webxr/XRControllerModelFactory.js +266 -0
  498. data/lib-opal/js_wrap/three/webxr/XREstimatedLight.js +221 -0
  499. data/lib-opal/js_wrap/three/webxr/XRHandMeshModel.js +93 -0
  500. data/lib-opal/js_wrap/three/webxr/XRHandModelFactory.js +127 -0
  501. data/lib-opal/js_wrap/three/webxr/XRHandPrimitiveModel.js +85 -0
  502. data/opal-js_wrap-three.gemspec +4 -4
  503. metadata +502 -5
@@ -0,0 +1,713 @@
1
+ (function (global, factory) {
2
+ if (typeof define === "function" && define.amd) {
3
+ define(["exports", "three"], factory);
4
+ } else if (typeof exports !== "undefined") {
5
+ factory(exports, require("three"));
6
+ } else {
7
+ var mod = {
8
+ exports: {}
9
+ };
10
+ factory(mod.exports, global.three);
11
+ global.LogLuvLoader = mod.exports;
12
+ }
13
+ })(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, _three) {
14
+ "use strict";
15
+
16
+ Object.defineProperty(_exports, "__esModule", {
17
+ value: true
18
+ });
19
+ _exports.LogLuvLoader = void 0;
20
+
21
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
22
+
23
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
24
+
25
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
26
+
27
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
28
+
29
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
30
+
31
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
32
+
33
+ function _possibleConstructorReturn(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
34
+
35
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
36
+
37
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
38
+
39
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
40
+
41
+ var LogLuvLoader = /*#__PURE__*/function (_DataTextureLoader) {
42
+ _inherits(LogLuvLoader, _DataTextureLoader);
43
+
44
+ var _super = _createSuper(LogLuvLoader);
45
+
46
+ function LogLuvLoader(manager) {
47
+ var _this;
48
+
49
+ _classCallCheck(this, LogLuvLoader);
50
+
51
+ _this = _super.call(this, manager);
52
+ _this.type = _three.HalfFloatType;
53
+ return _this;
54
+ }
55
+
56
+ _createClass(LogLuvLoader, [{
57
+ key: "parse",
58
+ value: function parse(buffer) {
59
+ var ifds = UTIF.decode(buffer);
60
+ UTIF.decodeImage(buffer, ifds[0]);
61
+ var rgba = UTIF.toRGBA(ifds[0], this.type);
62
+ return {
63
+ width: ifds[0].width,
64
+ height: ifds[0].height,
65
+ data: rgba,
66
+ format: _three.RGBAFormat,
67
+ type: this.type,
68
+ flipY: true
69
+ };
70
+ }
71
+ }, {
72
+ key: "setDataType",
73
+ value: function setDataType(value) {
74
+ this.type = value;
75
+ return this;
76
+ }
77
+ }]);
78
+
79
+ return LogLuvLoader;
80
+ }(_three.DataTextureLoader); // from https://github.com/photopea/UTIF.js (MIT License)
81
+
82
+
83
+ _exports.LogLuvLoader = LogLuvLoader;
84
+ var UTIF = {};
85
+
86
+ UTIF.decode = function (buff, prm) {
87
+ if (prm == null) prm = {
88
+ parseMN: true,
89
+ debug: false
90
+ }; // read MakerNote, debug
91
+
92
+ var data = new Uint8Array(buff),
93
+ offset = 0;
94
+
95
+ var id = UTIF._binBE.readASCII(data, offset, 2);
96
+
97
+ offset += 2;
98
+ var bin = id == 'II' ? UTIF._binLE : UTIF._binBE;
99
+ bin.readUshort(data, offset);
100
+ offset += 2;
101
+ var ifdo = bin.readUint(data, offset);
102
+ offset += 4;
103
+ var ifds = [];
104
+
105
+ while (true) {
106
+ var cnt = bin.readUshort(data, ifdo),
107
+ typ = bin.readUshort(data, ifdo + 4);
108
+ if (cnt != 0) if (typ < 1 || 13 < typ) {
109
+ console.log('error in TIFF');
110
+ break;
111
+ }
112
+
113
+ UTIF._readIFD(bin, data, ifdo, ifds, 0, prm);
114
+
115
+ ifdo = bin.readUint(data, ifdo + 2 + cnt * 12);
116
+ if (ifdo == 0) break;
117
+ }
118
+
119
+ return ifds;
120
+ };
121
+
122
+ UTIF.decodeImage = function (buff, img, ifds) {
123
+ if (img.data) return;
124
+ var data = new Uint8Array(buff);
125
+
126
+ var id = UTIF._binBE.readASCII(data, 0, 2);
127
+
128
+ if (img['t256'] == null) return; // No width => probably not an image
129
+
130
+ img.isLE = id == 'II';
131
+ img.width = img['t256'][0]; //delete img["t256"];
132
+
133
+ img.height = img['t257'][0]; //delete img["t257"];
134
+
135
+ var cmpr = img['t259'] ? img['t259'][0] : 1; //delete img["t259"];
136
+
137
+ var fo = img['t266'] ? img['t266'][0] : 1; //delete img["t266"];
138
+
139
+ if (img['t284'] && img['t284'][0] == 2) console.log('PlanarConfiguration 2 should not be used!');
140
+ if (cmpr == 7 && img['t258'] && img['t258'].length > 3) img['t258'] = img['t258'].slice(0, 3);
141
+ var bipp; // bits per pixel
142
+
143
+ if (img['t258']) bipp = Math.min(32, img['t258'][0]) * img['t258'].length;else bipp = img['t277'] ? img['t277'][0] : 1; // Some .NEF files have t258==14, even though they use 16 bits per pixel
144
+
145
+ if (cmpr == 1 && img['t279'] != null && img['t278'] && img['t262'][0] == 32803) {
146
+ bipp = Math.round(img['t279'][0] * 8 / (img.width * img['t278'][0]));
147
+ }
148
+
149
+ var bipl = Math.ceil(img.width * bipp / 8) * 8;
150
+ var soff = img['t273'];
151
+ if (soff == null) soff = img['t324'];
152
+ var bcnt = img['t279'];
153
+ if (cmpr == 1 && soff.length == 1) bcnt = [img.height * (bipl >>> 3)];
154
+ if (bcnt == null) bcnt = img['t325']; //bcnt[0] = Math.min(bcnt[0], data.length); // Hasselblad, "RAW_HASSELBLAD_H3D39II.3FR"
155
+
156
+ var bytes = new Uint8Array(img.height * (bipl >>> 3)),
157
+ bilen = 0;
158
+
159
+ if (img['t322'] != null) {
160
+ var tw = img['t322'][0],
161
+ th = img['t323'][0];
162
+ var tx = Math.floor((img.width + tw - 1) / tw);
163
+ var ty = Math.floor((img.height + th - 1) / th);
164
+ var tbuff = new Uint8Array(Math.ceil(tw * th * bipp / 8) | 0);
165
+
166
+ for (var y = 0; y < ty; y++) {
167
+ for (var x = 0; x < tx; x++) {
168
+ var i = y * tx + x;
169
+
170
+ for (var j = 0; j < tbuff.length; j++) {
171
+ tbuff[j] = 0;
172
+ }
173
+
174
+ UTIF.decode._decompress(img, ifds, data, soff[i], bcnt[i], cmpr, tbuff, 0, fo); // Might be required for 7 too. Need to check
175
+
176
+
177
+ if (cmpr == 6) bytes = tbuff;else UTIF._copyTile(tbuff, Math.ceil(tw * bipp / 8) | 0, th, bytes, Math.ceil(img.width * bipp / 8) | 0, img.height, Math.ceil(x * tw * bipp / 8) | 0, y * th);
178
+ }
179
+ }
180
+
181
+ bilen = bytes.length * 8;
182
+ } else {
183
+ var rps = img['t278'] ? img['t278'][0] : img.height;
184
+ rps = Math.min(rps, img.height);
185
+
186
+ for (var i = 0; i < soff.length; i++) {
187
+ UTIF.decode._decompress(img, ifds, data, soff[i], bcnt[i], cmpr, bytes, Math.ceil(bilen / 8) | 0, fo);
188
+
189
+ bilen += bipl * rps;
190
+ }
191
+
192
+ bilen = Math.min(bilen, bytes.length * 8);
193
+ }
194
+
195
+ img.data = new Uint8Array(bytes.buffer, 0, Math.ceil(bilen / 8) | 0);
196
+ };
197
+
198
+ UTIF.decode._decompress = function (img, ifds, data, off, len, cmpr, tgt, toff) {
199
+ //console.log("compression", cmpr);
200
+ //var time = Date.now();
201
+ if (cmpr == 34676) UTIF.decode._decodeLogLuv32(img, data, off, len, tgt, toff);else console.log('Unsupported compression', cmpr); //console.log(Date.now()-time);
202
+
203
+ var bps = img['t258'] ? Math.min(32, img['t258'][0]) : 1;
204
+ var noc = img['t277'] ? img['t277'][0] : 1,
205
+ bpp = bps * noc >>> 3,
206
+ h = img['t278'] ? img['t278'][0] : img.height,
207
+ bpl = Math.ceil(bps * noc * img.width / 8); // convert to Little Endian /*
208
+
209
+ if (bps == 16 && !img.isLE && img['t33422'] == null) // not DNG
210
+ for (var y = 0; y < h; y++) {
211
+ //console.log("fixing endianity");
212
+ var roff = toff + y * bpl;
213
+
214
+ for (var x = 1; x < bpl; x += 2) {
215
+ var t = tgt[roff + x];
216
+ tgt[roff + x] = tgt[roff + x - 1];
217
+ tgt[roff + x - 1] = t;
218
+ }
219
+ } //*/
220
+
221
+ if (img['t317'] && img['t317'][0] == 2) {
222
+ for (var y = 0; y < h; y++) {
223
+ var ntoff = toff + y * bpl;
224
+ if (bps == 16) for (var j = bpp; j < bpl; j += 2) {
225
+ var nv = (tgt[ntoff + j + 1] << 8 | tgt[ntoff + j]) + (tgt[ntoff + j - bpp + 1] << 8 | tgt[ntoff + j - bpp]);
226
+ tgt[ntoff + j] = nv & 255;
227
+ tgt[ntoff + j + 1] = nv >>> 8 & 255;
228
+ } else if (noc == 3) for (var j = 3; j < bpl; j += 3) {
229
+ tgt[ntoff + j] = tgt[ntoff + j] + tgt[ntoff + j - 3] & 255;
230
+ tgt[ntoff + j + 1] = tgt[ntoff + j + 1] + tgt[ntoff + j - 2] & 255;
231
+ tgt[ntoff + j + 2] = tgt[ntoff + j + 2] + tgt[ntoff + j - 1] & 255;
232
+ } else for (var j = bpp; j < bpl; j++) {
233
+ tgt[ntoff + j] = tgt[ntoff + j] + tgt[ntoff + j - bpp] & 255;
234
+ }
235
+ }
236
+ }
237
+ };
238
+
239
+ UTIF.decode._decodeLogLuv32 = function (img, data, off, len, tgt, toff) {
240
+ var w = img.width,
241
+ qw = w * 4;
242
+ var io = 0,
243
+ out = new Uint8Array(qw);
244
+
245
+ while (io < len) {
246
+ var oo = 0;
247
+
248
+ while (oo < qw) {
249
+ var c = data[off + io];
250
+ io++;
251
+
252
+ if (c < 128) {
253
+ for (var j = 0; j < c; j++) {
254
+ out[oo + j] = data[off + io + j];
255
+ }
256
+
257
+ oo += c;
258
+ io += c;
259
+ } else {
260
+ c = c - 126;
261
+
262
+ for (var j = 0; j < c; j++) {
263
+ out[oo + j] = data[off + io];
264
+ }
265
+
266
+ oo += c;
267
+ io++;
268
+ }
269
+ }
270
+
271
+ for (var x = 0; x < w; x++) {
272
+ tgt[toff + 0] = out[x];
273
+ tgt[toff + 1] = out[x + w];
274
+ tgt[toff + 2] = out[x + w * 2];
275
+ tgt[toff + 4] = out[x + w * 3];
276
+ toff += 6;
277
+ }
278
+ }
279
+ };
280
+
281
+ UTIF.tags = {}; //UTIF.ttypes = { 256:3,257:3,258:3, 259:3, 262:3, 273:4, 274:3, 277:3,278:4,279:4, 282:5, 283:5, 284:3, 286:5,287:5, 296:3, 305:2, 306:2, 338:3, 513:4, 514:4, 34665:4 };
282
+ // start at tag 250
283
+
284
+ UTIF._types = function () {
285
+ var main = new Array(250);
286
+ main.fill(0);
287
+ main = main.concat([0, 0, 0, 0, 4, 3, 3, 3, 3, 3, 0, 0, 3, 0, 0, 0, 3, 0, 0, 2, 2, 2, 2, 4, 3, 0, 0, 3, 4, 4, 3, 3, 5, 5, 3, 2, 5, 5, 0, 0, 0, 0, 4, 4, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 3, 5, 5, 3, 0, 3, 3, 4, 4, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
288
+ var rest = {
289
+ 33432: 2,
290
+ 33434: 5,
291
+ 33437: 5,
292
+ 34665: 4,
293
+ 34850: 3,
294
+ 34853: 4,
295
+ 34855: 3,
296
+ 34864: 3,
297
+ 34866: 4,
298
+ 36864: 7,
299
+ 36867: 2,
300
+ 36868: 2,
301
+ 37121: 7,
302
+ 37377: 10,
303
+ 37378: 5,
304
+ 37380: 10,
305
+ 37381: 5,
306
+ 37383: 3,
307
+ 37384: 3,
308
+ 37385: 3,
309
+ 37386: 5,
310
+ 37510: 7,
311
+ 37520: 2,
312
+ 37521: 2,
313
+ 37522: 2,
314
+ 40960: 7,
315
+ 40961: 3,
316
+ 40962: 4,
317
+ 40963: 4,
318
+ 40965: 4,
319
+ 41486: 5,
320
+ 41487: 5,
321
+ 41488: 3,
322
+ 41985: 3,
323
+ 41986: 3,
324
+ 41987: 3,
325
+ 41988: 5,
326
+ 41989: 3,
327
+ 41990: 3,
328
+ 41993: 3,
329
+ 41994: 3,
330
+ 41995: 7,
331
+ 41996: 3,
332
+ 42032: 2,
333
+ 42033: 2,
334
+ 42034: 5,
335
+ 42036: 2,
336
+ 42037: 2,
337
+ 59932: 7
338
+ };
339
+ return {
340
+ basic: {
341
+ main: main,
342
+ rest: rest
343
+ },
344
+ gps: {
345
+ main: [1, 2, 5, 2, 5, 1, 5, 5, 0, 9],
346
+ rest: {
347
+ 18: 2,
348
+ 29: 2
349
+ }
350
+ }
351
+ };
352
+ }();
353
+
354
+ UTIF._readIFD = function (bin, data, offset, ifds, depth, prm) {
355
+ var cnt = bin.readUshort(data, offset);
356
+ offset += 2;
357
+ var ifd = {};
358
+ if (prm.debug) console.log(' '.repeat(depth), ifds.length - 1, '>>>----------------');
359
+
360
+ for (var i = 0; i < cnt; i++) {
361
+ var tag = bin.readUshort(data, offset);
362
+ offset += 2;
363
+ var type = bin.readUshort(data, offset);
364
+ offset += 2;
365
+ var num = bin.readUint(data, offset);
366
+ offset += 4;
367
+ var voff = bin.readUint(data, offset);
368
+ offset += 4;
369
+ var arr = []; //ifd["t"+tag+"-"+UTIF.tags[tag]] = arr;
370
+
371
+ if (type == 1 || type == 7) {
372
+ arr = new Uint8Array(data.buffer, num < 5 ? offset - 4 : voff, num);
373
+ }
374
+
375
+ if (type == 2) {
376
+ var o0 = num < 5 ? offset - 4 : voff,
377
+ c = data[o0],
378
+ len = Math.max(0, Math.min(num - 1, data.length - o0));
379
+ if (c < 128 || len == 0) arr.push(bin.readASCII(data, o0, len));else arr = new Uint8Array(data.buffer, o0, len);
380
+ }
381
+
382
+ if (type == 3) {
383
+ for (var j = 0; j < num; j++) {
384
+ arr.push(bin.readUshort(data, (num < 3 ? offset - 4 : voff) + 2 * j));
385
+ }
386
+ }
387
+
388
+ if (type == 4 || type == 13) {
389
+ for (var j = 0; j < num; j++) {
390
+ arr.push(bin.readUint(data, (num < 2 ? offset - 4 : voff) + 4 * j));
391
+ }
392
+ }
393
+
394
+ if (type == 5 || type == 10) {
395
+ var ri = type == 5 ? bin.readUint : bin.readInt;
396
+
397
+ for (var j = 0; j < num; j++) {
398
+ arr.push([ri(data, voff + j * 8), ri(data, voff + j * 8 + 4)]);
399
+ }
400
+ }
401
+
402
+ if (type == 8) {
403
+ for (var j = 0; j < num; j++) {
404
+ arr.push(bin.readShort(data, (num < 3 ? offset - 4 : voff) + 2 * j));
405
+ }
406
+ }
407
+
408
+ if (type == 9) {
409
+ for (var j = 0; j < num; j++) {
410
+ arr.push(bin.readInt(data, (num < 2 ? offset - 4 : voff) + 4 * j));
411
+ }
412
+ }
413
+
414
+ if (type == 11) {
415
+ for (var j = 0; j < num; j++) {
416
+ arr.push(bin.readFloat(data, voff + j * 4));
417
+ }
418
+ }
419
+
420
+ if (type == 12) {
421
+ for (var j = 0; j < num; j++) {
422
+ arr.push(bin.readDouble(data, voff + j * 8));
423
+ }
424
+ }
425
+
426
+ if (num != 0 && arr.length == 0) {
427
+ console.log(tag, 'unknown TIFF tag type: ', type, 'num:', num);
428
+ if (i == 0) return;
429
+ continue;
430
+ }
431
+
432
+ if (prm.debug) console.log(' '.repeat(depth), tag, type, UTIF.tags[tag], arr);
433
+ ifd['t' + tag] = arr;
434
+
435
+ if (tag == 330 && ifd['t272'] && ifd['t272'][0] == 'DSLR-A100') {} else if (tag == 330 || tag == 34665 || tag == 34853 || tag == 50740 && bin.readUshort(data, bin.readUint(arr, 0)) < 300 || tag == 61440) {
436
+ var oarr = tag == 50740 ? [bin.readUint(arr, 0)] : arr;
437
+ var subfd = [];
438
+
439
+ for (var j = 0; j < oarr.length; j++) {
440
+ UTIF._readIFD(bin, data, oarr[j], subfd, depth + 1, prm);
441
+ }
442
+
443
+ if (tag == 330) ifd.subIFD = subfd;
444
+ if (tag == 34665) ifd.exifIFD = subfd[0];
445
+ if (tag == 34853) ifd.gpsiIFD = subfd[0]; //console.log("gps", subfd[0]); }
446
+
447
+ if (tag == 50740) ifd.dngPrvt = subfd[0];
448
+ if (tag == 61440) ifd.fujiIFD = subfd[0];
449
+ }
450
+
451
+ if (tag == 37500 && prm.parseMN) {
452
+ var mn = arr; //console.log(bin.readASCII(mn,0,mn.length), mn);
453
+
454
+ if (bin.readASCII(mn, 0, 5) == 'Nikon') ifd.makerNote = UTIF['decode'](mn.slice(10).buffer)[0];else if (bin.readUshort(data, voff) < 300 && bin.readUshort(data, voff + 4) <= 12) {
455
+ var subsub = [];
456
+
457
+ UTIF._readIFD(bin, data, voff, subsub, depth + 1, prm);
458
+
459
+ ifd.makerNote = subsub[0];
460
+ }
461
+ }
462
+ }
463
+
464
+ ifds.push(ifd);
465
+ if (prm.debug) console.log(' '.repeat(depth), '<<<---------------');
466
+ return offset;
467
+ };
468
+
469
+ UTIF.toRGBA = function (out, type) {
470
+ var w = out.width,
471
+ h = out.height,
472
+ area = w * h,
473
+ data = out.data;
474
+ var img;
475
+
476
+ switch (type) {
477
+ case _three.HalfFloatType:
478
+ img = new Uint16Array(area * 4);
479
+ break;
480
+
481
+ case _three.FloatType:
482
+ img = new Float32Array(area * 4);
483
+ break;
484
+
485
+ default:
486
+ console.error('THREE.LogLuvLoader: Unsupported texture data type:', type);
487
+ }
488
+
489
+ var intp = out['t262'] ? out['t262'][0] : 2;
490
+ var bps = out['t258'] ? Math.min(32, out['t258'][0]) : 1;
491
+ if (out['t262'] == null && bps == 1) intp = 0;
492
+
493
+ if (intp == 32845) {
494
+ for (var y = 0; y < h; y++) {
495
+ for (var x = 0; x < w; x++) {
496
+ var si = (y * w + x) * 6,
497
+ qi = (y * w + x) * 4;
498
+ var L = data[si + 1] << 8 | data[si];
499
+ L = Math.pow(2, (L + 0.5) / 256 - 64);
500
+ var u = (data[si + 3] + 0.5) / 410;
501
+ var v = (data[si + 5] + 0.5) / 410; // Luv to xyY
502
+
503
+ var sX = 9 * u / (6 * u - 16 * v + 12);
504
+ var sY = 4 * v / (6 * u - 16 * v + 12);
505
+ var bY = L; // xyY to XYZ
506
+
507
+ var X = sX * bY / sY,
508
+ Y = bY,
509
+ Z = (1 - sX - sY) * bY / sY; // XYZ to linear RGB
510
+
511
+ var r = 2.690 * X - 1.276 * Y - 0.414 * Z;
512
+ var g = -1.022 * X + 1.978 * Y + 0.044 * Z;
513
+ var b = 0.061 * X - 0.224 * Y + 1.163 * Z;
514
+
515
+ if (type === _three.HalfFloatType) {
516
+ img[qi] = _three.DataUtils.toHalfFloat(Math.min(r, 65504));
517
+ img[qi + 1] = _three.DataUtils.toHalfFloat(Math.min(g, 65504));
518
+ img[qi + 2] = _three.DataUtils.toHalfFloat(Math.min(b, 65504));
519
+ img[qi + 3] = _three.DataUtils.toHalfFloat(1);
520
+ } else {
521
+ img[qi] = r;
522
+ img[qi + 1] = g;
523
+ img[qi + 2] = b;
524
+ img[qi + 3] = 1;
525
+ }
526
+ }
527
+ }
528
+ } else {
529
+ console.log('Unsupported Photometric interpretation: ' + intp);
530
+ }
531
+
532
+ return img;
533
+ };
534
+
535
+ UTIF._binBE = {
536
+ nextZero: function nextZero(data, o) {
537
+ while (data[o] != 0) {
538
+ o++;
539
+ }
540
+
541
+ return o;
542
+ },
543
+ readUshort: function readUshort(buff, p) {
544
+ return buff[p] << 8 | buff[p + 1];
545
+ },
546
+ readShort: function readShort(buff, p) {
547
+ var a = UTIF._binBE.ui8;
548
+ a[0] = buff[p + 1];
549
+ a[1] = buff[p + 0];
550
+ return UTIF._binBE.i16[0];
551
+ },
552
+ readInt: function readInt(buff, p) {
553
+ var a = UTIF._binBE.ui8;
554
+ a[0] = buff[p + 3];
555
+ a[1] = buff[p + 2];
556
+ a[2] = buff[p + 1];
557
+ a[3] = buff[p + 0];
558
+ return UTIF._binBE.i32[0];
559
+ },
560
+ readUint: function readUint(buff, p) {
561
+ var a = UTIF._binBE.ui8;
562
+ a[0] = buff[p + 3];
563
+ a[1] = buff[p + 2];
564
+ a[2] = buff[p + 1];
565
+ a[3] = buff[p + 0];
566
+ return UTIF._binBE.ui32[0];
567
+ },
568
+ readASCII: function readASCII(buff, p, l) {
569
+ var s = '';
570
+
571
+ for (var i = 0; i < l; i++) {
572
+ s += String.fromCharCode(buff[p + i]);
573
+ }
574
+
575
+ return s;
576
+ },
577
+ readFloat: function readFloat(buff, p) {
578
+ var a = UTIF._binBE.ui8;
579
+
580
+ for (var i = 0; i < 4; i++) {
581
+ a[i] = buff[p + 3 - i];
582
+ }
583
+
584
+ return UTIF._binBE.fl32[0];
585
+ },
586
+ readDouble: function readDouble(buff, p) {
587
+ var a = UTIF._binBE.ui8;
588
+
589
+ for (var i = 0; i < 8; i++) {
590
+ a[i] = buff[p + 7 - i];
591
+ }
592
+
593
+ return UTIF._binBE.fl64[0];
594
+ },
595
+ writeUshort: function writeUshort(buff, p, n) {
596
+ buff[p] = n >> 8 & 255;
597
+ buff[p + 1] = n & 255;
598
+ },
599
+ writeInt: function writeInt(buff, p, n) {
600
+ var a = UTIF._binBE.ui8;
601
+ UTIF._binBE.i32[0] = n;
602
+ buff[p + 3] = a[0];
603
+ buff[p + 2] = a[1];
604
+ buff[p + 1] = a[2];
605
+ buff[p + 0] = a[3];
606
+ },
607
+ writeUint: function writeUint(buff, p, n) {
608
+ buff[p] = n >> 24 & 255;
609
+ buff[p + 1] = n >> 16 & 255;
610
+ buff[p + 2] = n >> 8 & 255;
611
+ buff[p + 3] = n >> 0 & 255;
612
+ },
613
+ writeASCII: function writeASCII(buff, p, s) {
614
+ for (var i = 0; i < s.length; i++) {
615
+ buff[p + i] = s.charCodeAt(i);
616
+ }
617
+ },
618
+ writeDouble: function writeDouble(buff, p, n) {
619
+ UTIF._binBE.fl64[0] = n;
620
+
621
+ for (var i = 0; i < 8; i++) {
622
+ buff[p + i] = UTIF._binBE.ui8[7 - i];
623
+ }
624
+ }
625
+ };
626
+ UTIF._binBE.ui8 = new Uint8Array(8);
627
+ UTIF._binBE.i16 = new Int16Array(UTIF._binBE.ui8.buffer);
628
+ UTIF._binBE.i32 = new Int32Array(UTIF._binBE.ui8.buffer);
629
+ UTIF._binBE.ui32 = new Uint32Array(UTIF._binBE.ui8.buffer);
630
+ UTIF._binBE.fl32 = new Float32Array(UTIF._binBE.ui8.buffer);
631
+ UTIF._binBE.fl64 = new Float64Array(UTIF._binBE.ui8.buffer);
632
+ UTIF._binLE = {
633
+ nextZero: UTIF._binBE.nextZero,
634
+ readUshort: function readUshort(buff, p) {
635
+ return buff[p + 1] << 8 | buff[p];
636
+ },
637
+ readShort: function readShort(buff, p) {
638
+ var a = UTIF._binBE.ui8;
639
+ a[0] = buff[p + 0];
640
+ a[1] = buff[p + 1];
641
+ return UTIF._binBE.i16[0];
642
+ },
643
+ readInt: function readInt(buff, p) {
644
+ var a = UTIF._binBE.ui8;
645
+ a[0] = buff[p + 0];
646
+ a[1] = buff[p + 1];
647
+ a[2] = buff[p + 2];
648
+ a[3] = buff[p + 3];
649
+ return UTIF._binBE.i32[0];
650
+ },
651
+ readUint: function readUint(buff, p) {
652
+ var a = UTIF._binBE.ui8;
653
+ a[0] = buff[p + 0];
654
+ a[1] = buff[p + 1];
655
+ a[2] = buff[p + 2];
656
+ a[3] = buff[p + 3];
657
+ return UTIF._binBE.ui32[0];
658
+ },
659
+ readASCII: UTIF._binBE.readASCII,
660
+ readFloat: function readFloat(buff, p) {
661
+ var a = UTIF._binBE.ui8;
662
+
663
+ for (var i = 0; i < 4; i++) {
664
+ a[i] = buff[p + i];
665
+ }
666
+
667
+ return UTIF._binBE.fl32[0];
668
+ },
669
+ readDouble: function readDouble(buff, p) {
670
+ var a = UTIF._binBE.ui8;
671
+
672
+ for (var i = 0; i < 8; i++) {
673
+ a[i] = buff[p + i];
674
+ }
675
+
676
+ return UTIF._binBE.fl64[0];
677
+ },
678
+ writeUshort: function writeUshort(buff, p, n) {
679
+ buff[p] = n & 255;
680
+ buff[p + 1] = n >> 8 & 255;
681
+ },
682
+ writeInt: function writeInt(buff, p, n) {
683
+ var a = UTIF._binBE.ui8;
684
+ UTIF._binBE.i32[0] = n;
685
+ buff[p + 0] = a[0];
686
+ buff[p + 1] = a[1];
687
+ buff[p + 2] = a[2];
688
+ buff[p + 3] = a[3];
689
+ },
690
+ writeUint: function writeUint(buff, p, n) {
691
+ buff[p] = n >>> 0 & 255;
692
+ buff[p + 1] = n >>> 8 & 255;
693
+ buff[p + 2] = n >>> 16 & 255;
694
+ buff[p + 3] = n >>> 24 & 255;
695
+ },
696
+ writeASCII: UTIF._binBE.writeASCII
697
+ };
698
+
699
+ UTIF._copyTile = function (tb, tw, th, b, w, h, xoff, yoff) {
700
+ //log("copyTile", tw, th, w, h, xoff, yoff);
701
+ var xlim = Math.min(tw, w - xoff);
702
+ var ylim = Math.min(th, h - yoff);
703
+
704
+ for (var y = 0; y < ylim; y++) {
705
+ var tof = (yoff + y) * w + xoff;
706
+ var sof = y * tw;
707
+
708
+ for (var x = 0; x < xlim; x++) {
709
+ b[tof + x] = tb[sof + x];
710
+ }
711
+ }
712
+ };
713
+ });