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,1210 @@
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.TransformControls = 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.TransformControlsPlane = _exports.TransformControlsGizmo = _exports.TransformControls = 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 _get() { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get; } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(arguments.length < 3 ? target : receiver); } return desc.value; }; } return _get.apply(this, arguments); }
28
+
29
+ function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
30
+
31
+ 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); }
32
+
33
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
34
+
35
+ 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); }; }
36
+
37
+ 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); }
38
+
39
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
40
+
41
+ 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; } }
42
+
43
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
44
+
45
+ var _raycaster = new _three.Raycaster();
46
+
47
+ var _tempVector = new _three.Vector3();
48
+
49
+ var _tempVector2 = new _three.Vector3();
50
+
51
+ var _tempQuaternion = new _three.Quaternion();
52
+
53
+ var _unit = {
54
+ X: new _three.Vector3(1, 0, 0),
55
+ Y: new _three.Vector3(0, 1, 0),
56
+ Z: new _three.Vector3(0, 0, 1)
57
+ };
58
+ var _changeEvent = {
59
+ type: 'change'
60
+ };
61
+ var _mouseDownEvent = {
62
+ type: 'mouseDown'
63
+ };
64
+ var _mouseUpEvent = {
65
+ type: 'mouseUp',
66
+ mode: null
67
+ };
68
+ var _objectChangeEvent = {
69
+ type: 'objectChange'
70
+ };
71
+
72
+ var TransformControls = /*#__PURE__*/function (_Object3D) {
73
+ _inherits(TransformControls, _Object3D);
74
+
75
+ var _super = _createSuper(TransformControls);
76
+
77
+ function TransformControls(camera, domElement) {
78
+ var _this;
79
+
80
+ _classCallCheck(this, TransformControls);
81
+
82
+ _this = _super.call(this);
83
+
84
+ if (domElement === undefined) {
85
+ console.warn('THREE.TransformControls: The second parameter "domElement" is now mandatory.');
86
+ domElement = document;
87
+ }
88
+
89
+ _this.visible = false;
90
+ _this.domElement = domElement;
91
+ _this.domElement.style.touchAction = 'none'; // disable touch scroll
92
+
93
+ var _gizmo = new TransformControlsGizmo();
94
+
95
+ _this._gizmo = _gizmo;
96
+
97
+ _this.add(_gizmo);
98
+
99
+ var _plane = new TransformControlsPlane();
100
+
101
+ _this._plane = _plane;
102
+
103
+ _this.add(_plane);
104
+
105
+ var scope = _assertThisInitialized(_this); // Defined getter, setter and store for a property
106
+
107
+
108
+ function defineProperty(propName, defaultValue) {
109
+ var propValue = defaultValue;
110
+ Object.defineProperty(scope, propName, {
111
+ get: function get() {
112
+ return propValue !== undefined ? propValue : defaultValue;
113
+ },
114
+ set: function set(value) {
115
+ if (propValue !== value) {
116
+ propValue = value;
117
+ _plane[propName] = value;
118
+ _gizmo[propName] = value;
119
+ scope.dispatchEvent({
120
+ type: propName + '-changed',
121
+ value: value
122
+ });
123
+ scope.dispatchEvent(_changeEvent);
124
+ }
125
+ }
126
+ });
127
+ scope[propName] = defaultValue;
128
+ _plane[propName] = defaultValue;
129
+ _gizmo[propName] = defaultValue;
130
+ } // Define properties with getters/setter
131
+ // Setting the defined property will automatically trigger change event
132
+ // Defined properties are passed down to gizmo and plane
133
+
134
+
135
+ defineProperty('camera', camera);
136
+ defineProperty('object', undefined);
137
+ defineProperty('enabled', true);
138
+ defineProperty('axis', null);
139
+ defineProperty('mode', 'translate');
140
+ defineProperty('translationSnap', null);
141
+ defineProperty('rotationSnap', null);
142
+ defineProperty('scaleSnap', null);
143
+ defineProperty('space', 'world');
144
+ defineProperty('size', 1);
145
+ defineProperty('dragging', false);
146
+ defineProperty('showX', true);
147
+ defineProperty('showY', true);
148
+ defineProperty('showZ', true); // Reusable utility variables
149
+
150
+ var worldPosition = new _three.Vector3();
151
+ var worldPositionStart = new _three.Vector3();
152
+ var worldQuaternion = new _three.Quaternion();
153
+ var worldQuaternionStart = new _three.Quaternion();
154
+ var cameraPosition = new _three.Vector3();
155
+ var cameraQuaternion = new _three.Quaternion();
156
+ var pointStart = new _three.Vector3();
157
+ var pointEnd = new _three.Vector3();
158
+ var rotationAxis = new _three.Vector3();
159
+ var rotationAngle = 0;
160
+ var eye = new _three.Vector3(); // TODO: remove properties unused in plane and gizmo
161
+
162
+ defineProperty('worldPosition', worldPosition);
163
+ defineProperty('worldPositionStart', worldPositionStart);
164
+ defineProperty('worldQuaternion', worldQuaternion);
165
+ defineProperty('worldQuaternionStart', worldQuaternionStart);
166
+ defineProperty('cameraPosition', cameraPosition);
167
+ defineProperty('cameraQuaternion', cameraQuaternion);
168
+ defineProperty('pointStart', pointStart);
169
+ defineProperty('pointEnd', pointEnd);
170
+ defineProperty('rotationAxis', rotationAxis);
171
+ defineProperty('rotationAngle', rotationAngle);
172
+ defineProperty('eye', eye);
173
+ _this._offset = new _three.Vector3();
174
+ _this._startNorm = new _three.Vector3();
175
+ _this._endNorm = new _three.Vector3();
176
+ _this._cameraScale = new _three.Vector3();
177
+ _this._parentPosition = new _three.Vector3();
178
+ _this._parentQuaternion = new _three.Quaternion();
179
+ _this._parentQuaternionInv = new _three.Quaternion();
180
+ _this._parentScale = new _three.Vector3();
181
+ _this._worldScaleStart = new _three.Vector3();
182
+ _this._worldQuaternionInv = new _three.Quaternion();
183
+ _this._worldScale = new _three.Vector3();
184
+ _this._positionStart = new _three.Vector3();
185
+ _this._quaternionStart = new _three.Quaternion();
186
+ _this._scaleStart = new _three.Vector3();
187
+ _this._getPointer = getPointer.bind(_assertThisInitialized(_this));
188
+ _this._onPointerDown = onPointerDown.bind(_assertThisInitialized(_this));
189
+ _this._onPointerHover = onPointerHover.bind(_assertThisInitialized(_this));
190
+ _this._onPointerMove = onPointerMove.bind(_assertThisInitialized(_this));
191
+ _this._onPointerUp = onPointerUp.bind(_assertThisInitialized(_this));
192
+
193
+ _this.domElement.addEventListener('pointerdown', _this._onPointerDown);
194
+
195
+ _this.domElement.addEventListener('pointermove', _this._onPointerHover);
196
+
197
+ _this.domElement.addEventListener('pointerup', _this._onPointerUp);
198
+
199
+ return _this;
200
+ } // updateMatrixWorld updates key transformation variables
201
+
202
+
203
+ _createClass(TransformControls, [{
204
+ key: "updateMatrixWorld",
205
+ value: function updateMatrixWorld() {
206
+ if (this.object !== undefined) {
207
+ this.object.updateMatrixWorld();
208
+
209
+ if (this.object.parent === null) {
210
+ console.error('TransformControls: The attached 3D object must be a part of the scene graph.');
211
+ } else {
212
+ this.object.parent.matrixWorld.decompose(this._parentPosition, this._parentQuaternion, this._parentScale);
213
+ }
214
+
215
+ this.object.matrixWorld.decompose(this.worldPosition, this.worldQuaternion, this._worldScale);
216
+
217
+ this._parentQuaternionInv.copy(this._parentQuaternion).invert();
218
+
219
+ this._worldQuaternionInv.copy(this.worldQuaternion).invert();
220
+ }
221
+
222
+ this.camera.updateMatrixWorld();
223
+ this.camera.matrixWorld.decompose(this.cameraPosition, this.cameraQuaternion, this._cameraScale);
224
+ this.eye.copy(this.cameraPosition).sub(this.worldPosition).normalize();
225
+
226
+ _get(_getPrototypeOf(TransformControls.prototype), "updateMatrixWorld", this).call(this, this);
227
+ }
228
+ }, {
229
+ key: "pointerHover",
230
+ value: function pointerHover(pointer) {
231
+ if (this.object === undefined || this.dragging === true) return;
232
+
233
+ _raycaster.setFromCamera(pointer, this.camera);
234
+
235
+ var intersect = intersectObjectWithRay(this._gizmo.picker[this.mode], _raycaster);
236
+
237
+ if (intersect) {
238
+ this.axis = intersect.object.name;
239
+ } else {
240
+ this.axis = null;
241
+ }
242
+ }
243
+ }, {
244
+ key: "pointerDown",
245
+ value: function pointerDown(pointer) {
246
+ if (this.object === undefined || this.dragging === true || pointer.button !== 0) return;
247
+
248
+ if (this.axis !== null) {
249
+ _raycaster.setFromCamera(pointer, this.camera);
250
+
251
+ var planeIntersect = intersectObjectWithRay(this._plane, _raycaster, true);
252
+
253
+ if (planeIntersect) {
254
+ this.object.updateMatrixWorld();
255
+ this.object.parent.updateMatrixWorld();
256
+
257
+ this._positionStart.copy(this.object.position);
258
+
259
+ this._quaternionStart.copy(this.object.quaternion);
260
+
261
+ this._scaleStart.copy(this.object.scale);
262
+
263
+ this.object.matrixWorld.decompose(this.worldPositionStart, this.worldQuaternionStart, this._worldScaleStart);
264
+ this.pointStart.copy(planeIntersect.point).sub(this.worldPositionStart);
265
+ }
266
+
267
+ this.dragging = true;
268
+ _mouseDownEvent.mode = this.mode;
269
+ this.dispatchEvent(_mouseDownEvent);
270
+ }
271
+ }
272
+ }, {
273
+ key: "pointerMove",
274
+ value: function pointerMove(pointer) {
275
+ var axis = this.axis;
276
+ var mode = this.mode;
277
+ var object = this.object;
278
+ var space = this.space;
279
+
280
+ if (mode === 'scale') {
281
+ space = 'local';
282
+ } else if (axis === 'E' || axis === 'XYZE' || axis === 'XYZ') {
283
+ space = 'world';
284
+ }
285
+
286
+ if (object === undefined || axis === null || this.dragging === false || pointer.button !== -1) return;
287
+
288
+ _raycaster.setFromCamera(pointer, this.camera);
289
+
290
+ var planeIntersect = intersectObjectWithRay(this._plane, _raycaster, true);
291
+ if (!planeIntersect) return;
292
+ this.pointEnd.copy(planeIntersect.point).sub(this.worldPositionStart);
293
+
294
+ if (mode === 'translate') {
295
+ // Apply translate
296
+ this._offset.copy(this.pointEnd).sub(this.pointStart);
297
+
298
+ if (space === 'local' && axis !== 'XYZ') {
299
+ this._offset.applyQuaternion(this._worldQuaternionInv);
300
+ }
301
+
302
+ if (axis.indexOf('X') === -1) this._offset.x = 0;
303
+ if (axis.indexOf('Y') === -1) this._offset.y = 0;
304
+ if (axis.indexOf('Z') === -1) this._offset.z = 0;
305
+
306
+ if (space === 'local' && axis !== 'XYZ') {
307
+ this._offset.applyQuaternion(this._quaternionStart).divide(this._parentScale);
308
+ } else {
309
+ this._offset.applyQuaternion(this._parentQuaternionInv).divide(this._parentScale);
310
+ }
311
+
312
+ object.position.copy(this._offset).add(this._positionStart); // Apply translation snap
313
+
314
+ if (this.translationSnap) {
315
+ if (space === 'local') {
316
+ object.position.applyQuaternion(_tempQuaternion.copy(this._quaternionStart).invert());
317
+
318
+ if (axis.search('X') !== -1) {
319
+ object.position.x = Math.round(object.position.x / this.translationSnap) * this.translationSnap;
320
+ }
321
+
322
+ if (axis.search('Y') !== -1) {
323
+ object.position.y = Math.round(object.position.y / this.translationSnap) * this.translationSnap;
324
+ }
325
+
326
+ if (axis.search('Z') !== -1) {
327
+ object.position.z = Math.round(object.position.z / this.translationSnap) * this.translationSnap;
328
+ }
329
+
330
+ object.position.applyQuaternion(this._quaternionStart);
331
+ }
332
+
333
+ if (space === 'world') {
334
+ if (object.parent) {
335
+ object.position.add(_tempVector.setFromMatrixPosition(object.parent.matrixWorld));
336
+ }
337
+
338
+ if (axis.search('X') !== -1) {
339
+ object.position.x = Math.round(object.position.x / this.translationSnap) * this.translationSnap;
340
+ }
341
+
342
+ if (axis.search('Y') !== -1) {
343
+ object.position.y = Math.round(object.position.y / this.translationSnap) * this.translationSnap;
344
+ }
345
+
346
+ if (axis.search('Z') !== -1) {
347
+ object.position.z = Math.round(object.position.z / this.translationSnap) * this.translationSnap;
348
+ }
349
+
350
+ if (object.parent) {
351
+ object.position.sub(_tempVector.setFromMatrixPosition(object.parent.matrixWorld));
352
+ }
353
+ }
354
+ }
355
+ } else if (mode === 'scale') {
356
+ if (axis.search('XYZ') !== -1) {
357
+ var d = this.pointEnd.length() / this.pointStart.length();
358
+ if (this.pointEnd.dot(this.pointStart) < 0) d *= -1;
359
+
360
+ _tempVector2.set(d, d, d);
361
+ } else {
362
+ _tempVector.copy(this.pointStart);
363
+
364
+ _tempVector2.copy(this.pointEnd);
365
+
366
+ _tempVector.applyQuaternion(this._worldQuaternionInv);
367
+
368
+ _tempVector2.applyQuaternion(this._worldQuaternionInv);
369
+
370
+ _tempVector2.divide(_tempVector);
371
+
372
+ if (axis.search('X') === -1) {
373
+ _tempVector2.x = 1;
374
+ }
375
+
376
+ if (axis.search('Y') === -1) {
377
+ _tempVector2.y = 1;
378
+ }
379
+
380
+ if (axis.search('Z') === -1) {
381
+ _tempVector2.z = 1;
382
+ }
383
+ } // Apply scale
384
+
385
+
386
+ object.scale.copy(this._scaleStart).multiply(_tempVector2);
387
+
388
+ if (this.scaleSnap) {
389
+ if (axis.search('X') !== -1) {
390
+ object.scale.x = Math.round(object.scale.x / this.scaleSnap) * this.scaleSnap || this.scaleSnap;
391
+ }
392
+
393
+ if (axis.search('Y') !== -1) {
394
+ object.scale.y = Math.round(object.scale.y / this.scaleSnap) * this.scaleSnap || this.scaleSnap;
395
+ }
396
+
397
+ if (axis.search('Z') !== -1) {
398
+ object.scale.z = Math.round(object.scale.z / this.scaleSnap) * this.scaleSnap || this.scaleSnap;
399
+ }
400
+ }
401
+ } else if (mode === 'rotate') {
402
+ this._offset.copy(this.pointEnd).sub(this.pointStart);
403
+
404
+ var ROTATION_SPEED = 20 / this.worldPosition.distanceTo(_tempVector.setFromMatrixPosition(this.camera.matrixWorld));
405
+
406
+ if (axis === 'E') {
407
+ this.rotationAxis.copy(this.eye);
408
+ this.rotationAngle = this.pointEnd.angleTo(this.pointStart);
409
+
410
+ this._startNorm.copy(this.pointStart).normalize();
411
+
412
+ this._endNorm.copy(this.pointEnd).normalize();
413
+
414
+ this.rotationAngle *= this._endNorm.cross(this._startNorm).dot(this.eye) < 0 ? 1 : -1;
415
+ } else if (axis === 'XYZE') {
416
+ this.rotationAxis.copy(this._offset).cross(this.eye).normalize();
417
+ this.rotationAngle = this._offset.dot(_tempVector.copy(this.rotationAxis).cross(this.eye)) * ROTATION_SPEED;
418
+ } else if (axis === 'X' || axis === 'Y' || axis === 'Z') {
419
+ this.rotationAxis.copy(_unit[axis]);
420
+
421
+ _tempVector.copy(_unit[axis]);
422
+
423
+ if (space === 'local') {
424
+ _tempVector.applyQuaternion(this.worldQuaternion);
425
+ }
426
+
427
+ this.rotationAngle = this._offset.dot(_tempVector.cross(this.eye).normalize()) * ROTATION_SPEED;
428
+ } // Apply rotation snap
429
+
430
+
431
+ if (this.rotationSnap) this.rotationAngle = Math.round(this.rotationAngle / this.rotationSnap) * this.rotationSnap; // Apply rotate
432
+
433
+ if (space === 'local' && axis !== 'E' && axis !== 'XYZE') {
434
+ object.quaternion.copy(this._quaternionStart);
435
+ object.quaternion.multiply(_tempQuaternion.setFromAxisAngle(this.rotationAxis, this.rotationAngle)).normalize();
436
+ } else {
437
+ this.rotationAxis.applyQuaternion(this._parentQuaternionInv);
438
+ object.quaternion.copy(_tempQuaternion.setFromAxisAngle(this.rotationAxis, this.rotationAngle));
439
+ object.quaternion.multiply(this._quaternionStart).normalize();
440
+ }
441
+ }
442
+
443
+ this.dispatchEvent(_changeEvent);
444
+ this.dispatchEvent(_objectChangeEvent);
445
+ }
446
+ }, {
447
+ key: "pointerUp",
448
+ value: function pointerUp(pointer) {
449
+ if (pointer.button !== 0) return;
450
+
451
+ if (this.dragging && this.axis !== null) {
452
+ _mouseUpEvent.mode = this.mode;
453
+ this.dispatchEvent(_mouseUpEvent);
454
+ }
455
+
456
+ this.dragging = false;
457
+ this.axis = null;
458
+ }
459
+ }, {
460
+ key: "dispose",
461
+ value: function dispose() {
462
+ this.domElement.removeEventListener('pointerdown', this._onPointerDown);
463
+ this.domElement.removeEventListener('pointermove', this._onPointerHover);
464
+ this.domElement.removeEventListener('pointermove', this._onPointerMove);
465
+ this.domElement.removeEventListener('pointerup', this._onPointerUp);
466
+ this.traverse(function (child) {
467
+ if (child.geometry) child.geometry.dispose();
468
+ if (child.material) child.material.dispose();
469
+ });
470
+ } // Set current object
471
+
472
+ }, {
473
+ key: "attach",
474
+ value: function attach(object) {
475
+ this.object = object;
476
+ this.visible = true;
477
+ return this;
478
+ } // Detatch from object
479
+
480
+ }, {
481
+ key: "detach",
482
+ value: function detach() {
483
+ this.object = undefined;
484
+ this.visible = false;
485
+ this.axis = null;
486
+ return this;
487
+ }
488
+ }, {
489
+ key: "getRaycaster",
490
+ value: function getRaycaster() {
491
+ return _raycaster;
492
+ } // TODO: deprecate
493
+
494
+ }, {
495
+ key: "getMode",
496
+ value: function getMode() {
497
+ return this.mode;
498
+ }
499
+ }, {
500
+ key: "setMode",
501
+ value: function setMode(mode) {
502
+ this.mode = mode;
503
+ }
504
+ }, {
505
+ key: "setTranslationSnap",
506
+ value: function setTranslationSnap(translationSnap) {
507
+ this.translationSnap = translationSnap;
508
+ }
509
+ }, {
510
+ key: "setRotationSnap",
511
+ value: function setRotationSnap(rotationSnap) {
512
+ this.rotationSnap = rotationSnap;
513
+ }
514
+ }, {
515
+ key: "setScaleSnap",
516
+ value: function setScaleSnap(scaleSnap) {
517
+ this.scaleSnap = scaleSnap;
518
+ }
519
+ }, {
520
+ key: "setSize",
521
+ value: function setSize(size) {
522
+ this.size = size;
523
+ }
524
+ }, {
525
+ key: "setSpace",
526
+ value: function setSpace(space) {
527
+ this.space = space;
528
+ }
529
+ }, {
530
+ key: "update",
531
+ value: function update() {
532
+ console.warn('THREE.TransformControls: update function has no more functionality and therefore has been deprecated.');
533
+ }
534
+ }]);
535
+
536
+ return TransformControls;
537
+ }(_three.Object3D);
538
+
539
+ _exports.TransformControls = TransformControls;
540
+ TransformControls.prototype.isTransformControls = true; // mouse / touch event handlers
541
+
542
+ function getPointer(event) {
543
+ if (this.domElement.ownerDocument.pointerLockElement) {
544
+ return {
545
+ x: 0,
546
+ y: 0,
547
+ button: event.button
548
+ };
549
+ } else {
550
+ var rect = this.domElement.getBoundingClientRect();
551
+ return {
552
+ x: (event.clientX - rect.left) / rect.width * 2 - 1,
553
+ y: -(event.clientY - rect.top) / rect.height * 2 + 1,
554
+ button: event.button
555
+ };
556
+ }
557
+ }
558
+
559
+ function onPointerHover(event) {
560
+ if (!this.enabled) return;
561
+
562
+ switch (event.pointerType) {
563
+ case 'mouse':
564
+ case 'pen':
565
+ this.pointerHover(this._getPointer(event));
566
+ break;
567
+ }
568
+ }
569
+
570
+ function onPointerDown(event) {
571
+ if (!this.enabled) return;
572
+ this.domElement.setPointerCapture(event.pointerId);
573
+ this.domElement.addEventListener('pointermove', this._onPointerMove);
574
+ this.pointerHover(this._getPointer(event));
575
+ this.pointerDown(this._getPointer(event));
576
+ }
577
+
578
+ function onPointerMove(event) {
579
+ if (!this.enabled) return;
580
+ this.pointerMove(this._getPointer(event));
581
+ }
582
+
583
+ function onPointerUp(event) {
584
+ if (!this.enabled) return;
585
+ this.domElement.releasePointerCapture(event.pointerId);
586
+ this.domElement.removeEventListener('pointermove', this._onPointerMove);
587
+ this.pointerUp(this._getPointer(event));
588
+ }
589
+
590
+ function intersectObjectWithRay(object, raycaster, includeInvisible) {
591
+ var allIntersections = raycaster.intersectObject(object, true);
592
+
593
+ for (var i = 0; i < allIntersections.length; i++) {
594
+ if (allIntersections[i].object.visible || includeInvisible) {
595
+ return allIntersections[i];
596
+ }
597
+ }
598
+
599
+ return false;
600
+ } //
601
+ // Reusable utility variables
602
+
603
+
604
+ var _tempEuler = new _three.Euler();
605
+
606
+ var _alignVector = new _three.Vector3(0, 1, 0);
607
+
608
+ var _zeroVector = new _three.Vector3(0, 0, 0);
609
+
610
+ var _lookAtMatrix = new _three.Matrix4();
611
+
612
+ var _tempQuaternion2 = new _three.Quaternion();
613
+
614
+ var _identityQuaternion = new _three.Quaternion();
615
+
616
+ var _dirVector = new _three.Vector3();
617
+
618
+ var _tempMatrix = new _three.Matrix4();
619
+
620
+ var _unitX = new _three.Vector3(1, 0, 0);
621
+
622
+ var _unitY = new _three.Vector3(0, 1, 0);
623
+
624
+ var _unitZ = new _three.Vector3(0, 0, 1);
625
+
626
+ var _v1 = new _three.Vector3();
627
+
628
+ var _v2 = new _three.Vector3();
629
+
630
+ var _v3 = new _three.Vector3();
631
+
632
+ var TransformControlsGizmo = /*#__PURE__*/function (_Object3D2) {
633
+ _inherits(TransformControlsGizmo, _Object3D2);
634
+
635
+ var _super2 = _createSuper(TransformControlsGizmo);
636
+
637
+ function TransformControlsGizmo() {
638
+ var _this2;
639
+
640
+ _classCallCheck(this, TransformControlsGizmo);
641
+
642
+ _this2 = _super2.call(this);
643
+ _this2.type = 'TransformControlsGizmo'; // shared materials
644
+
645
+ var gizmoMaterial = new _three.MeshBasicMaterial({
646
+ depthTest: false,
647
+ depthWrite: false,
648
+ fog: false,
649
+ toneMapped: false,
650
+ transparent: true
651
+ });
652
+ var gizmoLineMaterial = new _three.LineBasicMaterial({
653
+ depthTest: false,
654
+ depthWrite: false,
655
+ fog: false,
656
+ toneMapped: false,
657
+ transparent: true
658
+ }); // Make unique material for each axis/color
659
+
660
+ var matInvisible = gizmoMaterial.clone();
661
+ matInvisible.opacity = 0.15;
662
+ var matHelper = gizmoLineMaterial.clone();
663
+ matHelper.opacity = 0.5;
664
+ var matRed = gizmoMaterial.clone();
665
+ matRed.color.setHex(0xff0000);
666
+ var matGreen = gizmoMaterial.clone();
667
+ matGreen.color.setHex(0x00ff00);
668
+ var matBlue = gizmoMaterial.clone();
669
+ matBlue.color.setHex(0x0000ff);
670
+ var matRedTransparent = gizmoMaterial.clone();
671
+ matRedTransparent.color.setHex(0xff0000);
672
+ matRedTransparent.opacity = 0.5;
673
+ var matGreenTransparent = gizmoMaterial.clone();
674
+ matGreenTransparent.color.setHex(0x00ff00);
675
+ matGreenTransparent.opacity = 0.5;
676
+ var matBlueTransparent = gizmoMaterial.clone();
677
+ matBlueTransparent.color.setHex(0x0000ff);
678
+ matBlueTransparent.opacity = 0.5;
679
+ var matWhiteTransparent = gizmoMaterial.clone();
680
+ matWhiteTransparent.opacity = 0.25;
681
+ var matYellowTransparent = gizmoMaterial.clone();
682
+ matYellowTransparent.color.setHex(0xffff00);
683
+ matYellowTransparent.opacity = 0.25;
684
+ var matYellow = gizmoMaterial.clone();
685
+ matYellow.color.setHex(0xffff00);
686
+ var matGray = gizmoMaterial.clone();
687
+ matGray.color.setHex(0x787878); // reusable geometry
688
+
689
+ var arrowGeometry = new _three.CylinderGeometry(0, 0.04, 0.1, 12);
690
+ arrowGeometry.translate(0, 0.05, 0);
691
+ var scaleHandleGeometry = new _three.BoxGeometry(0.08, 0.08, 0.08);
692
+ scaleHandleGeometry.translate(0, 0.04, 0);
693
+ var lineGeometry = new _three.BufferGeometry();
694
+ lineGeometry.setAttribute('position', new _three.Float32BufferAttribute([0, 0, 0, 1, 0, 0], 3));
695
+ var lineGeometry2 = new _three.CylinderGeometry(0.0075, 0.0075, 0.5, 3);
696
+ lineGeometry2.translate(0, 0.25, 0);
697
+
698
+ function CircleGeometry(radius, arc) {
699
+ var geometry = new _three.TorusGeometry(radius, 0.0075, 3, 64, arc * Math.PI * 2);
700
+ geometry.rotateY(Math.PI / 2);
701
+ geometry.rotateX(Math.PI / 2);
702
+ return geometry;
703
+ } // Special geometry for transform helper. If scaled with position vector it spans from [0,0,0] to position
704
+
705
+
706
+ function TranslateHelperGeometry() {
707
+ var geometry = new _three.BufferGeometry();
708
+ geometry.setAttribute('position', new _three.Float32BufferAttribute([0, 0, 0, 1, 1, 1], 3));
709
+ return geometry;
710
+ } // Gizmo definitions - custom hierarchy definitions for setupGizmo() function
711
+
712
+
713
+ var gizmoTranslate = {
714
+ X: [[new _three.Mesh(arrowGeometry, matRed), [0.5, 0, 0], [0, 0, -Math.PI / 2]], [new _three.Mesh(arrowGeometry, matRed), [-0.5, 0, 0], [0, 0, Math.PI / 2]], [new _three.Mesh(lineGeometry2, matRed), [0, 0, 0], [0, 0, -Math.PI / 2]]],
715
+ Y: [[new _three.Mesh(arrowGeometry, matGreen), [0, 0.5, 0]], [new _three.Mesh(arrowGeometry, matGreen), [0, -0.5, 0], [Math.PI, 0, 0]], [new _three.Mesh(lineGeometry2, matGreen)]],
716
+ Z: [[new _three.Mesh(arrowGeometry, matBlue), [0, 0, 0.5], [Math.PI / 2, 0, 0]], [new _three.Mesh(arrowGeometry, matBlue), [0, 0, -0.5], [-Math.PI / 2, 0, 0]], [new _three.Mesh(lineGeometry2, matBlue), null, [Math.PI / 2, 0, 0]]],
717
+ XYZ: [[new _three.Mesh(new _three.OctahedronGeometry(0.1, 0), matWhiteTransparent.clone()), [0, 0, 0]]],
718
+ XY: [[new _three.Mesh(new _three.BoxGeometry(0.15, 0.15, 0.01), matBlueTransparent.clone()), [0.15, 0.15, 0]]],
719
+ YZ: [[new _three.Mesh(new _three.BoxGeometry(0.15, 0.15, 0.01), matRedTransparent.clone()), [0, 0.15, 0.15], [0, Math.PI / 2, 0]]],
720
+ XZ: [[new _three.Mesh(new _three.BoxGeometry(0.15, 0.15, 0.01), matGreenTransparent.clone()), [0.15, 0, 0.15], [-Math.PI / 2, 0, 0]]]
721
+ };
722
+ var pickerTranslate = {
723
+ X: [[new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0.3, 0, 0], [0, 0, -Math.PI / 2]], [new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [-0.3, 0, 0], [0, 0, Math.PI / 2]]],
724
+ Y: [[new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, 0.3, 0]], [new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, -0.3, 0], [0, 0, Math.PI]]],
725
+ Z: [[new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, 0, 0.3], [Math.PI / 2, 0, 0]], [new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, 0, -0.3], [-Math.PI / 2, 0, 0]]],
726
+ XYZ: [[new _three.Mesh(new _three.OctahedronGeometry(0.2, 0), matInvisible)]],
727
+ XY: [[new _three.Mesh(new _three.BoxGeometry(0.2, 0.2, 0.01), matInvisible), [0.15, 0.15, 0]]],
728
+ YZ: [[new _three.Mesh(new _three.BoxGeometry(0.2, 0.2, 0.01), matInvisible), [0, 0.15, 0.15], [0, Math.PI / 2, 0]]],
729
+ XZ: [[new _three.Mesh(new _three.BoxGeometry(0.2, 0.2, 0.01), matInvisible), [0.15, 0, 0.15], [-Math.PI / 2, 0, 0]]]
730
+ };
731
+ var helperTranslate = {
732
+ START: [[new _three.Mesh(new _three.OctahedronGeometry(0.01, 2), matHelper), null, null, null, 'helper']],
733
+ END: [[new _three.Mesh(new _three.OctahedronGeometry(0.01, 2), matHelper), null, null, null, 'helper']],
734
+ DELTA: [[new _three.Line(TranslateHelperGeometry(), matHelper), null, null, null, 'helper']],
735
+ X: [[new _three.Line(lineGeometry, matHelper.clone()), [-1e3, 0, 0], null, [1e6, 1, 1], 'helper']],
736
+ Y: [[new _three.Line(lineGeometry, matHelper.clone()), [0, -1e3, 0], [0, 0, Math.PI / 2], [1e6, 1, 1], 'helper']],
737
+ Z: [[new _three.Line(lineGeometry, matHelper.clone()), [0, 0, -1e3], [0, -Math.PI / 2, 0], [1e6, 1, 1], 'helper']]
738
+ };
739
+ var gizmoRotate = {
740
+ XYZE: [[new _three.Mesh(CircleGeometry(0.5, 1), matGray), null, [0, Math.PI / 2, 0]]],
741
+ X: [[new _three.Mesh(CircleGeometry(0.5, 0.5), matRed)]],
742
+ Y: [[new _three.Mesh(CircleGeometry(0.5, 0.5), matGreen), null, [0, 0, -Math.PI / 2]]],
743
+ Z: [[new _three.Mesh(CircleGeometry(0.5, 0.5), matBlue), null, [0, Math.PI / 2, 0]]],
744
+ E: [[new _three.Mesh(CircleGeometry(0.75, 1), matYellowTransparent), null, [0, Math.PI / 2, 0]]]
745
+ };
746
+ var helperRotate = {
747
+ AXIS: [[new _three.Line(lineGeometry, matHelper.clone()), [-1e3, 0, 0], null, [1e6, 1, 1], 'helper']]
748
+ };
749
+ var pickerRotate = {
750
+ XYZE: [[new _three.Mesh(new _three.SphereGeometry(0.25, 10, 8), matInvisible)]],
751
+ X: [[new _three.Mesh(new _three.TorusGeometry(0.5, 0.1, 4, 24), matInvisible), [0, 0, 0], [0, -Math.PI / 2, -Math.PI / 2]]],
752
+ Y: [[new _three.Mesh(new _three.TorusGeometry(0.5, 0.1, 4, 24), matInvisible), [0, 0, 0], [Math.PI / 2, 0, 0]]],
753
+ Z: [[new _three.Mesh(new _three.TorusGeometry(0.5, 0.1, 4, 24), matInvisible), [0, 0, 0], [0, 0, -Math.PI / 2]]],
754
+ E: [[new _three.Mesh(new _three.TorusGeometry(0.75, 0.1, 2, 24), matInvisible)]]
755
+ };
756
+ var gizmoScale = {
757
+ X: [[new _three.Mesh(scaleHandleGeometry, matRed), [0.5, 0, 0], [0, 0, -Math.PI / 2]], [new _three.Mesh(lineGeometry2, matRed), [0, 0, 0], [0, 0, -Math.PI / 2]], [new _three.Mesh(scaleHandleGeometry, matRed), [-0.5, 0, 0], [0, 0, Math.PI / 2]]],
758
+ Y: [[new _three.Mesh(scaleHandleGeometry, matGreen), [0, 0.5, 0]], [new _three.Mesh(lineGeometry2, matGreen)], [new _three.Mesh(scaleHandleGeometry, matGreen), [0, -0.5, 0], [0, 0, Math.PI]]],
759
+ Z: [[new _three.Mesh(scaleHandleGeometry, matBlue), [0, 0, 0.5], [Math.PI / 2, 0, 0]], [new _three.Mesh(lineGeometry2, matBlue), [0, 0, 0], [Math.PI / 2, 0, 0]], [new _three.Mesh(scaleHandleGeometry, matBlue), [0, 0, -0.5], [-Math.PI / 2, 0, 0]]],
760
+ XY: [[new _three.Mesh(new _three.BoxGeometry(0.15, 0.15, 0.01), matBlueTransparent), [0.15, 0.15, 0]]],
761
+ YZ: [[new _three.Mesh(new _three.BoxGeometry(0.15, 0.15, 0.01), matRedTransparent), [0, 0.15, 0.15], [0, Math.PI / 2, 0]]],
762
+ XZ: [[new _three.Mesh(new _three.BoxGeometry(0.15, 0.15, 0.01), matGreenTransparent), [0.15, 0, 0.15], [-Math.PI / 2, 0, 0]]],
763
+ XYZ: [[new _three.Mesh(new _three.BoxGeometry(0.1, 0.1, 0.1), matWhiteTransparent.clone())]]
764
+ };
765
+ var pickerScale = {
766
+ X: [[new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0.3, 0, 0], [0, 0, -Math.PI / 2]], [new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [-0.3, 0, 0], [0, 0, Math.PI / 2]]],
767
+ Y: [[new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, 0.3, 0]], [new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, -0.3, 0], [0, 0, Math.PI]]],
768
+ Z: [[new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, 0, 0.3], [Math.PI / 2, 0, 0]], [new _three.Mesh(new _three.CylinderGeometry(0.2, 0, 0.6, 4), matInvisible), [0, 0, -0.3], [-Math.PI / 2, 0, 0]]],
769
+ XY: [[new _three.Mesh(new _three.BoxGeometry(0.2, 0.2, 0.01), matInvisible), [0.15, 0.15, 0]]],
770
+ YZ: [[new _three.Mesh(new _three.BoxGeometry(0.2, 0.2, 0.01), matInvisible), [0, 0.15, 0.15], [0, Math.PI / 2, 0]]],
771
+ XZ: [[new _three.Mesh(new _three.BoxGeometry(0.2, 0.2, 0.01), matInvisible), [0.15, 0, 0.15], [-Math.PI / 2, 0, 0]]],
772
+ XYZ: [[new _three.Mesh(new _three.BoxGeometry(0.2, 0.2, 0.2), matInvisible), [0, 0, 0]]]
773
+ };
774
+ var helperScale = {
775
+ X: [[new _three.Line(lineGeometry, matHelper.clone()), [-1e3, 0, 0], null, [1e6, 1, 1], 'helper']],
776
+ Y: [[new _three.Line(lineGeometry, matHelper.clone()), [0, -1e3, 0], [0, 0, Math.PI / 2], [1e6, 1, 1], 'helper']],
777
+ Z: [[new _three.Line(lineGeometry, matHelper.clone()), [0, 0, -1e3], [0, -Math.PI / 2, 0], [1e6, 1, 1], 'helper']]
778
+ }; // Creates an Object3D with gizmos described in custom hierarchy definition.
779
+
780
+ function setupGizmo(gizmoMap) {
781
+ var gizmo = new _three.Object3D();
782
+
783
+ for (var name in gizmoMap) {
784
+ for (var i = gizmoMap[name].length; i--;) {
785
+ var object = gizmoMap[name][i][0].clone();
786
+ var position = gizmoMap[name][i][1];
787
+ var rotation = gizmoMap[name][i][2];
788
+ var scale = gizmoMap[name][i][3];
789
+ var tag = gizmoMap[name][i][4]; // name and tag properties are essential for picking and updating logic.
790
+
791
+ object.name = name;
792
+ object.tag = tag;
793
+
794
+ if (position) {
795
+ object.position.set(position[0], position[1], position[2]);
796
+ }
797
+
798
+ if (rotation) {
799
+ object.rotation.set(rotation[0], rotation[1], rotation[2]);
800
+ }
801
+
802
+ if (scale) {
803
+ object.scale.set(scale[0], scale[1], scale[2]);
804
+ }
805
+
806
+ object.updateMatrix();
807
+ var tempGeometry = object.geometry.clone();
808
+ tempGeometry.applyMatrix4(object.matrix);
809
+ object.geometry = tempGeometry;
810
+ object.renderOrder = Infinity;
811
+ object.position.set(0, 0, 0);
812
+ object.rotation.set(0, 0, 0);
813
+ object.scale.set(1, 1, 1);
814
+ gizmo.add(object);
815
+ }
816
+ }
817
+
818
+ return gizmo;
819
+ } // Gizmo creation
820
+
821
+
822
+ _this2.gizmo = {};
823
+ _this2.picker = {};
824
+ _this2.helper = {};
825
+
826
+ _this2.add(_this2.gizmo['translate'] = setupGizmo(gizmoTranslate));
827
+
828
+ _this2.add(_this2.gizmo['rotate'] = setupGizmo(gizmoRotate));
829
+
830
+ _this2.add(_this2.gizmo['scale'] = setupGizmo(gizmoScale));
831
+
832
+ _this2.add(_this2.picker['translate'] = setupGizmo(pickerTranslate));
833
+
834
+ _this2.add(_this2.picker['rotate'] = setupGizmo(pickerRotate));
835
+
836
+ _this2.add(_this2.picker['scale'] = setupGizmo(pickerScale));
837
+
838
+ _this2.add(_this2.helper['translate'] = setupGizmo(helperTranslate));
839
+
840
+ _this2.add(_this2.helper['rotate'] = setupGizmo(helperRotate));
841
+
842
+ _this2.add(_this2.helper['scale'] = setupGizmo(helperScale)); // Pickers should be hidden always
843
+
844
+
845
+ _this2.picker['translate'].visible = false;
846
+ _this2.picker['rotate'].visible = false;
847
+ _this2.picker['scale'].visible = false;
848
+ return _this2;
849
+ } // updateMatrixWorld will update transformations and appearance of individual handles
850
+
851
+
852
+ _createClass(TransformControlsGizmo, [{
853
+ key: "updateMatrixWorld",
854
+ value: function updateMatrixWorld(force) {
855
+ var _this3 = this;
856
+
857
+ var space = this.mode === 'scale' ? 'local' : this.space; // scale always oriented to local rotation
858
+
859
+ var quaternion = space === 'local' ? this.worldQuaternion : _identityQuaternion; // Show only gizmos for current transform mode
860
+
861
+ this.gizmo['translate'].visible = this.mode === 'translate';
862
+ this.gizmo['rotate'].visible = this.mode === 'rotate';
863
+ this.gizmo['scale'].visible = this.mode === 'scale';
864
+ this.helper['translate'].visible = this.mode === 'translate';
865
+ this.helper['rotate'].visible = this.mode === 'rotate';
866
+ this.helper['scale'].visible = this.mode === 'scale';
867
+ var handles = [];
868
+ handles = handles.concat(this.picker[this.mode].children);
869
+ handles = handles.concat(this.gizmo[this.mode].children);
870
+ handles = handles.concat(this.helper[this.mode].children);
871
+
872
+ var _loop = function _loop(i) {
873
+ var handle = handles[i]; // hide aligned to camera
874
+
875
+ handle.visible = true;
876
+ handle.rotation.set(0, 0, 0);
877
+ handle.position.copy(_this3.worldPosition);
878
+ var factor = void 0;
879
+
880
+ if (_this3.camera.isOrthographicCamera) {
881
+ factor = (_this3.camera.top - _this3.camera.bottom) / _this3.camera.zoom;
882
+ } else {
883
+ factor = _this3.worldPosition.distanceTo(_this3.cameraPosition) * Math.min(1.9 * Math.tan(Math.PI * _this3.camera.fov / 360) / _this3.camera.zoom, 7);
884
+ }
885
+
886
+ handle.scale.set(1, 1, 1).multiplyScalar(factor * _this3.size / 4); // TODO: simplify helpers and consider decoupling from gizmo
887
+
888
+ if (handle.tag === 'helper') {
889
+ handle.visible = false;
890
+
891
+ if (handle.name === 'AXIS') {
892
+ handle.position.copy(_this3.worldPositionStart);
893
+ handle.visible = !!_this3.axis;
894
+
895
+ if (_this3.axis === 'X') {
896
+ _tempQuaternion.setFromEuler(_tempEuler.set(0, 0, 0));
897
+
898
+ handle.quaternion.copy(quaternion).multiply(_tempQuaternion);
899
+
900
+ if (Math.abs(_alignVector.copy(_unitX).applyQuaternion(quaternion).dot(_this3.eye)) > 0.9) {
901
+ handle.visible = false;
902
+ }
903
+ }
904
+
905
+ if (_this3.axis === 'Y') {
906
+ _tempQuaternion.setFromEuler(_tempEuler.set(0, 0, Math.PI / 2));
907
+
908
+ handle.quaternion.copy(quaternion).multiply(_tempQuaternion);
909
+
910
+ if (Math.abs(_alignVector.copy(_unitY).applyQuaternion(quaternion).dot(_this3.eye)) > 0.9) {
911
+ handle.visible = false;
912
+ }
913
+ }
914
+
915
+ if (_this3.axis === 'Z') {
916
+ _tempQuaternion.setFromEuler(_tempEuler.set(0, Math.PI / 2, 0));
917
+
918
+ handle.quaternion.copy(quaternion).multiply(_tempQuaternion);
919
+
920
+ if (Math.abs(_alignVector.copy(_unitZ).applyQuaternion(quaternion).dot(_this3.eye)) > 0.9) {
921
+ handle.visible = false;
922
+ }
923
+ }
924
+
925
+ if (_this3.axis === 'XYZE') {
926
+ _tempQuaternion.setFromEuler(_tempEuler.set(0, Math.PI / 2, 0));
927
+
928
+ _alignVector.copy(_this3.rotationAxis);
929
+
930
+ handle.quaternion.setFromRotationMatrix(_lookAtMatrix.lookAt(_zeroVector, _alignVector, _unitY));
931
+ handle.quaternion.multiply(_tempQuaternion);
932
+ handle.visible = _this3.dragging;
933
+ }
934
+
935
+ if (_this3.axis === 'E') {
936
+ handle.visible = false;
937
+ }
938
+ } else if (handle.name === 'START') {
939
+ handle.position.copy(_this3.worldPositionStart);
940
+ handle.visible = _this3.dragging;
941
+ } else if (handle.name === 'END') {
942
+ handle.position.copy(_this3.worldPosition);
943
+ handle.visible = _this3.dragging;
944
+ } else if (handle.name === 'DELTA') {
945
+ handle.position.copy(_this3.worldPositionStart);
946
+ handle.quaternion.copy(_this3.worldQuaternionStart);
947
+
948
+ _tempVector.set(1e-10, 1e-10, 1e-10).add(_this3.worldPositionStart).sub(_this3.worldPosition).multiplyScalar(-1);
949
+
950
+ _tempVector.applyQuaternion(_this3.worldQuaternionStart.clone().invert());
951
+
952
+ handle.scale.copy(_tempVector);
953
+ handle.visible = _this3.dragging;
954
+ } else {
955
+ handle.quaternion.copy(quaternion);
956
+
957
+ if (_this3.dragging) {
958
+ handle.position.copy(_this3.worldPositionStart);
959
+ } else {
960
+ handle.position.copy(_this3.worldPosition);
961
+ }
962
+
963
+ if (_this3.axis) {
964
+ handle.visible = _this3.axis.search(handle.name) !== -1;
965
+ }
966
+ } // If updating helper, skip rest of the loop
967
+
968
+
969
+ return "continue";
970
+ } // Align handles to current local or world rotation
971
+
972
+
973
+ handle.quaternion.copy(quaternion);
974
+
975
+ if (_this3.mode === 'translate' || _this3.mode === 'scale') {
976
+ // Hide translate and scale axis facing the camera
977
+ var AXIS_HIDE_TRESHOLD = 0.99;
978
+ var PLANE_HIDE_TRESHOLD = 0.2;
979
+
980
+ if (handle.name === 'X') {
981
+ if (Math.abs(_alignVector.copy(_unitX).applyQuaternion(quaternion).dot(_this3.eye)) > AXIS_HIDE_TRESHOLD) {
982
+ handle.scale.set(1e-10, 1e-10, 1e-10);
983
+ handle.visible = false;
984
+ }
985
+ }
986
+
987
+ if (handle.name === 'Y') {
988
+ if (Math.abs(_alignVector.copy(_unitY).applyQuaternion(quaternion).dot(_this3.eye)) > AXIS_HIDE_TRESHOLD) {
989
+ handle.scale.set(1e-10, 1e-10, 1e-10);
990
+ handle.visible = false;
991
+ }
992
+ }
993
+
994
+ if (handle.name === 'Z') {
995
+ if (Math.abs(_alignVector.copy(_unitZ).applyQuaternion(quaternion).dot(_this3.eye)) > AXIS_HIDE_TRESHOLD) {
996
+ handle.scale.set(1e-10, 1e-10, 1e-10);
997
+ handle.visible = false;
998
+ }
999
+ }
1000
+
1001
+ if (handle.name === 'XY') {
1002
+ if (Math.abs(_alignVector.copy(_unitZ).applyQuaternion(quaternion).dot(_this3.eye)) < PLANE_HIDE_TRESHOLD) {
1003
+ handle.scale.set(1e-10, 1e-10, 1e-10);
1004
+ handle.visible = false;
1005
+ }
1006
+ }
1007
+
1008
+ if (handle.name === 'YZ') {
1009
+ if (Math.abs(_alignVector.copy(_unitX).applyQuaternion(quaternion).dot(_this3.eye)) < PLANE_HIDE_TRESHOLD) {
1010
+ handle.scale.set(1e-10, 1e-10, 1e-10);
1011
+ handle.visible = false;
1012
+ }
1013
+ }
1014
+
1015
+ if (handle.name === 'XZ') {
1016
+ if (Math.abs(_alignVector.copy(_unitY).applyQuaternion(quaternion).dot(_this3.eye)) < PLANE_HIDE_TRESHOLD) {
1017
+ handle.scale.set(1e-10, 1e-10, 1e-10);
1018
+ handle.visible = false;
1019
+ }
1020
+ }
1021
+ } else if (_this3.mode === 'rotate') {
1022
+ // Align handles to current local or world rotation
1023
+ _tempQuaternion2.copy(quaternion);
1024
+
1025
+ _alignVector.copy(_this3.eye).applyQuaternion(_tempQuaternion.copy(quaternion).invert());
1026
+
1027
+ if (handle.name.search('E') !== -1) {
1028
+ handle.quaternion.setFromRotationMatrix(_lookAtMatrix.lookAt(_this3.eye, _zeroVector, _unitY));
1029
+ }
1030
+
1031
+ if (handle.name === 'X') {
1032
+ _tempQuaternion.setFromAxisAngle(_unitX, Math.atan2(-_alignVector.y, _alignVector.z));
1033
+
1034
+ _tempQuaternion.multiplyQuaternions(_tempQuaternion2, _tempQuaternion);
1035
+
1036
+ handle.quaternion.copy(_tempQuaternion);
1037
+ }
1038
+
1039
+ if (handle.name === 'Y') {
1040
+ _tempQuaternion.setFromAxisAngle(_unitY, Math.atan2(_alignVector.x, _alignVector.z));
1041
+
1042
+ _tempQuaternion.multiplyQuaternions(_tempQuaternion2, _tempQuaternion);
1043
+
1044
+ handle.quaternion.copy(_tempQuaternion);
1045
+ }
1046
+
1047
+ if (handle.name === 'Z') {
1048
+ _tempQuaternion.setFromAxisAngle(_unitZ, Math.atan2(_alignVector.y, _alignVector.x));
1049
+
1050
+ _tempQuaternion.multiplyQuaternions(_tempQuaternion2, _tempQuaternion);
1051
+
1052
+ handle.quaternion.copy(_tempQuaternion);
1053
+ }
1054
+ } // Hide disabled axes
1055
+
1056
+
1057
+ handle.visible = handle.visible && (handle.name.indexOf('X') === -1 || _this3.showX);
1058
+ handle.visible = handle.visible && (handle.name.indexOf('Y') === -1 || _this3.showY);
1059
+ handle.visible = handle.visible && (handle.name.indexOf('Z') === -1 || _this3.showZ);
1060
+ handle.visible = handle.visible && (handle.name.indexOf('E') === -1 || _this3.showX && _this3.showY && _this3.showZ); // highlight selected axis
1061
+
1062
+ handle.material._color = handle.material._color || handle.material.color.clone();
1063
+ handle.material._opacity = handle.material._opacity || handle.material.opacity;
1064
+ handle.material.color.copy(handle.material._color);
1065
+ handle.material.opacity = handle.material._opacity;
1066
+
1067
+ if (_this3.enabled && _this3.axis) {
1068
+ if (handle.name === _this3.axis) {
1069
+ handle.material.color.setHex(0xffff00);
1070
+ handle.material.opacity = 1.0;
1071
+ } else if (_this3.axis.split('').some(function (a) {
1072
+ return handle.name === a;
1073
+ })) {
1074
+ handle.material.color.setHex(0xffff00);
1075
+ handle.material.opacity = 1.0;
1076
+ }
1077
+ }
1078
+ };
1079
+
1080
+ for (var i = 0; i < handles.length; i++) {
1081
+ var _ret = _loop(i);
1082
+
1083
+ if (_ret === "continue") continue;
1084
+ }
1085
+
1086
+ _get(_getPrototypeOf(TransformControlsGizmo.prototype), "updateMatrixWorld", this).call(this, force);
1087
+ }
1088
+ }]);
1089
+
1090
+ return TransformControlsGizmo;
1091
+ }(_three.Object3D);
1092
+
1093
+ _exports.TransformControlsGizmo = TransformControlsGizmo;
1094
+ TransformControlsGizmo.prototype.isTransformControlsGizmo = true; //
1095
+
1096
+ var TransformControlsPlane = /*#__PURE__*/function (_Mesh) {
1097
+ _inherits(TransformControlsPlane, _Mesh);
1098
+
1099
+ var _super3 = _createSuper(TransformControlsPlane);
1100
+
1101
+ function TransformControlsPlane() {
1102
+ var _this4;
1103
+
1104
+ _classCallCheck(this, TransformControlsPlane);
1105
+
1106
+ _this4 = _super3.call(this, new _three.PlaneGeometry(100000, 100000, 2, 2), new _three.MeshBasicMaterial({
1107
+ visible: false,
1108
+ wireframe: true,
1109
+ side: _three.DoubleSide,
1110
+ transparent: true,
1111
+ opacity: 0.1,
1112
+ toneMapped: false
1113
+ }));
1114
+ _this4.type = 'TransformControlsPlane';
1115
+ return _this4;
1116
+ }
1117
+
1118
+ _createClass(TransformControlsPlane, [{
1119
+ key: "updateMatrixWorld",
1120
+ value: function updateMatrixWorld(force) {
1121
+ var space = this.space;
1122
+ this.position.copy(this.worldPosition);
1123
+ if (this.mode === 'scale') space = 'local'; // scale always oriented to local rotation
1124
+
1125
+ _v1.copy(_unitX).applyQuaternion(space === 'local' ? this.worldQuaternion : _identityQuaternion);
1126
+
1127
+ _v2.copy(_unitY).applyQuaternion(space === 'local' ? this.worldQuaternion : _identityQuaternion);
1128
+
1129
+ _v3.copy(_unitZ).applyQuaternion(space === 'local' ? this.worldQuaternion : _identityQuaternion); // Align the plane for current transform mode, axis and space.
1130
+
1131
+
1132
+ _alignVector.copy(_v2);
1133
+
1134
+ switch (this.mode) {
1135
+ case 'translate':
1136
+ case 'scale':
1137
+ switch (this.axis) {
1138
+ case 'X':
1139
+ _alignVector.copy(this.eye).cross(_v1);
1140
+
1141
+ _dirVector.copy(_v1).cross(_alignVector);
1142
+
1143
+ break;
1144
+
1145
+ case 'Y':
1146
+ _alignVector.copy(this.eye).cross(_v2);
1147
+
1148
+ _dirVector.copy(_v2).cross(_alignVector);
1149
+
1150
+ break;
1151
+
1152
+ case 'Z':
1153
+ _alignVector.copy(this.eye).cross(_v3);
1154
+
1155
+ _dirVector.copy(_v3).cross(_alignVector);
1156
+
1157
+ break;
1158
+
1159
+ case 'XY':
1160
+ _dirVector.copy(_v3);
1161
+
1162
+ break;
1163
+
1164
+ case 'YZ':
1165
+ _dirVector.copy(_v1);
1166
+
1167
+ break;
1168
+
1169
+ case 'XZ':
1170
+ _alignVector.copy(_v3);
1171
+
1172
+ _dirVector.copy(_v2);
1173
+
1174
+ break;
1175
+
1176
+ case 'XYZ':
1177
+ case 'E':
1178
+ _dirVector.set(0, 0, 0);
1179
+
1180
+ break;
1181
+ }
1182
+
1183
+ break;
1184
+
1185
+ case 'rotate':
1186
+ default:
1187
+ // special case for rotate
1188
+ _dirVector.set(0, 0, 0);
1189
+
1190
+ }
1191
+
1192
+ if (_dirVector.length() === 0) {
1193
+ // If in rotate mode, make the plane parallel to camera
1194
+ this.quaternion.copy(this.cameraQuaternion);
1195
+ } else {
1196
+ _tempMatrix.lookAt(_tempVector.set(0, 0, 0), _dirVector, _alignVector);
1197
+
1198
+ this.quaternion.setFromRotationMatrix(_tempMatrix);
1199
+ }
1200
+
1201
+ _get(_getPrototypeOf(TransformControlsPlane.prototype), "updateMatrixWorld", this).call(this, force);
1202
+ }
1203
+ }]);
1204
+
1205
+ return TransformControlsPlane;
1206
+ }(_three.Mesh);
1207
+
1208
+ _exports.TransformControlsPlane = TransformControlsPlane;
1209
+ TransformControlsPlane.prototype.isTransformControlsPlane = true;
1210
+ });