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,673 @@
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.OBJLoader = 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.OBJLoader = 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
+ // o object_name | g group_name
42
+ var _object_pattern = /^[og]\s*(.+)?/; // mtllib file_reference
43
+
44
+ var _material_library_pattern = /^mtllib /; // usemtl material_name
45
+
46
+ var _material_use_pattern = /^usemtl /; // usemap map_name
47
+
48
+ var _map_use_pattern = /^usemap /;
49
+
50
+ var _vA = new _three.Vector3();
51
+
52
+ var _vB = new _three.Vector3();
53
+
54
+ var _vC = new _three.Vector3();
55
+
56
+ var _ab = new _three.Vector3();
57
+
58
+ var _cb = new _three.Vector3();
59
+
60
+ function ParserState() {
61
+ var state = {
62
+ objects: [],
63
+ object: {},
64
+ vertices: [],
65
+ normals: [],
66
+ colors: [],
67
+ uvs: [],
68
+ materials: {},
69
+ materialLibraries: [],
70
+ startObject: function startObject(name, fromDeclaration) {
71
+ // If the current object (initial from reset) is not from a g/o declaration in the parsed
72
+ // file. We need to use it for the first parsed g/o to keep things in sync.
73
+ if (this.object && this.object.fromDeclaration === false) {
74
+ this.object.name = name;
75
+ this.object.fromDeclaration = fromDeclaration !== false;
76
+ return;
77
+ }
78
+
79
+ var previousMaterial = this.object && typeof this.object.currentMaterial === 'function' ? this.object.currentMaterial() : undefined;
80
+
81
+ if (this.object && typeof this.object._finalize === 'function') {
82
+ this.object._finalize(true);
83
+ }
84
+
85
+ this.object = {
86
+ name: name || '',
87
+ fromDeclaration: fromDeclaration !== false,
88
+ geometry: {
89
+ vertices: [],
90
+ normals: [],
91
+ colors: [],
92
+ uvs: [],
93
+ hasUVIndices: false
94
+ },
95
+ materials: [],
96
+ smooth: true,
97
+ startMaterial: function startMaterial(name, libraries) {
98
+ var previous = this._finalize(false); // New usemtl declaration overwrites an inherited material, except if faces were declared
99
+ // after the material, then it must be preserved for proper MultiMaterial continuation.
100
+
101
+
102
+ if (previous && (previous.inherited || previous.groupCount <= 0)) {
103
+ this.materials.splice(previous.index, 1);
104
+ }
105
+
106
+ var material = {
107
+ index: this.materials.length,
108
+ name: name || '',
109
+ mtllib: Array.isArray(libraries) && libraries.length > 0 ? libraries[libraries.length - 1] : '',
110
+ smooth: previous !== undefined ? previous.smooth : this.smooth,
111
+ groupStart: previous !== undefined ? previous.groupEnd : 0,
112
+ groupEnd: -1,
113
+ groupCount: -1,
114
+ inherited: false,
115
+ clone: function clone(index) {
116
+ var cloned = {
117
+ index: typeof index === 'number' ? index : this.index,
118
+ name: this.name,
119
+ mtllib: this.mtllib,
120
+ smooth: this.smooth,
121
+ groupStart: 0,
122
+ groupEnd: -1,
123
+ groupCount: -1,
124
+ inherited: false
125
+ };
126
+ cloned.clone = this.clone.bind(cloned);
127
+ return cloned;
128
+ }
129
+ };
130
+ this.materials.push(material);
131
+ return material;
132
+ },
133
+ currentMaterial: function currentMaterial() {
134
+ if (this.materials.length > 0) {
135
+ return this.materials[this.materials.length - 1];
136
+ }
137
+
138
+ return undefined;
139
+ },
140
+ _finalize: function _finalize(end) {
141
+ var lastMultiMaterial = this.currentMaterial();
142
+
143
+ if (lastMultiMaterial && lastMultiMaterial.groupEnd === -1) {
144
+ lastMultiMaterial.groupEnd = this.geometry.vertices.length / 3;
145
+ lastMultiMaterial.groupCount = lastMultiMaterial.groupEnd - lastMultiMaterial.groupStart;
146
+ lastMultiMaterial.inherited = false;
147
+ } // Ignore objects tail materials if no face declarations followed them before a new o/g started.
148
+
149
+
150
+ if (end && this.materials.length > 1) {
151
+ for (var mi = this.materials.length - 1; mi >= 0; mi--) {
152
+ if (this.materials[mi].groupCount <= 0) {
153
+ this.materials.splice(mi, 1);
154
+ }
155
+ }
156
+ } // Guarantee at least one empty material, this makes the creation later more straight forward.
157
+
158
+
159
+ if (end && this.materials.length === 0) {
160
+ this.materials.push({
161
+ name: '',
162
+ smooth: this.smooth
163
+ });
164
+ }
165
+
166
+ return lastMultiMaterial;
167
+ }
168
+ }; // Inherit previous objects material.
169
+ // Spec tells us that a declared material must be set to all objects until a new material is declared.
170
+ // If a usemtl declaration is encountered while this new object is being parsed, it will
171
+ // overwrite the inherited material. Exception being that there was already face declarations
172
+ // to the inherited material, then it will be preserved for proper MultiMaterial continuation.
173
+
174
+ if (previousMaterial && previousMaterial.name && typeof previousMaterial.clone === 'function') {
175
+ var declared = previousMaterial.clone(0);
176
+ declared.inherited = true;
177
+ this.object.materials.push(declared);
178
+ }
179
+
180
+ this.objects.push(this.object);
181
+ },
182
+ finalize: function finalize() {
183
+ if (this.object && typeof this.object._finalize === 'function') {
184
+ this.object._finalize(true);
185
+ }
186
+ },
187
+ parseVertexIndex: function parseVertexIndex(value, len) {
188
+ var index = parseInt(value, 10);
189
+ return (index >= 0 ? index - 1 : index + len / 3) * 3;
190
+ },
191
+ parseNormalIndex: function parseNormalIndex(value, len) {
192
+ var index = parseInt(value, 10);
193
+ return (index >= 0 ? index - 1 : index + len / 3) * 3;
194
+ },
195
+ parseUVIndex: function parseUVIndex(value, len) {
196
+ var index = parseInt(value, 10);
197
+ return (index >= 0 ? index - 1 : index + len / 2) * 2;
198
+ },
199
+ addVertex: function addVertex(a, b, c) {
200
+ var src = this.vertices;
201
+ var dst = this.object.geometry.vertices;
202
+ dst.push(src[a + 0], src[a + 1], src[a + 2]);
203
+ dst.push(src[b + 0], src[b + 1], src[b + 2]);
204
+ dst.push(src[c + 0], src[c + 1], src[c + 2]);
205
+ },
206
+ addVertexPoint: function addVertexPoint(a) {
207
+ var src = this.vertices;
208
+ var dst = this.object.geometry.vertices;
209
+ dst.push(src[a + 0], src[a + 1], src[a + 2]);
210
+ },
211
+ addVertexLine: function addVertexLine(a) {
212
+ var src = this.vertices;
213
+ var dst = this.object.geometry.vertices;
214
+ dst.push(src[a + 0], src[a + 1], src[a + 2]);
215
+ },
216
+ addNormal: function addNormal(a, b, c) {
217
+ var src = this.normals;
218
+ var dst = this.object.geometry.normals;
219
+ dst.push(src[a + 0], src[a + 1], src[a + 2]);
220
+ dst.push(src[b + 0], src[b + 1], src[b + 2]);
221
+ dst.push(src[c + 0], src[c + 1], src[c + 2]);
222
+ },
223
+ addFaceNormal: function addFaceNormal(a, b, c) {
224
+ var src = this.vertices;
225
+ var dst = this.object.geometry.normals;
226
+
227
+ _vA.fromArray(src, a);
228
+
229
+ _vB.fromArray(src, b);
230
+
231
+ _vC.fromArray(src, c);
232
+
233
+ _cb.subVectors(_vC, _vB);
234
+
235
+ _ab.subVectors(_vA, _vB);
236
+
237
+ _cb.cross(_ab);
238
+
239
+ _cb.normalize();
240
+
241
+ dst.push(_cb.x, _cb.y, _cb.z);
242
+ dst.push(_cb.x, _cb.y, _cb.z);
243
+ dst.push(_cb.x, _cb.y, _cb.z);
244
+ },
245
+ addColor: function addColor(a, b, c) {
246
+ var src = this.colors;
247
+ var dst = this.object.geometry.colors;
248
+ if (src[a] !== undefined) dst.push(src[a + 0], src[a + 1], src[a + 2]);
249
+ if (src[b] !== undefined) dst.push(src[b + 0], src[b + 1], src[b + 2]);
250
+ if (src[c] !== undefined) dst.push(src[c + 0], src[c + 1], src[c + 2]);
251
+ },
252
+ addUV: function addUV(a, b, c) {
253
+ var src = this.uvs;
254
+ var dst = this.object.geometry.uvs;
255
+ dst.push(src[a + 0], src[a + 1]);
256
+ dst.push(src[b + 0], src[b + 1]);
257
+ dst.push(src[c + 0], src[c + 1]);
258
+ },
259
+ addDefaultUV: function addDefaultUV() {
260
+ var dst = this.object.geometry.uvs;
261
+ dst.push(0, 0);
262
+ dst.push(0, 0);
263
+ dst.push(0, 0);
264
+ },
265
+ addUVLine: function addUVLine(a) {
266
+ var src = this.uvs;
267
+ var dst = this.object.geometry.uvs;
268
+ dst.push(src[a + 0], src[a + 1]);
269
+ },
270
+ addFace: function addFace(a, b, c, ua, ub, uc, na, nb, nc) {
271
+ var vLen = this.vertices.length;
272
+ var ia = this.parseVertexIndex(a, vLen);
273
+ var ib = this.parseVertexIndex(b, vLen);
274
+ var ic = this.parseVertexIndex(c, vLen);
275
+ this.addVertex(ia, ib, ic);
276
+ this.addColor(ia, ib, ic); // normals
277
+
278
+ if (na !== undefined && na !== '') {
279
+ var nLen = this.normals.length;
280
+ ia = this.parseNormalIndex(na, nLen);
281
+ ib = this.parseNormalIndex(nb, nLen);
282
+ ic = this.parseNormalIndex(nc, nLen);
283
+ this.addNormal(ia, ib, ic);
284
+ } else {
285
+ this.addFaceNormal(ia, ib, ic);
286
+ } // uvs
287
+
288
+
289
+ if (ua !== undefined && ua !== '') {
290
+ var uvLen = this.uvs.length;
291
+ ia = this.parseUVIndex(ua, uvLen);
292
+ ib = this.parseUVIndex(ub, uvLen);
293
+ ic = this.parseUVIndex(uc, uvLen);
294
+ this.addUV(ia, ib, ic);
295
+ this.object.geometry.hasUVIndices = true;
296
+ } else {
297
+ // add placeholder values (for inconsistent face definitions)
298
+ this.addDefaultUV();
299
+ }
300
+ },
301
+ addPointGeometry: function addPointGeometry(vertices) {
302
+ this.object.geometry.type = 'Points';
303
+ var vLen = this.vertices.length;
304
+
305
+ for (var vi = 0, l = vertices.length; vi < l; vi++) {
306
+ var index = this.parseVertexIndex(vertices[vi], vLen);
307
+ this.addVertexPoint(index);
308
+ this.addColor(index);
309
+ }
310
+ },
311
+ addLineGeometry: function addLineGeometry(vertices, uvs) {
312
+ this.object.geometry.type = 'Line';
313
+ var vLen = this.vertices.length;
314
+ var uvLen = this.uvs.length;
315
+
316
+ for (var vi = 0, l = vertices.length; vi < l; vi++) {
317
+ this.addVertexLine(this.parseVertexIndex(vertices[vi], vLen));
318
+ }
319
+
320
+ for (var uvi = 0, _l = uvs.length; uvi < _l; uvi++) {
321
+ this.addUVLine(this.parseUVIndex(uvs[uvi], uvLen));
322
+ }
323
+ }
324
+ };
325
+ state.startObject('', false);
326
+ return state;
327
+ } //
328
+
329
+
330
+ var OBJLoader = /*#__PURE__*/function (_Loader) {
331
+ _inherits(OBJLoader, _Loader);
332
+
333
+ var _super = _createSuper(OBJLoader);
334
+
335
+ function OBJLoader(manager) {
336
+ var _this;
337
+
338
+ _classCallCheck(this, OBJLoader);
339
+
340
+ _this = _super.call(this, manager);
341
+ _this.materials = null;
342
+ return _this;
343
+ }
344
+
345
+ _createClass(OBJLoader, [{
346
+ key: "load",
347
+ value: function load(url, onLoad, onProgress, onError) {
348
+ var scope = this;
349
+ var loader = new _three.FileLoader(this.manager);
350
+ loader.setPath(this.path);
351
+ loader.setRequestHeader(this.requestHeader);
352
+ loader.setWithCredentials(this.withCredentials);
353
+ loader.load(url, function (text) {
354
+ try {
355
+ onLoad(scope.parse(text));
356
+ } catch (e) {
357
+ if (onError) {
358
+ onError(e);
359
+ } else {
360
+ console.error(e);
361
+ }
362
+
363
+ scope.manager.itemError(url);
364
+ }
365
+ }, onProgress, onError);
366
+ }
367
+ }, {
368
+ key: "setMaterials",
369
+ value: function setMaterials(materials) {
370
+ this.materials = materials;
371
+ return this;
372
+ }
373
+ }, {
374
+ key: "parse",
375
+ value: function parse(text) {
376
+ var state = new ParserState();
377
+
378
+ if (text.indexOf('\r\n') !== -1) {
379
+ // This is faster than String.split with regex that splits on both
380
+ text = text.replace(/\r\n/g, '\n');
381
+ }
382
+
383
+ if (text.indexOf('\\\n') !== -1) {
384
+ // join lines separated by a line continuation character (\)
385
+ text = text.replace(/\\\n/g, '');
386
+ }
387
+
388
+ var lines = text.split('\n');
389
+ var line = '',
390
+ lineFirstChar = '';
391
+ var lineLength = 0;
392
+ var result = []; // Faster to just trim left side of the line. Use if available.
393
+
394
+ var trimLeft = typeof ''.trimLeft === 'function';
395
+
396
+ for (var i = 0, l = lines.length; i < l; i++) {
397
+ line = lines[i];
398
+ line = trimLeft ? line.trimLeft() : line.trim();
399
+ lineLength = line.length;
400
+ if (lineLength === 0) continue;
401
+ lineFirstChar = line.charAt(0); // @todo invoke passed in handler if any
402
+
403
+ if (lineFirstChar === '#') continue;
404
+
405
+ if (lineFirstChar === 'v') {
406
+ var data = line.split(/\s+/);
407
+
408
+ switch (data[0]) {
409
+ case 'v':
410
+ state.vertices.push(parseFloat(data[1]), parseFloat(data[2]), parseFloat(data[3]));
411
+
412
+ if (data.length >= 7) {
413
+ state.colors.push(parseFloat(data[4]), parseFloat(data[5]), parseFloat(data[6]));
414
+ } else {
415
+ // if no colors are defined, add placeholders so color and vertex indices match
416
+ state.colors.push(undefined, undefined, undefined);
417
+ }
418
+
419
+ break;
420
+
421
+ case 'vn':
422
+ state.normals.push(parseFloat(data[1]), parseFloat(data[2]), parseFloat(data[3]));
423
+ break;
424
+
425
+ case 'vt':
426
+ state.uvs.push(parseFloat(data[1]), parseFloat(data[2]));
427
+ break;
428
+ }
429
+ } else if (lineFirstChar === 'f') {
430
+ var lineData = line.substr(1).trim();
431
+ var vertexData = lineData.split(/\s+/);
432
+ var faceVertices = []; // Parse the face vertex data into an easy to work with format
433
+
434
+ for (var j = 0, jl = vertexData.length; j < jl; j++) {
435
+ var vertex = vertexData[j];
436
+
437
+ if (vertex.length > 0) {
438
+ var vertexParts = vertex.split('/');
439
+ faceVertices.push(vertexParts);
440
+ }
441
+ } // Draw an edge between the first vertex and all subsequent vertices to form an n-gon
442
+
443
+
444
+ var v1 = faceVertices[0];
445
+
446
+ for (var _j = 1, _jl = faceVertices.length - 1; _j < _jl; _j++) {
447
+ var v2 = faceVertices[_j];
448
+ var v3 = faceVertices[_j + 1];
449
+ state.addFace(v1[0], v2[0], v3[0], v1[1], v2[1], v3[1], v1[2], v2[2], v3[2]);
450
+ }
451
+ } else if (lineFirstChar === 'l') {
452
+ var lineParts = line.substring(1).trim().split(' ');
453
+ var lineVertices = [];
454
+ var lineUVs = [];
455
+
456
+ if (line.indexOf('/') === -1) {
457
+ lineVertices = lineParts;
458
+ } else {
459
+ for (var li = 0, llen = lineParts.length; li < llen; li++) {
460
+ var parts = lineParts[li].split('/');
461
+ if (parts[0] !== '') lineVertices.push(parts[0]);
462
+ if (parts[1] !== '') lineUVs.push(parts[1]);
463
+ }
464
+ }
465
+
466
+ state.addLineGeometry(lineVertices, lineUVs);
467
+ } else if (lineFirstChar === 'p') {
468
+ var _lineData = line.substr(1).trim();
469
+
470
+ var pointData = _lineData.split(' ');
471
+
472
+ state.addPointGeometry(pointData);
473
+ } else if ((result = _object_pattern.exec(line)) !== null) {
474
+ // o object_name
475
+ // or
476
+ // g group_name
477
+ // WORKAROUND: https://bugs.chromium.org/p/v8/issues/detail?id=2869
478
+ // let name = result[ 0 ].substr( 1 ).trim();
479
+ var name = (' ' + result[0].substr(1).trim()).substr(1);
480
+ state.startObject(name);
481
+ } else if (_material_use_pattern.test(line)) {
482
+ // material
483
+ state.object.startMaterial(line.substring(7).trim(), state.materialLibraries);
484
+ } else if (_material_library_pattern.test(line)) {
485
+ // mtl file
486
+ state.materialLibraries.push(line.substring(7).trim());
487
+ } else if (_map_use_pattern.test(line)) {
488
+ // the line is parsed but ignored since the loader assumes textures are defined MTL files
489
+ // (according to https://www.okino.com/conv/imp_wave.htm, 'usemap' is the old-style Wavefront texture reference method)
490
+ console.warn('THREE.OBJLoader: Rendering identifier "usemap" not supported. Textures must be defined in MTL files.');
491
+ } else if (lineFirstChar === 's') {
492
+ result = line.split(' '); // smooth shading
493
+ // @todo Handle files that have varying smooth values for a set of faces inside one geometry,
494
+ // but does not define a usemtl for each face set.
495
+ // This should be detected and a dummy material created (later MultiMaterial and geometry groups).
496
+ // This requires some care to not create extra material on each smooth value for "normal" obj files.
497
+ // where explicit usemtl defines geometry groups.
498
+ // Example asset: examples/models/obj/cerberus/Cerberus.obj
499
+
500
+ /*
501
+ * http://paulbourke.net/dataformats/obj/
502
+ * or
503
+ * http://www.cs.utah.edu/~boulos/cs3505/obj_spec.pdf
504
+ *
505
+ * From chapter "Grouping" Syntax explanation "s group_number":
506
+ * "group_number is the smoothing group number. To turn off smoothing groups, use a value of 0 or off.
507
+ * Polygonal elements use group numbers to put elements in different smoothing groups. For free-form
508
+ * surfaces, smoothing groups are either turned on or off; there is no difference between values greater
509
+ * than 0."
510
+ */
511
+
512
+ if (result.length > 1) {
513
+ var value = result[1].trim().toLowerCase();
514
+ state.object.smooth = value !== '0' && value !== 'off';
515
+ } else {
516
+ // ZBrush can produce "s" lines #11707
517
+ state.object.smooth = true;
518
+ }
519
+
520
+ var material = state.object.currentMaterial();
521
+ if (material) material.smooth = state.object.smooth;
522
+ } else {
523
+ // Handle null terminated files without exception
524
+ if (line === '\0') continue;
525
+ console.warn('THREE.OBJLoader: Unexpected line: "' + line + '"');
526
+ }
527
+ }
528
+
529
+ state.finalize();
530
+ var container = new _three.Group();
531
+ container.materialLibraries = [].concat(state.materialLibraries);
532
+ var hasPrimitives = !(state.objects.length === 1 && state.objects[0].geometry.vertices.length === 0);
533
+
534
+ if (hasPrimitives === true) {
535
+ for (var _i = 0, _l2 = state.objects.length; _i < _l2; _i++) {
536
+ var object = state.objects[_i];
537
+ var geometry = object.geometry;
538
+ var materials = object.materials;
539
+ var isLine = geometry.type === 'Line';
540
+ var isPoints = geometry.type === 'Points';
541
+ var hasVertexColors = false; // Skip o/g line declarations that did not follow with any faces
542
+
543
+ if (geometry.vertices.length === 0) continue;
544
+ var buffergeometry = new _three.BufferGeometry();
545
+ buffergeometry.setAttribute('position', new _three.Float32BufferAttribute(geometry.vertices, 3));
546
+
547
+ if (geometry.normals.length > 0) {
548
+ buffergeometry.setAttribute('normal', new _three.Float32BufferAttribute(geometry.normals, 3));
549
+ }
550
+
551
+ if (geometry.colors.length > 0) {
552
+ hasVertexColors = true;
553
+ buffergeometry.setAttribute('color', new _three.Float32BufferAttribute(geometry.colors, 3));
554
+ }
555
+
556
+ if (geometry.hasUVIndices === true) {
557
+ buffergeometry.setAttribute('uv', new _three.Float32BufferAttribute(geometry.uvs, 2));
558
+ } // Create materials
559
+
560
+
561
+ var createdMaterials = [];
562
+
563
+ for (var mi = 0, miLen = materials.length; mi < miLen; mi++) {
564
+ var sourceMaterial = materials[mi];
565
+ var materialHash = sourceMaterial.name + '_' + sourceMaterial.smooth + '_' + hasVertexColors;
566
+ var _material = state.materials[materialHash];
567
+
568
+ if (this.materials !== null) {
569
+ _material = this.materials.create(sourceMaterial.name); // mtl etc. loaders probably can't create line materials correctly, copy properties to a line material.
570
+
571
+ if (isLine && _material && !(_material instanceof _three.LineBasicMaterial)) {
572
+ var materialLine = new _three.LineBasicMaterial();
573
+
574
+ _three.Material.prototype.copy.call(materialLine, _material);
575
+
576
+ materialLine.color.copy(_material.color);
577
+ _material = materialLine;
578
+ } else if (isPoints && _material && !(_material instanceof _three.PointsMaterial)) {
579
+ var materialPoints = new _three.PointsMaterial({
580
+ size: 10,
581
+ sizeAttenuation: false
582
+ });
583
+
584
+ _three.Material.prototype.copy.call(materialPoints, _material);
585
+
586
+ materialPoints.color.copy(_material.color);
587
+ materialPoints.map = _material.map;
588
+ _material = materialPoints;
589
+ }
590
+ }
591
+
592
+ if (_material === undefined) {
593
+ if (isLine) {
594
+ _material = new _three.LineBasicMaterial();
595
+ } else if (isPoints) {
596
+ _material = new _three.PointsMaterial({
597
+ size: 1,
598
+ sizeAttenuation: false
599
+ });
600
+ } else {
601
+ _material = new _three.MeshPhongMaterial();
602
+ }
603
+
604
+ _material.name = sourceMaterial.name;
605
+ _material.flatShading = sourceMaterial.smooth ? false : true;
606
+ _material.vertexColors = hasVertexColors;
607
+ state.materials[materialHash] = _material;
608
+ }
609
+
610
+ createdMaterials.push(_material);
611
+ } // Create mesh
612
+
613
+
614
+ var mesh = void 0;
615
+
616
+ if (createdMaterials.length > 1) {
617
+ for (var _mi = 0, _miLen = materials.length; _mi < _miLen; _mi++) {
618
+ var _sourceMaterial = materials[_mi];
619
+ buffergeometry.addGroup(_sourceMaterial.groupStart, _sourceMaterial.groupCount, _mi);
620
+ }
621
+
622
+ if (isLine) {
623
+ mesh = new _three.LineSegments(buffergeometry, createdMaterials);
624
+ } else if (isPoints) {
625
+ mesh = new _three.Points(buffergeometry, createdMaterials);
626
+ } else {
627
+ mesh = new _three.Mesh(buffergeometry, createdMaterials);
628
+ }
629
+ } else {
630
+ if (isLine) {
631
+ mesh = new _three.LineSegments(buffergeometry, createdMaterials[0]);
632
+ } else if (isPoints) {
633
+ mesh = new _three.Points(buffergeometry, createdMaterials[0]);
634
+ } else {
635
+ mesh = new _three.Mesh(buffergeometry, createdMaterials[0]);
636
+ }
637
+ }
638
+
639
+ mesh.name = object.name;
640
+ container.add(mesh);
641
+ }
642
+ } else {
643
+ // if there is only the default parser state object with no geometry data, interpret data as point cloud
644
+ if (state.vertices.length > 0) {
645
+ var _material2 = new _three.PointsMaterial({
646
+ size: 1,
647
+ sizeAttenuation: false
648
+ });
649
+
650
+ var _buffergeometry = new _three.BufferGeometry();
651
+
652
+ _buffergeometry.setAttribute('position', new _three.Float32BufferAttribute(state.vertices, 3));
653
+
654
+ if (state.colors.length > 0 && state.colors[0] !== undefined) {
655
+ _buffergeometry.setAttribute('color', new _three.Float32BufferAttribute(state.colors, 3));
656
+
657
+ _material2.vertexColors = true;
658
+ }
659
+
660
+ var points = new _three.Points(_buffergeometry, _material2);
661
+ container.add(points);
662
+ }
663
+ }
664
+
665
+ return container;
666
+ }
667
+ }]);
668
+
669
+ return OBJLoader;
670
+ }(_three.Loader);
671
+
672
+ _exports.OBJLoader = OBJLoader;
673
+ });