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,894 @@
1
+ (function (global, factory) {
2
+ if (typeof define === "function" && define.amd) {
3
+ define(["exports", "three", "../libs/fflate.module.js"], factory);
4
+ } else if (typeof exports !== "undefined") {
5
+ factory(exports, require("three"), require("../libs/fflate.module.js"));
6
+ } else {
7
+ var mod = {
8
+ exports: {}
9
+ };
10
+ factory(mod.exports, global.three, global.fflateModule);
11
+ global.VTKLoader = mod.exports;
12
+ }
13
+ })(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, _three, fflate) {
14
+ "use strict";
15
+
16
+ Object.defineProperty(_exports, "__esModule", {
17
+ value: true
18
+ });
19
+ _exports.VTKLoader = void 0;
20
+ fflate = _interopRequireWildcard(fflate);
21
+
22
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
23
+
24
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
25
+
26
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
27
+
28
+ 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); } }
29
+
30
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
31
+
32
+ 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); }
33
+
34
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
35
+
36
+ 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); }; }
37
+
38
+ 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); }
39
+
40
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
41
+
42
+ 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; } }
43
+
44
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
45
+
46
+ var VTKLoader = /*#__PURE__*/function (_Loader) {
47
+ _inherits(VTKLoader, _Loader);
48
+
49
+ var _super = _createSuper(VTKLoader);
50
+
51
+ function VTKLoader(manager) {
52
+ _classCallCheck(this, VTKLoader);
53
+
54
+ return _super.call(this, manager);
55
+ }
56
+
57
+ _createClass(VTKLoader, [{
58
+ key: "load",
59
+ value: function load(url, onLoad, onProgress, onError) {
60
+ var scope = this;
61
+ var loader = new _three.FileLoader(scope.manager);
62
+ loader.setPath(scope.path);
63
+ loader.setResponseType('arraybuffer');
64
+ loader.setRequestHeader(scope.requestHeader);
65
+ loader.setWithCredentials(scope.withCredentials);
66
+ loader.load(url, function (text) {
67
+ try {
68
+ onLoad(scope.parse(text));
69
+ } catch (e) {
70
+ if (onError) {
71
+ onError(e);
72
+ } else {
73
+ console.error(e);
74
+ }
75
+
76
+ scope.manager.itemError(url);
77
+ }
78
+ }, onProgress, onError);
79
+ }
80
+ }, {
81
+ key: "parse",
82
+ value: function parse(data) {
83
+ function parseASCII(data) {
84
+ // connectivity of the triangles
85
+ var indices = []; // triangles vertices
86
+
87
+ var positions = []; // red, green, blue colors in the range 0 to 1
88
+
89
+ var colors = []; // normal vector, one per vertex
90
+
91
+ var normals = [];
92
+ var result; // pattern for detecting the end of a number sequence
93
+
94
+ var patWord = /^[^\d.\s-]+/; // pattern for reading vertices, 3 floats or integers
95
+
96
+ var pat3Floats = /(\-?\d+\.?[\d\-\+e]*)\s+(\-?\d+\.?[\d\-\+e]*)\s+(\-?\d+\.?[\d\-\+e]*)/g; // pattern for connectivity, an integer followed by any number of ints
97
+ // the first integer is the number of polygon nodes
98
+
99
+ var patConnectivity = /^(\d+)\s+([\s\d]*)/; // indicates start of vertex data section
100
+
101
+ var patPOINTS = /^POINTS /; // indicates start of polygon connectivity section
102
+
103
+ var patPOLYGONS = /^POLYGONS /; // indicates start of triangle strips section
104
+
105
+ var patTRIANGLE_STRIPS = /^TRIANGLE_STRIPS /; // POINT_DATA number_of_values
106
+
107
+ var patPOINT_DATA = /^POINT_DATA[ ]+(\d+)/; // CELL_DATA number_of_polys
108
+
109
+ var patCELL_DATA = /^CELL_DATA[ ]+(\d+)/; // Start of color section
110
+
111
+ var patCOLOR_SCALARS = /^COLOR_SCALARS[ ]+(\w+)[ ]+3/; // NORMALS Normals float
112
+
113
+ var patNORMALS = /^NORMALS[ ]+(\w+)[ ]+(\w+)/;
114
+ var inPointsSection = false;
115
+ var inPolygonsSection = false;
116
+ var inTriangleStripSection = false;
117
+ var inPointDataSection = false;
118
+ var inCellDataSection = false;
119
+ var inColorSection = false;
120
+ var inNormalsSection = false;
121
+ var lines = data.split('\n');
122
+
123
+ for (var i in lines) {
124
+ var line = lines[i].trim();
125
+
126
+ if (line.indexOf('DATASET') === 0) {
127
+ var dataset = line.split(' ')[1];
128
+ if (dataset !== 'POLYDATA') throw new Error('Unsupported DATASET type: ' + dataset);
129
+ } else if (inPointsSection) {
130
+ // get the vertices
131
+ while ((result = pat3Floats.exec(line)) !== null) {
132
+ if (patWord.exec(line) !== null) break;
133
+ var x = parseFloat(result[1]);
134
+ var y = parseFloat(result[2]);
135
+ var z = parseFloat(result[3]);
136
+ positions.push(x, y, z);
137
+ }
138
+ } else if (inPolygonsSection) {
139
+ if ((result = patConnectivity.exec(line)) !== null) {
140
+ // numVertices i0 i1 i2 ...
141
+ var numVertices = parseInt(result[1]);
142
+ var inds = result[2].split(/\s+/);
143
+
144
+ if (numVertices >= 3) {
145
+ var i0 = parseInt(inds[0]);
146
+ var i1, i2;
147
+ var k = 1; // split the polygon in numVertices - 2 triangles
148
+
149
+ for (var j = 0; j < numVertices - 2; ++j) {
150
+ i1 = parseInt(inds[k]);
151
+ i2 = parseInt(inds[k + 1]);
152
+ indices.push(i0, i1, i2);
153
+ k++;
154
+ }
155
+ }
156
+ }
157
+ } else if (inTriangleStripSection) {
158
+ if ((result = patConnectivity.exec(line)) !== null) {
159
+ // numVertices i0 i1 i2 ...
160
+ var numVertices = parseInt(result[1]);
161
+ var inds = result[2].split(/\s+/);
162
+
163
+ if (numVertices >= 3) {
164
+ var i0, i1, i2; // split the polygon in numVertices - 2 triangles
165
+
166
+ for (var j = 0; j < numVertices - 2; j++) {
167
+ if (j % 2 === 1) {
168
+ i0 = parseInt(inds[j]);
169
+ i1 = parseInt(inds[j + 2]);
170
+ i2 = parseInt(inds[j + 1]);
171
+ indices.push(i0, i1, i2);
172
+ } else {
173
+ i0 = parseInt(inds[j]);
174
+ i1 = parseInt(inds[j + 1]);
175
+ i2 = parseInt(inds[j + 2]);
176
+ indices.push(i0, i1, i2);
177
+ }
178
+ }
179
+ }
180
+ }
181
+ } else if (inPointDataSection || inCellDataSection) {
182
+ if (inColorSection) {
183
+ // Get the colors
184
+ while ((result = pat3Floats.exec(line)) !== null) {
185
+ if (patWord.exec(line) !== null) break;
186
+ var r = parseFloat(result[1]);
187
+ var g = parseFloat(result[2]);
188
+ var b = parseFloat(result[3]);
189
+ colors.push(r, g, b);
190
+ }
191
+ } else if (inNormalsSection) {
192
+ // Get the normal vectors
193
+ while ((result = pat3Floats.exec(line)) !== null) {
194
+ if (patWord.exec(line) !== null) break;
195
+ var nx = parseFloat(result[1]);
196
+ var ny = parseFloat(result[2]);
197
+ var nz = parseFloat(result[3]);
198
+ normals.push(nx, ny, nz);
199
+ }
200
+ }
201
+ }
202
+
203
+ if (patPOLYGONS.exec(line) !== null) {
204
+ inPolygonsSection = true;
205
+ inPointsSection = false;
206
+ inTriangleStripSection = false;
207
+ } else if (patPOINTS.exec(line) !== null) {
208
+ inPolygonsSection = false;
209
+ inPointsSection = true;
210
+ inTriangleStripSection = false;
211
+ } else if (patTRIANGLE_STRIPS.exec(line) !== null) {
212
+ inPolygonsSection = false;
213
+ inPointsSection = false;
214
+ inTriangleStripSection = true;
215
+ } else if (patPOINT_DATA.exec(line) !== null) {
216
+ inPointDataSection = true;
217
+ inPointsSection = false;
218
+ inPolygonsSection = false;
219
+ inTriangleStripSection = false;
220
+ } else if (patCELL_DATA.exec(line) !== null) {
221
+ inCellDataSection = true;
222
+ inPointsSection = false;
223
+ inPolygonsSection = false;
224
+ inTriangleStripSection = false;
225
+ } else if (patCOLOR_SCALARS.exec(line) !== null) {
226
+ inColorSection = true;
227
+ inNormalsSection = false;
228
+ inPointsSection = false;
229
+ inPolygonsSection = false;
230
+ inTriangleStripSection = false;
231
+ } else if (patNORMALS.exec(line) !== null) {
232
+ inNormalsSection = true;
233
+ inColorSection = false;
234
+ inPointsSection = false;
235
+ inPolygonsSection = false;
236
+ inTriangleStripSection = false;
237
+ }
238
+ }
239
+
240
+ var geometry = new _three.BufferGeometry();
241
+ geometry.setIndex(indices);
242
+ geometry.setAttribute('position', new _three.Float32BufferAttribute(positions, 3));
243
+
244
+ if (normals.length === positions.length) {
245
+ geometry.setAttribute('normal', new _three.Float32BufferAttribute(normals, 3));
246
+ }
247
+
248
+ if (colors.length !== indices.length) {
249
+ // stagger
250
+ if (colors.length === positions.length) {
251
+ geometry.setAttribute('color', new _three.Float32BufferAttribute(colors, 3));
252
+ }
253
+ } else {
254
+ // cell
255
+ geometry = geometry.toNonIndexed();
256
+ var numTriangles = geometry.attributes.position.count / 3;
257
+
258
+ if (colors.length === numTriangles * 3) {
259
+ var newColors = [];
260
+
261
+ for (var i = 0; i < numTriangles; i++) {
262
+ var r = colors[3 * i + 0];
263
+ var g = colors[3 * i + 1];
264
+ var b = colors[3 * i + 2];
265
+ newColors.push(r, g, b);
266
+ newColors.push(r, g, b);
267
+ newColors.push(r, g, b);
268
+ }
269
+
270
+ geometry.setAttribute('color', new _three.Float32BufferAttribute(newColors, 3));
271
+ }
272
+ }
273
+
274
+ return geometry;
275
+ }
276
+
277
+ function parseBinary(data) {
278
+ var count, pointIndex, i, numberOfPoints, s;
279
+ var buffer = new Uint8Array(data);
280
+ var dataView = new DataView(data); // Points and normals, by default, are empty
281
+
282
+ var points = [];
283
+ var normals = [];
284
+ var indices = []; // Going to make a big array of strings
285
+
286
+ var vtk = [];
287
+ var index = 0;
288
+
289
+ function findString(buffer, start) {
290
+ var index = start;
291
+ var c = buffer[index];
292
+ var s = [];
293
+
294
+ while (c !== 10) {
295
+ s.push(String.fromCharCode(c));
296
+ index++;
297
+ c = buffer[index];
298
+ }
299
+
300
+ return {
301
+ start: start,
302
+ end: index,
303
+ next: index + 1,
304
+ parsedString: s.join('')
305
+ };
306
+ }
307
+
308
+ var state, line;
309
+
310
+ while (true) {
311
+ // Get a string
312
+ state = findString(buffer, index);
313
+ line = state.parsedString;
314
+
315
+ if (line.indexOf('DATASET') === 0) {
316
+ var dataset = line.split(' ')[1];
317
+ if (dataset !== 'POLYDATA') throw new Error('Unsupported DATASET type: ' + dataset);
318
+ } else if (line.indexOf('POINTS') === 0) {
319
+ vtk.push(line); // Add the points
320
+
321
+ numberOfPoints = parseInt(line.split(' ')[1], 10); // Each point is 3 4-byte floats
322
+
323
+ count = numberOfPoints * 4 * 3;
324
+ points = new Float32Array(numberOfPoints * 3);
325
+ pointIndex = state.next;
326
+
327
+ for (i = 0; i < numberOfPoints; i++) {
328
+ points[3 * i] = dataView.getFloat32(pointIndex, false);
329
+ points[3 * i + 1] = dataView.getFloat32(pointIndex + 4, false);
330
+ points[3 * i + 2] = dataView.getFloat32(pointIndex + 8, false);
331
+ pointIndex = pointIndex + 12;
332
+ } // increment our next pointer
333
+
334
+
335
+ state.next = state.next + count + 1;
336
+ } else if (line.indexOf('TRIANGLE_STRIPS') === 0) {
337
+ var numberOfStrips = parseInt(line.split(' ')[1], 10);
338
+ var size = parseInt(line.split(' ')[2], 10); // 4 byte integers
339
+
340
+ count = size * 4;
341
+ indices = new Uint32Array(3 * size - 9 * numberOfStrips);
342
+ var indicesIndex = 0;
343
+ pointIndex = state.next;
344
+
345
+ for (i = 0; i < numberOfStrips; i++) {
346
+ // For each strip, read the first value, then record that many more points
347
+ var indexCount = dataView.getInt32(pointIndex, false);
348
+ var strip = [];
349
+ pointIndex += 4;
350
+
351
+ for (s = 0; s < indexCount; s++) {
352
+ strip.push(dataView.getInt32(pointIndex, false));
353
+ pointIndex += 4;
354
+ } // retrieves the n-2 triangles from the triangle strip
355
+
356
+
357
+ for (var j = 0; j < indexCount - 2; j++) {
358
+ if (j % 2) {
359
+ indices[indicesIndex++] = strip[j];
360
+ indices[indicesIndex++] = strip[j + 2];
361
+ indices[indicesIndex++] = strip[j + 1];
362
+ } else {
363
+ indices[indicesIndex++] = strip[j];
364
+ indices[indicesIndex++] = strip[j + 1];
365
+ indices[indicesIndex++] = strip[j + 2];
366
+ }
367
+ }
368
+ } // increment our next pointer
369
+
370
+
371
+ state.next = state.next + count + 1;
372
+ } else if (line.indexOf('POLYGONS') === 0) {
373
+ var numberOfStrips = parseInt(line.split(' ')[1], 10);
374
+ var size = parseInt(line.split(' ')[2], 10); // 4 byte integers
375
+
376
+ count = size * 4;
377
+ indices = new Uint32Array(3 * size - 9 * numberOfStrips);
378
+ var indicesIndex = 0;
379
+ pointIndex = state.next;
380
+
381
+ for (i = 0; i < numberOfStrips; i++) {
382
+ // For each strip, read the first value, then record that many more points
383
+ var indexCount = dataView.getInt32(pointIndex, false);
384
+ var strip = [];
385
+ pointIndex += 4;
386
+
387
+ for (s = 0; s < indexCount; s++) {
388
+ strip.push(dataView.getInt32(pointIndex, false));
389
+ pointIndex += 4;
390
+ } // divide the polygon in n-2 triangle
391
+
392
+
393
+ for (var j = 1; j < indexCount - 1; j++) {
394
+ indices[indicesIndex++] = strip[0];
395
+ indices[indicesIndex++] = strip[j];
396
+ indices[indicesIndex++] = strip[j + 1];
397
+ }
398
+ } // increment our next pointer
399
+
400
+
401
+ state.next = state.next + count + 1;
402
+ } else if (line.indexOf('POINT_DATA') === 0) {
403
+ numberOfPoints = parseInt(line.split(' ')[1], 10); // Grab the next line
404
+
405
+ state = findString(buffer, state.next); // Now grab the binary data
406
+
407
+ count = numberOfPoints * 4 * 3;
408
+ normals = new Float32Array(numberOfPoints * 3);
409
+ pointIndex = state.next;
410
+
411
+ for (i = 0; i < numberOfPoints; i++) {
412
+ normals[3 * i] = dataView.getFloat32(pointIndex, false);
413
+ normals[3 * i + 1] = dataView.getFloat32(pointIndex + 4, false);
414
+ normals[3 * i + 2] = dataView.getFloat32(pointIndex + 8, false);
415
+ pointIndex += 12;
416
+ } // Increment past our data
417
+
418
+
419
+ state.next = state.next + count;
420
+ } // Increment index
421
+
422
+
423
+ index = state.next;
424
+
425
+ if (index >= buffer.byteLength) {
426
+ break;
427
+ }
428
+ }
429
+
430
+ var geometry = new _three.BufferGeometry();
431
+ geometry.setIndex(new _three.BufferAttribute(indices, 1));
432
+ geometry.setAttribute('position', new _three.BufferAttribute(points, 3));
433
+
434
+ if (normals.length === points.length) {
435
+ geometry.setAttribute('normal', new _three.BufferAttribute(normals, 3));
436
+ }
437
+
438
+ return geometry;
439
+ }
440
+
441
+ function Float32Concat(first, second) {
442
+ var firstLength = first.length,
443
+ result = new Float32Array(firstLength + second.length);
444
+ result.set(first);
445
+ result.set(second, firstLength);
446
+ return result;
447
+ }
448
+
449
+ function Int32Concat(first, second) {
450
+ var firstLength = first.length,
451
+ result = new Int32Array(firstLength + second.length);
452
+ result.set(first);
453
+ result.set(second, firstLength);
454
+ return result;
455
+ }
456
+
457
+ function parseXML(stringFile) {
458
+ // Changes XML to JSON, based on https://davidwalsh.name/convert-xml-json
459
+ function xmlToJson(xml) {
460
+ // Create the return object
461
+ var obj = {};
462
+
463
+ if (xml.nodeType === 1) {
464
+ // element
465
+ // do attributes
466
+ if (xml.attributes) {
467
+ if (xml.attributes.length > 0) {
468
+ obj['attributes'] = {};
469
+
470
+ for (var j = 0; j < xml.attributes.length; j++) {
471
+ var attribute = xml.attributes.item(j);
472
+ obj['attributes'][attribute.nodeName] = attribute.nodeValue.trim();
473
+ }
474
+ }
475
+ }
476
+ } else if (xml.nodeType === 3) {
477
+ // text
478
+ obj = xml.nodeValue.trim();
479
+ } // do children
480
+
481
+
482
+ if (xml.hasChildNodes()) {
483
+ for (var i = 0; i < xml.childNodes.length; i++) {
484
+ var item = xml.childNodes.item(i);
485
+ var nodeName = item.nodeName;
486
+
487
+ if (typeof obj[nodeName] === 'undefined') {
488
+ var tmp = xmlToJson(item);
489
+ if (tmp !== '') obj[nodeName] = tmp;
490
+ } else {
491
+ if (typeof obj[nodeName].push === 'undefined') {
492
+ var old = obj[nodeName];
493
+ obj[nodeName] = [old];
494
+ }
495
+
496
+ var tmp = xmlToJson(item);
497
+ if (tmp !== '') obj[nodeName].push(tmp);
498
+ }
499
+ }
500
+ }
501
+
502
+ return obj;
503
+ } // Taken from Base64-js
504
+
505
+
506
+ function Base64toByteArray(b64) {
507
+ var Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array;
508
+ var i;
509
+ var lookup = [];
510
+ var revLookup = [];
511
+ var code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
512
+ var len = code.length;
513
+
514
+ for (i = 0; i < len; i++) {
515
+ lookup[i] = code[i];
516
+ }
517
+
518
+ for (i = 0; i < len; ++i) {
519
+ revLookup[code.charCodeAt(i)] = i;
520
+ }
521
+
522
+ revLookup['-'.charCodeAt(0)] = 62;
523
+ revLookup['_'.charCodeAt(0)] = 63;
524
+ var j, l, tmp, placeHolders, arr;
525
+ var len = b64.length;
526
+
527
+ if (len % 4 > 0) {
528
+ throw new Error('Invalid string. Length must be a multiple of 4');
529
+ }
530
+
531
+ placeHolders = b64[len - 2] === '=' ? 2 : b64[len - 1] === '=' ? 1 : 0;
532
+ arr = new Arr(len * 3 / 4 - placeHolders);
533
+ l = placeHolders > 0 ? len - 4 : len;
534
+ var L = 0;
535
+
536
+ for (i = 0, j = 0; i < l; i += 4, j += 3) {
537
+ tmp = revLookup[b64.charCodeAt(i)] << 18 | revLookup[b64.charCodeAt(i + 1)] << 12 | revLookup[b64.charCodeAt(i + 2)] << 6 | revLookup[b64.charCodeAt(i + 3)];
538
+ arr[L++] = (tmp & 0xFF0000) >> 16;
539
+ arr[L++] = (tmp & 0xFF00) >> 8;
540
+ arr[L++] = tmp & 0xFF;
541
+ }
542
+
543
+ if (placeHolders === 2) {
544
+ tmp = revLookup[b64.charCodeAt(i)] << 2 | revLookup[b64.charCodeAt(i + 1)] >> 4;
545
+ arr[L++] = tmp & 0xFF;
546
+ } else if (placeHolders === 1) {
547
+ tmp = revLookup[b64.charCodeAt(i)] << 10 | revLookup[b64.charCodeAt(i + 1)] << 4 | revLookup[b64.charCodeAt(i + 2)] >> 2;
548
+ arr[L++] = tmp >> 8 & 0xFF;
549
+ arr[L++] = tmp & 0xFF;
550
+ }
551
+
552
+ return arr;
553
+ }
554
+
555
+ function parseDataArray(ele, compressed) {
556
+ var numBytes = 0;
557
+
558
+ if (json.attributes.header_type === 'UInt64') {
559
+ numBytes = 8;
560
+ } else if (json.attributes.header_type === 'UInt32') {
561
+ numBytes = 4;
562
+ } // Check the format
563
+
564
+
565
+ if (ele.attributes.format === 'binary' && compressed) {
566
+ var rawData, content, byteData, blocks, cSizeStart, headerSize, padding, dataOffsets, currentOffset;
567
+
568
+ if (ele.attributes.type === 'Float32') {
569
+ var txt = new Float32Array();
570
+ } else if (ele.attributes.type === 'Int64') {
571
+ var txt = new Int32Array();
572
+ } // VTP data with the header has the following structure:
573
+ // [#blocks][#u-size][#p-size][#c-size-1][#c-size-2]...[#c-size-#blocks][DATA]
574
+ //
575
+ // Each token is an integer value whose type is specified by "header_type" at the top of the file (UInt32 if no type specified). The token meanings are:
576
+ // [#blocks] = Number of blocks
577
+ // [#u-size] = Block size before compression
578
+ // [#p-size] = Size of last partial block (zero if it not needed)
579
+ // [#c-size-i] = Size in bytes of block i after compression
580
+ //
581
+ // The [DATA] portion stores contiguously every block appended together. The offset from the beginning of the data section to the beginning of a block is
582
+ // computed by summing the compressed block sizes from preceding blocks according to the header.
583
+
584
+
585
+ rawData = ele['#text'];
586
+ byteData = Base64toByteArray(rawData);
587
+ blocks = byteData[0];
588
+
589
+ for (var i = 1; i < numBytes - 1; i++) {
590
+ blocks = blocks | byteData[i] << i * numBytes;
591
+ }
592
+
593
+ headerSize = (blocks + 3) * numBytes;
594
+ padding = headerSize % 3 > 0 ? 3 - headerSize % 3 : 0;
595
+ headerSize = headerSize + padding;
596
+ dataOffsets = [];
597
+ currentOffset = headerSize;
598
+ dataOffsets.push(currentOffset); // Get the blocks sizes after the compression.
599
+ // There are three blocks before c-size-i, so we skip 3*numBytes
600
+
601
+ cSizeStart = 3 * numBytes;
602
+
603
+ for (var i = 0; i < blocks; i++) {
604
+ var currentBlockSize = byteData[i * numBytes + cSizeStart];
605
+
606
+ for (var j = 1; j < numBytes - 1; j++) {
607
+ // Each data point consists of 8 bytes regardless of the header type
608
+ currentBlockSize = currentBlockSize | byteData[i * numBytes + cSizeStart + j] << j * 8;
609
+ }
610
+
611
+ currentOffset = currentOffset + currentBlockSize;
612
+ dataOffsets.push(currentOffset);
613
+ }
614
+
615
+ for (var i = 0; i < dataOffsets.length - 1; i++) {
616
+ var data = fflate.unzlibSync(byteData.slice(dataOffsets[i], dataOffsets[i + 1])); // eslint-disable-line no-undef
617
+
618
+ content = data.buffer;
619
+
620
+ if (ele.attributes.type === 'Float32') {
621
+ content = new Float32Array(content);
622
+ txt = Float32Concat(txt, content);
623
+ } else if (ele.attributes.type === 'Int64') {
624
+ content = new Int32Array(content);
625
+ txt = Int32Concat(txt, content);
626
+ }
627
+ }
628
+
629
+ delete ele['#text'];
630
+
631
+ if (ele.attributes.type === 'Int64') {
632
+ if (ele.attributes.format === 'binary') {
633
+ txt = txt.filter(function (el, idx) {
634
+ if (idx % 2 !== 1) return true;
635
+ });
636
+ }
637
+ }
638
+ } else {
639
+ if (ele.attributes.format === 'binary' && !compressed) {
640
+ var content = Base64toByteArray(ele['#text']); // VTP data for the uncompressed case has the following structure:
641
+ // [#bytes][DATA]
642
+ // where "[#bytes]" is an integer value specifying the number of bytes in the block of data following it.
643
+
644
+ content = content.slice(numBytes).buffer;
645
+ } else {
646
+ if (ele['#text']) {
647
+ var content = ele['#text'].split(/\s+/).filter(function (el) {
648
+ if (el !== '') return el;
649
+ });
650
+ } else {
651
+ var content = new Int32Array(0).buffer;
652
+ }
653
+ }
654
+
655
+ delete ele['#text']; // Get the content and optimize it
656
+
657
+ if (ele.attributes.type === 'Float32') {
658
+ var txt = new Float32Array(content);
659
+ } else if (ele.attributes.type === 'Int32') {
660
+ var txt = new Int32Array(content);
661
+ } else if (ele.attributes.type === 'Int64') {
662
+ var txt = new Int32Array(content);
663
+
664
+ if (ele.attributes.format === 'binary') {
665
+ txt = txt.filter(function (el, idx) {
666
+ if (idx % 2 !== 1) return true;
667
+ });
668
+ }
669
+ }
670
+ } // endif ( ele.attributes.format === 'binary' && compressed )
671
+
672
+
673
+ return txt;
674
+ } // Main part
675
+ // Get Dom
676
+
677
+
678
+ var dom = null;
679
+
680
+ if (window.DOMParser) {
681
+ try {
682
+ dom = new DOMParser().parseFromString(stringFile, 'text/xml');
683
+ } catch (e) {
684
+ dom = null;
685
+ }
686
+ } else if (window.ActiveXObject) {
687
+ try {
688
+ dom = new ActiveXObject('Microsoft.XMLDOM'); // eslint-disable-line no-undef
689
+
690
+ dom.async = false;
691
+
692
+ if (!dom.loadXML()) {
693
+ throw new Error(dom.parseError.reason + dom.parseError.srcText);
694
+ }
695
+ } catch (e) {
696
+ dom = null;
697
+ }
698
+ } else {
699
+ throw new Error('Cannot parse xml string!');
700
+ } // Get the doc
701
+
702
+
703
+ var doc = dom.documentElement; // Convert to json
704
+
705
+ var json = xmlToJson(doc);
706
+ var points = [];
707
+ var normals = [];
708
+ var indices = [];
709
+
710
+ if (json.PolyData) {
711
+ var piece = json.PolyData.Piece;
712
+ var compressed = json.attributes.hasOwnProperty('compressor'); // Can be optimized
713
+ // Loop through the sections
714
+
715
+ var sections = ['PointData', 'Points', 'Strips', 'Polys']; // +['CellData', 'Verts', 'Lines'];
716
+
717
+ var sectionIndex = 0,
718
+ numberOfSections = sections.length;
719
+
720
+ while (sectionIndex < numberOfSections) {
721
+ var section = piece[sections[sectionIndex]]; // If it has a DataArray in it
722
+
723
+ if (section && section.DataArray) {
724
+ // Depending on the number of DataArrays
725
+ if (Object.prototype.toString.call(section.DataArray) === '[object Array]') {
726
+ var arr = section.DataArray;
727
+ } else {
728
+ var arr = [section.DataArray];
729
+ }
730
+
731
+ var dataArrayIndex = 0,
732
+ numberOfDataArrays = arr.length;
733
+
734
+ while (dataArrayIndex < numberOfDataArrays) {
735
+ // Parse the DataArray
736
+ if ('#text' in arr[dataArrayIndex] && arr[dataArrayIndex]['#text'].length > 0) {
737
+ arr[dataArrayIndex].text = parseDataArray(arr[dataArrayIndex], compressed);
738
+ }
739
+
740
+ dataArrayIndex++;
741
+ }
742
+
743
+ switch (sections[sectionIndex]) {
744
+ // if iti is point data
745
+ case 'PointData':
746
+ var numberOfPoints = parseInt(piece.attributes.NumberOfPoints);
747
+ var normalsName = section.attributes.Normals;
748
+
749
+ if (numberOfPoints > 0) {
750
+ for (var i = 0, len = arr.length; i < len; i++) {
751
+ if (normalsName === arr[i].attributes.Name) {
752
+ var components = arr[i].attributes.NumberOfComponents;
753
+ normals = new Float32Array(numberOfPoints * components);
754
+ normals.set(arr[i].text, 0);
755
+ }
756
+ }
757
+ }
758
+
759
+ break;
760
+ // if it is points
761
+
762
+ case 'Points':
763
+ var numberOfPoints = parseInt(piece.attributes.NumberOfPoints);
764
+
765
+ if (numberOfPoints > 0) {
766
+ var components = section.DataArray.attributes.NumberOfComponents;
767
+ points = new Float32Array(numberOfPoints * components);
768
+ points.set(section.DataArray.text, 0);
769
+ }
770
+
771
+ break;
772
+ // if it is strips
773
+
774
+ case 'Strips':
775
+ var numberOfStrips = parseInt(piece.attributes.NumberOfStrips);
776
+
777
+ if (numberOfStrips > 0) {
778
+ var connectivity = new Int32Array(section.DataArray[0].text.length);
779
+ var offset = new Int32Array(section.DataArray[1].text.length);
780
+ connectivity.set(section.DataArray[0].text, 0);
781
+ offset.set(section.DataArray[1].text, 0);
782
+ var size = numberOfStrips + connectivity.length;
783
+ indices = new Uint32Array(3 * size - 9 * numberOfStrips);
784
+ var indicesIndex = 0;
785
+
786
+ for (var i = 0, len = numberOfStrips; i < len; i++) {
787
+ var strip = [];
788
+
789
+ for (var s = 0, len1 = offset[i], len0 = 0; s < len1 - len0; s++) {
790
+ strip.push(connectivity[s]);
791
+ if (i > 0) len0 = offset[i - 1];
792
+ }
793
+
794
+ for (var j = 0, len1 = offset[i], len0 = 0; j < len1 - len0 - 2; j++) {
795
+ if (j % 2) {
796
+ indices[indicesIndex++] = strip[j];
797
+ indices[indicesIndex++] = strip[j + 2];
798
+ indices[indicesIndex++] = strip[j + 1];
799
+ } else {
800
+ indices[indicesIndex++] = strip[j];
801
+ indices[indicesIndex++] = strip[j + 1];
802
+ indices[indicesIndex++] = strip[j + 2];
803
+ }
804
+
805
+ if (i > 0) len0 = offset[i - 1];
806
+ }
807
+ }
808
+ }
809
+
810
+ break;
811
+ // if it is polys
812
+
813
+ case 'Polys':
814
+ var numberOfPolys = parseInt(piece.attributes.NumberOfPolys);
815
+
816
+ if (numberOfPolys > 0) {
817
+ var connectivity = new Int32Array(section.DataArray[0].text.length);
818
+ var offset = new Int32Array(section.DataArray[1].text.length);
819
+ connectivity.set(section.DataArray[0].text, 0);
820
+ offset.set(section.DataArray[1].text, 0);
821
+ var size = numberOfPolys + connectivity.length;
822
+ indices = new Uint32Array(3 * size - 9 * numberOfPolys);
823
+ var indicesIndex = 0,
824
+ connectivityIndex = 0;
825
+ var i = 0,
826
+ len = numberOfPolys,
827
+ len0 = 0;
828
+
829
+ while (i < len) {
830
+ var poly = [];
831
+ var s = 0,
832
+ len1 = offset[i];
833
+
834
+ while (s < len1 - len0) {
835
+ poly.push(connectivity[connectivityIndex++]);
836
+ s++;
837
+ }
838
+
839
+ var j = 1;
840
+
841
+ while (j < len1 - len0 - 1) {
842
+ indices[indicesIndex++] = poly[0];
843
+ indices[indicesIndex++] = poly[j];
844
+ indices[indicesIndex++] = poly[j + 1];
845
+ j++;
846
+ }
847
+
848
+ i++;
849
+ len0 = offset[i - 1];
850
+ }
851
+ }
852
+
853
+ break;
854
+
855
+ default:
856
+ break;
857
+ }
858
+ }
859
+
860
+ sectionIndex++;
861
+ }
862
+
863
+ var geometry = new _three.BufferGeometry();
864
+ geometry.setIndex(new _three.BufferAttribute(indices, 1));
865
+ geometry.setAttribute('position', new _three.BufferAttribute(points, 3));
866
+
867
+ if (normals.length === points.length) {
868
+ geometry.setAttribute('normal', new _three.BufferAttribute(normals, 3));
869
+ }
870
+
871
+ return geometry;
872
+ } else {
873
+ throw new Error('Unsupported DATASET type');
874
+ }
875
+ } // get the 5 first lines of the files to check if there is the key word binary
876
+
877
+
878
+ var meta = _three.LoaderUtils.decodeText(new Uint8Array(data, 0, 250)).split('\n');
879
+
880
+ if (meta[0].indexOf('xml') !== -1) {
881
+ return parseXML(_three.LoaderUtils.decodeText(data));
882
+ } else if (meta[2].includes('ASCII')) {
883
+ return parseASCII(_three.LoaderUtils.decodeText(data));
884
+ } else {
885
+ return parseBinary(data);
886
+ }
887
+ }
888
+ }]);
889
+
890
+ return VTKLoader;
891
+ }(_three.Loader);
892
+
893
+ _exports.VTKLoader = VTKLoader;
894
+ });