x_ite 8.8.7 → 8.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (341) hide show
  1. package/Makefile +6 -0
  2. package/build/docs/nodes.pl +434 -0
  3. package/dist/assets/components/Annotation.js +13 -13
  4. package/dist/assets/components/Annotation.min.js +1 -1
  5. package/dist/assets/components/CADGeometry.js +13 -13
  6. package/dist/assets/components/CADGeometry.min.js +1 -1
  7. package/dist/assets/components/CubeMapTexturing.js +26 -26
  8. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  9. package/dist/assets/components/DIS.js +14 -14
  10. package/dist/assets/components/DIS.min.js +1 -1
  11. package/dist/assets/components/EventUtilities.js +9 -9
  12. package/dist/assets/components/EventUtilities.min.js +1 -1
  13. package/dist/assets/components/Geometry2D.js +19 -19
  14. package/dist/assets/components/Geometry2D.min.js +1 -1
  15. package/dist/assets/components/Geospatial.js +33 -33
  16. package/dist/assets/components/Geospatial.min.js +1 -1
  17. package/dist/assets/components/HAnim.js +18 -18
  18. package/dist/assets/components/HAnim.min.js +1 -1
  19. package/dist/assets/components/KeyDeviceSensor.js +8 -8
  20. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  21. package/dist/assets/components/Layout.js +27 -27
  22. package/dist/assets/components/Layout.min.js +1 -1
  23. package/dist/assets/components/NURBS.js +24 -24
  24. package/dist/assets/components/NURBS.min.js +1 -1
  25. package/dist/assets/components/ParticleSystems.js +24 -24
  26. package/dist/assets/components/ParticleSystems.min.js +1 -1
  27. package/dist/assets/components/Picking.js +18 -18
  28. package/dist/assets/components/Picking.min.js +1 -1
  29. package/dist/assets/components/RigidBodyPhysics.js +18 -18
  30. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  31. package/dist/assets/components/Scripting.js +37 -37
  32. package/dist/assets/components/Scripting.min.js +1 -1
  33. package/dist/assets/components/Text.js +24 -24
  34. package/dist/assets/components/Text.min.js +1 -1
  35. package/dist/assets/components/TextureProjector.js +14 -14
  36. package/dist/assets/components/TextureProjector.min.js +1 -1
  37. package/dist/assets/components/Texturing3D.js +30 -30
  38. package/dist/assets/components/Texturing3D.min.js +1 -1
  39. package/dist/assets/components/VolumeRendering.js +18 -18
  40. package/dist/assets/components/VolumeRendering.min.js +1 -1
  41. package/dist/assets/components/X_ITE.js +9 -9
  42. package/dist/assets/components/X_ITE.min.js +1 -1
  43. package/dist/x_ite.css +1 -1
  44. package/dist/x_ite.js +965 -96
  45. package/dist/x_ite.min.js +1 -1
  46. package/dist/x_ite.zip +0 -0
  47. package/docs/_config.yml +2 -2
  48. package/docs/_posts/components/CADGeometry/CADAssembly.md +45 -19
  49. package/docs/_posts/components/CADGeometry/CADFace.md +44 -18
  50. package/docs/_posts/components/CADGeometry/CADLayer.md +48 -19
  51. package/docs/_posts/components/CADGeometry/CADPart.md +54 -24
  52. package/docs/_posts/components/CADGeometry/IndexedQuadSet.md +55 -26
  53. package/docs/_posts/components/CADGeometry/QuadSet.md +52 -20
  54. package/docs/_posts/components/Core/MetadataBoolean.md +29 -18
  55. package/docs/_posts/components/Core/MetadataDouble.md +31 -16
  56. package/docs/_posts/components/Core/MetadataFloat.md +31 -16
  57. package/docs/_posts/components/Core/MetadataInteger.md +31 -16
  58. package/docs/_posts/components/Core/MetadataSet.md +30 -15
  59. package/docs/_posts/components/Core/MetadataString.md +31 -16
  60. package/docs/_posts/components/Core/WorldInfo.md +21 -10
  61. package/docs/_posts/components/CubeMapTexturing/ComposedCubeMapTexture.md +30 -25
  62. package/docs/_posts/components/CubeMapTexturing/GeneratedCubeMapTexture.md +19 -10
  63. package/docs/_posts/components/CubeMapTexturing/ImageCubeMapTexture.md +22 -18
  64. package/docs/_posts/components/DIS/DISEntityManager.md +40 -15
  65. package/docs/_posts/components/DIS/DISEntityTypeMapping.md +34 -25
  66. package/docs/_posts/components/DIS/EspduTransform.md +174 -41
  67. package/docs/_posts/components/DIS/ReceiverPdu.md +77 -27
  68. package/docs/_posts/components/DIS/SignalPdu.md +82 -28
  69. package/docs/_posts/components/DIS/TransmitterPdu.md +86 -36
  70. package/docs/_posts/components/EnvironmentalEffects/Background.md +80 -39
  71. package/docs/_posts/components/EnvironmentalEffects/Fog.md +39 -18
  72. package/docs/_posts/components/EnvironmentalEffects/FogCoordinate.md +10 -6
  73. package/docs/_posts/components/EnvironmentalEffects/LocalFog.md +21 -14
  74. package/docs/_posts/components/EnvironmentalEffects/TextureBackground.md +83 -31
  75. package/docs/_posts/components/EnvironmentalSensor/ProximitySensor.md +36 -8
  76. package/docs/_posts/components/EnvironmentalSensor/TransformSensor.md +31 -7
  77. package/docs/_posts/components/EnvironmentalSensor/VisibilitySensor.md +23 -7
  78. package/docs/_posts/components/EventUtilities/BooleanFilter.md +23 -10
  79. package/docs/_posts/components/EventUtilities/BooleanSequencer.md +46 -17
  80. package/docs/_posts/components/EventUtilities/BooleanToggle.md +29 -8
  81. package/docs/_posts/components/EventUtilities/BooleanTrigger.md +24 -7
  82. package/docs/_posts/components/EventUtilities/IntegerSequencer.md +46 -17
  83. package/docs/_posts/components/EventUtilities/IntegerTrigger.md +34 -9
  84. package/docs/_posts/components/EventUtilities/TimeTrigger.md +30 -9
  85. package/docs/_posts/components/Followers/ColorChaser.md +35 -11
  86. package/docs/_posts/components/Followers/ColorDamper.md +32 -12
  87. package/docs/_posts/components/Followers/CoordinateChaser.md +33 -9
  88. package/docs/_posts/components/Followers/CoordinateDamper.md +30 -10
  89. package/docs/_posts/components/Followers/OrientationChaser.md +34 -10
  90. package/docs/_posts/components/Followers/OrientationDamper.md +31 -11
  91. package/docs/_posts/components/Followers/PositionChaser.md +33 -9
  92. package/docs/_posts/components/Followers/PositionChaser2D.md +33 -9
  93. package/docs/_posts/components/Followers/PositionDamper.md +30 -10
  94. package/docs/_posts/components/Followers/PositionDamper2D.md +30 -10
  95. package/docs/_posts/components/Followers/ScalarChaser.md +33 -9
  96. package/docs/_posts/components/Followers/ScalarDamper.md +30 -10
  97. package/docs/_posts/components/Followers/TexCoordChaser2D.md +33 -9
  98. package/docs/_posts/components/Followers/TexCoordDamper2D.md +30 -10
  99. package/docs/_posts/components/Geometry2D/Arc2D.md +39 -14
  100. package/docs/_posts/components/Geometry2D/ArcClose2D.md +43 -19
  101. package/docs/_posts/components/Geometry2D/Circle2D.md +21 -10
  102. package/docs/_posts/components/Geometry2D/Disk2D.md +32 -14
  103. package/docs/_posts/components/Geometry2D/Polyline2D.md +24 -9
  104. package/docs/_posts/components/Geometry2D/Polypoint2D.md +16 -8
  105. package/docs/_posts/components/Geometry2D/Rectangle2D.md +23 -12
  106. package/docs/_posts/components/Geometry2D/TriangleSet2D.md +23 -12
  107. package/docs/_posts/components/Geometry3D/Box.md +26 -13
  108. package/docs/_posts/components/Geometry3D/Cone.md +30 -22
  109. package/docs/_posts/components/Geometry3D/Cylinder.md +30 -26
  110. package/docs/_posts/components/Geometry3D/ElevationGrid.md +73 -29
  111. package/docs/_posts/components/Geometry3D/Extrusion.md +100 -48
  112. package/docs/_posts/components/Geometry3D/IndexedFaceSet.md +92 -38
  113. package/docs/_posts/components/Geometry3D/Sphere.md +25 -13
  114. package/docs/_posts/components/Geospatial/GeoCoordinate.md +30 -14
  115. package/docs/_posts/components/Geospatial/GeoElevationGrid.md +82 -37
  116. package/docs/_posts/components/Geospatial/GeoLOD.md +66 -27
  117. package/docs/_posts/components/Geospatial/GeoLocation.md +64 -26
  118. package/docs/_posts/components/Geospatial/GeoMetadata.md +28 -22
  119. package/docs/_posts/components/Geospatial/GeoOrigin.md +34 -19
  120. package/docs/_posts/components/Geospatial/GeoPositionInterpolator.md +64 -18
  121. package/docs/_posts/components/Geospatial/GeoProximitySensor.md +67 -18
  122. package/docs/_posts/components/Geospatial/GeoTouchSensor.md +63 -18
  123. package/docs/_posts/components/Geospatial/GeoTransform.md +72 -28
  124. package/docs/_posts/components/Geospatial/GeoViewpoint.md +79 -40
  125. package/docs/_posts/components/Grouping/Group.md +32 -16
  126. package/docs/_posts/components/Grouping/StaticGroup.md +37 -16
  127. package/docs/_posts/components/Grouping/Switch.md +39 -20
  128. package/docs/_posts/components/Grouping/Transform.md +45 -28
  129. package/docs/_posts/components/HAnim/HAnimDisplacer.md +38 -27
  130. package/docs/_posts/components/HAnim/HAnimHumanoid.md +197 -38
  131. package/docs/_posts/components/HAnim/HAnimJoint.md +104 -38
  132. package/docs/_posts/components/HAnim/HAnimMotion.md +117 -7
  133. package/docs/_posts/components/HAnim/HAnimSegment.md +72 -32
  134. package/docs/_posts/components/HAnim/HAnimSite.md +75 -32
  135. package/docs/_posts/components/Interpolation/ColorInterpolator.md +41 -11
  136. package/docs/_posts/components/Interpolation/CoordinateInterpolator.md +39 -13
  137. package/docs/_posts/components/Interpolation/CoordinateInterpolator2D.md +43 -14
  138. package/docs/_posts/components/Interpolation/EaseInEaseOut.md +36 -12
  139. package/docs/_posts/components/Interpolation/NormalInterpolator.md +40 -10
  140. package/docs/_posts/components/Interpolation/OrientationInterpolator.md +40 -10
  141. package/docs/_posts/components/Interpolation/PositionInterpolator.md +40 -10
  142. package/docs/_posts/components/Interpolation/PositionInterpolator2D.md +43 -14
  143. package/docs/_posts/components/Interpolation/ScalarInterpolator.md +39 -13
  144. package/docs/_posts/components/Interpolation/SplinePositionInterpolator.md +41 -16
  145. package/docs/_posts/components/Interpolation/SplinePositionInterpolator2D.md +41 -16
  146. package/docs/_posts/components/Interpolation/SplineScalarInterpolator.md +40 -24
  147. package/docs/_posts/components/Interpolation/SquadOrientationInterpolator.md +35 -11
  148. package/docs/_posts/components/KeyDeviceSensor/KeySensor.md +51 -9
  149. package/docs/_posts/components/KeyDeviceSensor/StringSensor.md +31 -9
  150. package/docs/_posts/components/Layering/Layer.md +27 -14
  151. package/docs/_posts/components/Layering/LayerSet.md +19 -13
  152. package/docs/_posts/components/Layering/Viewport.md +31 -15
  153. package/docs/_posts/components/Layout/Layout.md +27 -16
  154. package/docs/_posts/components/Layout/LayoutGroup.md +34 -18
  155. package/docs/_posts/components/Layout/LayoutLayer.md +28 -15
  156. package/docs/_posts/components/Layout/ScreenFontStyle.md +72 -45
  157. package/docs/_posts/components/Layout/ScreenGroup.md +32 -16
  158. package/docs/_posts/components/Lighting/DirectionalLight.md +19 -11
  159. package/docs/_posts/components/Lighting/EnvironmentLight.md +2 -6
  160. package/docs/_posts/components/Lighting/PointLight.md +23 -11
  161. package/docs/_posts/components/Lighting/SpotLight.md +32 -19
  162. package/docs/_posts/components/NURBS/Contour2D.md +17 -9
  163. package/docs/_posts/components/NURBS/ContourPolyline2D.md +10 -6
  164. package/docs/_posts/components/NURBS/CoordinateDouble.md +13 -9
  165. package/docs/_posts/components/NURBS/NurbsCurve.md +15 -11
  166. package/docs/_posts/components/NURBS/NurbsCurve2D.md +14 -10
  167. package/docs/_posts/components/NURBS/NurbsOrientationInterpolator.md +28 -12
  168. package/docs/_posts/components/NURBS/NurbsPatchSurface.md +19 -13
  169. package/docs/_posts/components/NURBS/NurbsPositionInterpolator.md +27 -11
  170. package/docs/_posts/components/NURBS/NurbsSet.md +48 -14
  171. package/docs/_posts/components/NURBS/NurbsSurfaceInterpolator.md +31 -11
  172. package/docs/_posts/components/NURBS/NurbsSweptSurface.md +31 -14
  173. package/docs/_posts/components/NURBS/NurbsSwungSurface.md +25 -14
  174. package/docs/_posts/components/NURBS/NurbsTextureCoordinate.md +11 -7
  175. package/docs/_posts/components/NURBS/NurbsTrimmedSurface.md +26 -16
  176. package/docs/_posts/components/Navigation/Billboard.md +33 -17
  177. package/docs/_posts/components/Navigation/Collision.md +59 -22
  178. package/docs/_posts/components/Navigation/LOD.md +53 -23
  179. package/docs/_posts/components/Navigation/NavigationInfo.md +68 -25
  180. package/docs/_posts/components/Navigation/OrthoViewpoint.md +80 -37
  181. package/docs/_posts/components/Navigation/Viewpoint.md +86 -39
  182. package/docs/_posts/components/Navigation/ViewpointGroup.md +28 -17
  183. package/docs/_posts/components/Networking/Anchor.md +54 -56
  184. package/docs/_posts/components/Networking/Inline.md +42 -29
  185. package/docs/_posts/components/Networking/LoadSensor.md +41 -9
  186. package/docs/_posts/components/ParticleSystems/BoundedPhysicsModel.md +16 -8
  187. package/docs/_posts/components/ParticleSystems/ConeEmitter.md +25 -10
  188. package/docs/_posts/components/ParticleSystems/ExplosionEmitter.md +18 -11
  189. package/docs/_posts/components/ParticleSystems/ForcePhysicsModel.md +15 -8
  190. package/docs/_posts/components/ParticleSystems/ParticleSystem.md +92 -46
  191. package/docs/_posts/components/ParticleSystems/PointEmitter.md +19 -12
  192. package/docs/_posts/components/ParticleSystems/PolylineEmitter.md +23 -15
  193. package/docs/_posts/components/ParticleSystems/SurfaceEmitter.md +21 -14
  194. package/docs/_posts/components/ParticleSystems/VolumeEmitter.md +25 -18
  195. package/docs/_posts/components/ParticleSystems/WindPhysicsModel.md +11 -7
  196. package/docs/_posts/components/Picking/LinePickSensor.md +37 -15
  197. package/docs/_posts/components/Picking/PickableGroup.md +40 -22
  198. package/docs/_posts/components/Picking/PointPickSensor.md +29 -12
  199. package/docs/_posts/components/Picking/PrimitivePickSensor.md +25 -17
  200. package/docs/_posts/components/Picking/VolumePickSensor.md +25 -12
  201. package/docs/_posts/components/PointingDeviceSensor/CylinderSensor.md +43 -18
  202. package/docs/_posts/components/PointingDeviceSensor/PlaneSensor.md +40 -17
  203. package/docs/_posts/components/PointingDeviceSensor/SphereSensor.md +35 -13
  204. package/docs/_posts/components/PointingDeviceSensor/TouchSensor.md +48 -14
  205. package/docs/_posts/components/Rendering/ClipPlane.md +20 -15
  206. package/docs/_posts/components/Rendering/Color.md +14 -14
  207. package/docs/_posts/components/Rendering/ColorRGBA.md +13 -9
  208. package/docs/_posts/components/Rendering/Coordinate.md +11 -7
  209. package/docs/_posts/components/Rendering/IndexedLineSet.md +58 -24
  210. package/docs/_posts/components/Rendering/IndexedTriangleFanSet.md +44 -23
  211. package/docs/_posts/components/Rendering/IndexedTriangleSet.md +45 -24
  212. package/docs/_posts/components/Rendering/IndexedTriangleStripSet.md +45 -20
  213. package/docs/_posts/components/Rendering/LineSet.md +26 -14
  214. package/docs/_posts/components/Rendering/Normal.md +28 -6
  215. package/docs/_posts/components/Rendering/PointSet.md +24 -11
  216. package/docs/_posts/components/Rendering/TriangleFanSet.md +44 -19
  217. package/docs/_posts/components/Rendering/TriangleSet.md +44 -19
  218. package/docs/_posts/components/Rendering/TriangleStripSet.md +45 -20
  219. package/docs/_posts/components/RigidBodyPhysics/BallJoint.md +22 -10
  220. package/docs/_posts/components/RigidBodyPhysics/CollidableOffset.md +37 -14
  221. package/docs/_posts/components/RigidBodyPhysics/CollidableShape.md +34 -16
  222. package/docs/_posts/components/RigidBodyPhysics/CollisionCollection.md +17 -12
  223. package/docs/_posts/components/RigidBodyPhysics/CollisionSensor.md +21 -12
  224. package/docs/_posts/components/RigidBodyPhysics/CollisionSpace.md +31 -12
  225. package/docs/_posts/components/RigidBodyPhysics/Contact.md +19 -15
  226. package/docs/_posts/components/RigidBodyPhysics/DoubleAxisHingeJoint.md +33 -27
  227. package/docs/_posts/components/RigidBodyPhysics/MotorJoint.md +63 -11
  228. package/docs/_posts/components/RigidBodyPhysics/RigidBody.md +22 -12
  229. package/docs/_posts/components/RigidBodyPhysics/RigidBodyCollection.md +30 -14
  230. package/docs/_posts/components/RigidBodyPhysics/SingleAxisHingeJoint.md +26 -14
  231. package/docs/_posts/components/RigidBodyPhysics/SliderJoint.md +24 -12
  232. package/docs/_posts/components/RigidBodyPhysics/UniversalJoint.md +23 -15
  233. package/docs/_posts/components/Scripting/Script.md +43 -27
  234. package/docs/_posts/components/Shaders/ComposedShader.md +30 -17
  235. package/docs/_posts/components/Shaders/FloatVertexAttribute.md +18 -9
  236. package/docs/_posts/components/Shaders/Matrix3VertexAttribute.md +17 -8
  237. package/docs/_posts/components/Shaders/Matrix4VertexAttribute.md +17 -8
  238. package/docs/_posts/components/Shaders/PackagedShader.md +36 -30
  239. package/docs/_posts/components/Shaders/ProgramShader.md +35 -15
  240. package/docs/_posts/components/Shaders/ShaderPart.md +27 -18
  241. package/docs/_posts/components/Shaders/ShaderProgram.md +28 -17
  242. package/docs/_posts/components/Shape/AcousticProperties.md +34 -6
  243. package/docs/_posts/components/Shape/Appearance.md +29 -22
  244. package/docs/_posts/components/Shape/FillProperties.md +19 -12
  245. package/docs/_posts/components/Shape/LineProperties.md +18 -10
  246. package/docs/_posts/components/Shape/Material.md +64 -38
  247. package/docs/_posts/components/Shape/PhysicalMaterial.md +49 -25
  248. package/docs/_posts/components/Shape/PointProperties.md +21 -14
  249. package/docs/_posts/components/Shape/Shape.md +35 -17
  250. package/docs/_posts/components/Shape/TwoSidedMaterial.md +35 -36
  251. package/docs/_posts/components/Shape/UnlitMaterial.md +29 -17
  252. package/docs/_posts/components/Sound/Analyser.md +133 -4
  253. package/docs/_posts/components/Sound/AudioClip.md +64 -30
  254. package/docs/_posts/components/Sound/AudioDestination.md +76 -4
  255. package/docs/_posts/components/Sound/BiquadFilter.md +143 -4
  256. package/docs/_posts/components/Sound/BufferAudioSource.md +165 -13
  257. package/docs/_posts/components/Sound/ChannelMerger.md +62 -4
  258. package/docs/_posts/components/Sound/ChannelSelector.md +64 -4
  259. package/docs/_posts/components/Sound/ChannelSplitter.md +68 -4
  260. package/docs/_posts/components/Sound/Convolver.md +124 -4
  261. package/docs/_posts/components/Sound/Delay.md +119 -4
  262. package/docs/_posts/components/Sound/DynamicsCompressor.md +127 -4
  263. package/docs/_posts/components/Sound/Gain.md +115 -4
  264. package/docs/_posts/components/Sound/ListenerPointSource.md +109 -4
  265. package/docs/_posts/components/Sound/MicrophoneSource.md +91 -4
  266. package/docs/_posts/components/Sound/OscillatorSource.md +95 -4
  267. package/docs/_posts/components/Sound/PeriodicWave.md +43 -5
  268. package/docs/_posts/components/Sound/Sound.md +53 -20
  269. package/docs/_posts/components/Sound/SpatialSound.md +120 -4
  270. package/docs/_posts/components/Sound/StreamAudioDestination.md +80 -4
  271. package/docs/_posts/components/Sound/StreamAudioSource.md +91 -4
  272. package/docs/_posts/components/Sound/WaveShaper.md +123 -4
  273. package/docs/_posts/components/Text/FontStyle.md +73 -47
  274. package/docs/_posts/components/Text/Text.md +48 -26
  275. package/docs/_posts/components/TextureProjector/TextureProjector.md +55 -6
  276. package/docs/_posts/components/TextureProjector/TextureProjectorParallel.md +56 -6
  277. package/docs/_posts/components/Texturing/ImageTexture.md +28 -20
  278. package/docs/_posts/components/Texturing/MovieTexture.md +69 -38
  279. package/docs/_posts/components/Texturing/MultiTexture.md +47 -19
  280. package/docs/_posts/components/Texturing/MultiTextureCoordinate.md +27 -10
  281. package/docs/_posts/components/Texturing/MultiTextureTransform.md +32 -10
  282. package/docs/_posts/components/Texturing/PixelTexture.md +34 -14
  283. package/docs/_posts/components/Texturing/TextureCoordinate.md +20 -10
  284. package/docs/_posts/components/Texturing/TextureCoordinateGenerator.md +22 -12
  285. package/docs/_posts/components/Texturing/TextureProperties.md +44 -19
  286. package/docs/_posts/components/Texturing/TextureTransform.md +17 -8
  287. package/docs/_posts/components/Texturing3D/ComposedTexture3D.md +21 -13
  288. package/docs/_posts/components/Texturing3D/ImageTexture3D.md +32 -23
  289. package/docs/_posts/components/Texturing3D/ImageTextureAtlas.md +22 -16
  290. package/docs/_posts/components/Texturing3D/PixelTexture3D.md +25 -13
  291. package/docs/_posts/components/Texturing3D/TextureCoordinate3D.md +22 -10
  292. package/docs/_posts/components/Texturing3D/TextureCoordinate4D.md +21 -9
  293. package/docs/_posts/components/Texturing3D/TextureTransform3D.md +17 -8
  294. package/docs/_posts/components/Texturing3D/TextureTransformMatrix3D.md +20 -10
  295. package/docs/_posts/components/Time/TimeSensor.md +66 -23
  296. package/docs/_posts/components/VolumeRendering/BlendedVolumeStyle.md +36 -15
  297. package/docs/_posts/components/VolumeRendering/BoundaryEnhancementVolumeStyle.md +15 -5
  298. package/docs/_posts/components/VolumeRendering/CartoonVolumeStyle.md +20 -17
  299. package/docs/_posts/components/VolumeRendering/ComposedVolumeStyle.md +15 -7
  300. package/docs/_posts/components/VolumeRendering/EdgeEnhancementVolumeStyle.md +16 -8
  301. package/docs/_posts/components/VolumeRendering/IsoSurfaceVolumeData.md +43 -21
  302. package/docs/_posts/components/VolumeRendering/OpacityMapVolumeStyle.md +16 -8
  303. package/docs/_posts/components/VolumeRendering/ProjectionVolumeStyle.md +17 -7
  304. package/docs/_posts/components/VolumeRendering/SegmentedVolumeData.md +50 -17
  305. package/docs/_posts/components/VolumeRendering/ShadedVolumeStyle.md +18 -10
  306. package/docs/_posts/components/VolumeRendering/SilhouetteEnhancementVolumeStyle.md +16 -8
  307. package/docs/_posts/components/VolumeRendering/ToneMappedVolumeStyle.md +20 -11
  308. package/docs/_posts/components/VolumeRendering/VolumeData.md +32 -15
  309. package/docs/_posts/components/X_ITE/BlendMode.md +9 -2
  310. package/docs/_posts/getting-started.md +1 -0
  311. package/docs/_posts/laboratory/x3d-file-converter.md +1 -1
  312. package/package.json +1 -1
  313. package/src/x_ite/Browser/Core/X3DCoreContext.js +10 -3
  314. package/src/x_ite/Browser/DOMIntegration.js +13 -8
  315. package/src/x_ite/Browser/VERSION.js +1 -1
  316. package/src/x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture.js +1 -1
  317. package/src/x_ite/Components/DIS/DISEntityManager.js +1 -1
  318. package/src/x_ite/Components/Grouping/Switch.js +1 -1
  319. package/src/x_ite/Components/Layering/X3DLayerNode.js +1 -1
  320. package/src/x_ite/Components/Lighting/DirectionalLight.js +1 -1
  321. package/src/x_ite/Components/Navigation/Collision.js +1 -1
  322. package/src/x_ite/Components/Navigation/LOD.js +1 -1
  323. package/src/x_ite/Components/Navigation/X3DViewpointNode.js +1 -1
  324. package/src/x_ite/Components/Networking/LoadSensor.js +1 -1
  325. package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +1 -1
  326. package/src/x_ite/Components/Shape/AcousticProperties.js +1 -1
  327. package/src/x_ite/Components/Shape/Appearance.js +1 -1
  328. package/src/x_ite/Components/Shape/Material.js +1 -1
  329. package/src/x_ite/Components/Shape/TwoSidedMaterial.js +1 -1
  330. package/src/x_ite/Components/Sound/PeriodicWave.js +1 -1
  331. package/src/x_ite/Components/Texturing/TextureProperties.js +1 -1
  332. package/src/x_ite/Fields/ArrayFields.js +2 -2
  333. package/src/x_ite/Fields/SFColor.js +1 -1
  334. package/src/x_ite/Fields/SFMatrixPrototypeTemplate.js +1 -1
  335. package/src/x_ite/Fields/SFRotation.js +3 -3
  336. package/src/x_ite/Fields/SFVecPrototypeTemplate.js +1 -1
  337. package/src/x_ite/Parser/GoldenGate.js +16 -5
  338. package/src/x_ite/Parser/PLYAParser.js +615 -0
  339. package/src/x_ite/Parser/PLYBParser.js +222 -0
  340. package/src/x_ite/Parser/STLAParser.js +0 -1
  341. /package/build/{bin → docs}/components.js +0 -0
package/dist/x_ite.js CHANGED
@@ -1,4 +1,4 @@
1
- /* X_ITE v8.8.7 */(function webpackUniversalModuleDefinition(root, factory) {
1
+ /* X_ITE v8.9.0 */(function webpackUniversalModuleDefinition(root, factory) {
2
2
  if(typeof exports === 'object' && typeof module === 'object')
3
3
  module.exports = factory();
4
4
  else if(typeof define === 'function' && define.amd)
@@ -11,11 +11,11 @@
11
11
  return /******/ (() => { // webpackBootstrap
12
12
  /******/ var __webpack_modules__ = ({
13
13
 
14
- /***/ 504:
14
+ /***/ 63:
15
15
  /***/ (function(module, exports, __webpack_require__) {
16
16
 
17
17
  "use strict";
18
- /* provided dependency */ var jQuery = __webpack_require__(834);
18
+ /* provided dependency */ var jQuery = __webpack_require__(109);
19
19
  var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;
20
20
 
21
21
  /**
@@ -387,10 +387,10 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;
387
387
 
388
388
  /***/ }),
389
389
 
390
- /***/ 692:
390
+ /***/ 418:
391
391
  /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
392
392
 
393
- /* provided dependency */ var jQuery = __webpack_require__(834);
393
+ /* provided dependency */ var jQuery = __webpack_require__(109);
394
394
  /**
395
395
  * @preserve jquery.fullscreen 1.1.5
396
396
  * https://github.com/code-lts/jquery-fullscreen-plugin
@@ -586,7 +586,7 @@ installFullScreenHandlers();
586
586
 
587
587
  /***/ }),
588
588
 
589
- /***/ 789:
589
+ /***/ 90:
590
590
  /***/ ((module, exports, __webpack_require__) => {
591
591
 
592
592
  var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
@@ -600,7 +600,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
600
600
  (function (factory) {
601
601
  if ( true ) {
602
602
  // AMD. Register as an anonymous module.
603
- !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(834)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
603
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(109)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
604
604
  __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
605
605
  (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
606
606
  __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
@@ -811,7 +811,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
811
811
 
812
812
  /***/ }),
813
813
 
814
- /***/ 834:
814
+ /***/ 109:
815
815
  /***/ (function(module, exports) {
816
816
 
817
817
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
@@ -11523,7 +11523,7 @@ return jQuery;
11523
11523
 
11524
11524
  /***/ }),
11525
11525
 
11526
- /***/ 492:
11526
+ /***/ 207:
11527
11527
  /***/ ((module) => {
11528
11528
 
11529
11529
  /**
@@ -16302,7 +16302,7 @@ if (true) {
16302
16302
 
16303
16303
  /***/ }),
16304
16304
 
16305
- /***/ 660:
16305
+ /***/ 166:
16306
16306
  /***/ (function(__unused_webpack_module, exports) {
16307
16307
 
16308
16308
 
@@ -19547,7 +19547,7 @@ if (true) {
19547
19547
 
19548
19548
  /***/ }),
19549
19549
 
19550
- /***/ 1:
19550
+ /***/ 842:
19551
19551
  /***/ (function(module, exports) {
19552
19552
 
19553
19553
  var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*
@@ -24047,7 +24047,7 @@ Object .assign (Object .setPrototypeOf (SFColor .prototype, Base_X3DField .proto
24047
24047
  for (let i = 0; i < last; ++ i)
24048
24048
  {
24049
24049
  generator .string += generator .FloatFormat (value [i]);
24050
- generator .string += generator .TidySpace ();
24050
+ generator .string += generator .Space ();
24051
24051
  }
24052
24052
 
24053
24053
  generator .string += generator .FloatFormat (value [last]);
@@ -25031,7 +25031,7 @@ function SFMatrixPrototypeTemplate (Constructor, TypeName, Matrix, SFVec, double
25031
25031
  for (let i = 0; i < last; ++ i)
25032
25032
  {
25033
25033
  generator .string += generator [_formatter] (value [i]);
25034
- generator .string += generator .TidySpace ();
25034
+ generator .string += generator .Space ();
25035
25035
  }
25036
25036
 
25037
25037
  generator .string += generator [_formatter] (value [last]);
@@ -25236,7 +25236,7 @@ function SFVecPrototypeTemplate (Constructor, TypeName, Vector, double)
25236
25236
  for (let i = 0; i < last; ++ i)
25237
25237
  {
25238
25238
  generator .string += generator [_formatter] (generator .ToUnit (category, value [i]));
25239
- generator .string += generator .TidySpace ();
25239
+ generator .string += generator .Space ();
25240
25240
  }
25241
25241
 
25242
25242
  generator .string += generator [_formatter] (generator .ToUnit (category, value [last]));
@@ -30305,11 +30305,11 @@ Object .assign (Object .setPrototypeOf (SFRotation .prototype, Base_X3DField .pr
30305
30305
  const { x, y, z, angle } = this .getValue ();
30306
30306
 
30307
30307
  generator .string += generator .DoubleFormat (x);
30308
- generator .string += generator .TidySpace ();
30308
+ generator .string += generator .Space ();
30309
30309
  generator .string += generator .DoubleFormat (y);
30310
- generator .string += generator .TidySpace ();
30310
+ generator .string += generator .Space ();
30311
30311
  generator .string += generator .DoubleFormat (z);
30312
- generator .string += generator .TidySpace ();
30312
+ generator .string += generator .Space ();
30313
30313
  generator .string += generator .DoubleFormat (generator .ToUnit ("angle", angle));
30314
30314
  },
30315
30315
  toVRMLStream (generator)
@@ -32661,7 +32661,7 @@ Object .assign (Object .setPrototypeOf (MFNode .prototype, Base_X3DObjectArrayFi
32661
32661
  {
32662
32662
  generator .string += generator .Indent ();
32663
32663
  array [i] .toStream (generator);
32664
- generator .string += generator .TidyBreak ();
32664
+ generator .string += generator .Break ();
32665
32665
  }
32666
32666
 
32667
32667
  generator .DecIndent ();
@@ -32709,7 +32709,7 @@ Object .assign (Object .setPrototypeOf (MFNode .prototype, Base_X3DObjectArrayFi
32709
32709
  {
32710
32710
  generator .string += generator .Indent ();
32711
32711
  element .toVRMLStream (generator);
32712
- generator .string += generator .TidyBreak ();
32712
+ generator .string += generator .Break ();
32713
32713
  }
32714
32714
 
32715
32715
  generator .DecIndent ();
@@ -34234,7 +34234,7 @@ x_ite_Namespace .set ("x_ite/Base/X3DBaseNode", X3DBaseNode_default_);
34234
34234
  *
34235
34235
  ******************************************************************************/
34236
34236
 
34237
- const VERSION_default_ = "8.8.7";
34237
+ const VERSION_default_ = "8.9.0";
34238
34238
  ;
34239
34239
 
34240
34240
  x_ite_Namespace .set ("x_ite/Browser/VERSION", VERSION_default_);
@@ -38519,7 +38519,7 @@ const X3DUrlObject_default_ = X3DUrlObject;
38519
38519
  x_ite_Namespace .set ("x_ite/Components/Networking/X3DUrlObject", X3DUrlObject_default_);
38520
38520
  /* harmony default export */ const Networking_X3DUrlObject = (X3DUrlObject_default_);
38521
38521
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/X3DParser.js
38522
- /* provided dependency */ var $ = __webpack_require__(834);
38522
+ /* provided dependency */ var $ = __webpack_require__(109);
38523
38523
  /*******************************************************************************
38524
38524
  *
38525
38525
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -38767,7 +38767,7 @@ const Expressions_default_ = Expressions;
38767
38767
  x_ite_Namespace .set ("x_ite/Parser/Expressions", Expressions_default_);
38768
38768
  /* harmony default export */ const Parser_Expressions = (Expressions_default_);
38769
38769
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/VRMLParser.js
38770
- /* provided dependency */ var VRMLParser_$ = __webpack_require__(834);
38770
+ /* provided dependency */ var VRMLParser_$ = __webpack_require__(109);
38771
38771
  /*******************************************************************************
38772
38772
  *
38773
38773
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -41319,7 +41319,7 @@ const VRMLParser_default_ = VRMLParser;
41319
41319
  x_ite_Namespace .set ("x_ite/Parser/VRMLParser", VRMLParser_default_);
41320
41320
  /* harmony default export */ const Parser_VRMLParser = (VRMLParser_default_);
41321
41321
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/XMLParser.js
41322
- /* provided dependency */ var XMLParser_$ = __webpack_require__(834);
41322
+ /* provided dependency */ var XMLParser_$ = __webpack_require__(109);
41323
41323
  /*******************************************************************************
41324
41324
  *
41325
41325
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -43291,7 +43291,7 @@ const URLs_default_ = URLs;
43291
43291
  x_ite_Namespace .set ("x_ite/Browser/Networking/URLs", URLs_default_);
43292
43292
  /* harmony default export */ const Networking_URLs = (URLs_default_);
43293
43293
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/GLTF2Parser.js
43294
- /* provided dependency */ var GLTF2Parser_$ = __webpack_require__(834);
43294
+ /* provided dependency */ var GLTF2Parser_$ = __webpack_require__(109);
43295
43295
  /*******************************************************************************
43296
43296
  *
43297
43297
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -45756,7 +45756,7 @@ const GLTF2Parser_default_ = GLTF2Parser;
45756
45756
  x_ite_Namespace .set ("x_ite/Parser/GLTF2Parser", GLTF2Parser_default_);
45757
45757
  /* harmony default export */ const Parser_GLTF2Parser = (GLTF2Parser_default_);
45758
45758
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/GLB2Parser.js
45759
- /* provided dependency */ var GLB2Parser_$ = __webpack_require__(834);
45759
+ /* provided dependency */ var GLB2Parser_$ = __webpack_require__(109);
45760
45760
  /*******************************************************************************
45761
45761
  *
45762
45762
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -45908,7 +45908,7 @@ const GLB2Parser_default_ = GLB2Parser;
45908
45908
  x_ite_Namespace .set ("x_ite/Parser/GLB2Parser", GLB2Parser_default_);
45909
45909
  /* harmony default export */ const Parser_GLB2Parser = (GLB2Parser_default_);
45910
45910
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/OBJParser.js
45911
- /* provided dependency */ var OBJParser_$ = __webpack_require__(834);
45911
+ /* provided dependency */ var OBJParser_$ = __webpack_require__(109);
45912
45912
  /*******************************************************************************
45913
45913
  *
45914
45914
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -47056,7 +47056,6 @@ x_ite_Namespace .set ("x_ite/Parser/OBJParser", OBJParser_default_);
47056
47056
 
47057
47057
 
47058
47058
 
47059
-
47060
47059
  // http://paulbourke.net/dataformats/stl/
47061
47060
  // https://people.sc.fsu.edu/~jburkardt/data/obj/obj.html
47062
47061
 
@@ -47547,6 +47546,853 @@ const STLBParser_default_ = STLBParser;
47547
47546
 
47548
47547
  x_ite_Namespace .set ("x_ite/Parser/STLBParser", STLBParser_default_);
47549
47548
  /* harmony default export */ const Parser_STLBParser = (STLBParser_default_);
47549
+ ;// CONCATENATED MODULE: ./src/x_ite/Parser/PLYAParser.js
47550
+ /*******************************************************************************
47551
+ *
47552
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
47553
+ *
47554
+ * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
47555
+ *
47556
+ * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
47557
+ *
47558
+ * The copyright notice above does not evidence any actual of intended
47559
+ * publication of such source code, and is an unpublished work by create3000.
47560
+ * This material contains CONFIDENTIAL INFORMATION that is the property of
47561
+ * create3000.
47562
+ *
47563
+ * No permission is granted to copy, distribute, or create derivative works from
47564
+ * the contents of this software, in whole or in part, without the prior written
47565
+ * permission of create3000.
47566
+ *
47567
+ * NON-MILITARY USE ONLY
47568
+ *
47569
+ * All create3000 software are effectively free software with a non-military use
47570
+ * restriction. It is free. Well commented source is provided. You may reuse the
47571
+ * source in any way you please with the exception anything that uses it must be
47572
+ * marked to indicate is contains 'non-military use only' components.
47573
+ *
47574
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
47575
+ *
47576
+ * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
47577
+ *
47578
+ * This file is part of the X_ITE Project.
47579
+ *
47580
+ * X_ITE is free software: you can redistribute it and/or modify it under the
47581
+ * terms of the GNU General Public License version 3 only, as published by the
47582
+ * Free Software Foundation.
47583
+ *
47584
+ * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
47585
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
47586
+ * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
47587
+ * details (a copy is included in the LICENSE file that accompanied this code).
47588
+ *
47589
+ * You should have received a copy of the GNU General Public License version 3
47590
+ * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
47591
+ * copy of the GPLv3 License.
47592
+ *
47593
+ * For Silvio, Joy and Adi.
47594
+ *
47595
+ ******************************************************************************/
47596
+
47597
+
47598
+
47599
+
47600
+ /*
47601
+ * Grammar
47602
+ */
47603
+
47604
+ // Lexical elements
47605
+ const PLYAParser_Grammar = Parser_Expressions ({
47606
+ // General
47607
+ whitespaces: /[\x20\n\t\r]+/gy,
47608
+ whitespacesNoLineTerminator: /[\x20\t]+/gy,
47609
+ untilEndOfLine: /([^\r\n]+)/gy,
47610
+ line: /.*?\r?\n/gy,
47611
+
47612
+ // Keywords
47613
+ ply: /ply/gy,
47614
+ format: /format ascii 1.0/gy,
47615
+ comment: /\bcomment\b/gy,
47616
+ element: /\belement\b/gy,
47617
+ elementName: /\b(\S+)\b/gy,
47618
+ property: /\bproperty\b/gy,
47619
+ propertyList: /\blist\b/gy,
47620
+ propertyType: /\b(char|uchar|short|ushort|int|uint|float|double|int8|uint8|int16|uint16|int32|uint32|float32|float64)\b/gy,
47621
+ propertyName: /\b(\S+)\b/gy,
47622
+ endHeader: /\bend_header\b/gy,
47623
+
47624
+ double: /([+-]?(?:(?:(?:\d*\.\d+)|(?:\d+(?:\.)?))(?:[eE][+-]?\d+)?))/gy,
47625
+ int32: /((?:0[xX][\da-fA-F]+)|(?:[+-]?\d+))/gy,
47626
+ });
47627
+
47628
+ /*
47629
+ * Parser
47630
+ */
47631
+
47632
+ function PLYAParser (scene)
47633
+ {
47634
+ Parser_X3DParser .call (this, scene);
47635
+
47636
+ this .comments = [ ];
47637
+ this .attrib = [ ];
47638
+
47639
+ this .typeMapping = new Map ([
47640
+ ["char", this .int32],
47641
+ ["uchar", this .int32],
47642
+ ["short", this .int32],
47643
+ ["ushort", this .int32],
47644
+ ["int", this .int32],
47645
+ ["uint", this .int32],
47646
+ ["float", this .double],
47647
+ ["double", this .double],
47648
+ ["int8", this .int32],
47649
+ ["uint8", this .int32],
47650
+ ["int16", this .int32],
47651
+ ["uint16", this .int32],
47652
+ ["int32", this .int32],
47653
+ ["uint32", this .int32],
47654
+ ["float32", this .double],
47655
+ ["float64", this .double],
47656
+ ]);
47657
+ }
47658
+
47659
+ Object .assign (Object .setPrototypeOf (PLYAParser .prototype, Parser_X3DParser .prototype),
47660
+ {
47661
+ getEncoding ()
47662
+ {
47663
+ return "STRING";
47664
+ },
47665
+ setInput (input)
47666
+ {
47667
+ this .input = input;
47668
+ },
47669
+ isValid ()
47670
+ {
47671
+ return this .input .match (/^ply\r?\nformat ascii 1.0/);
47672
+ },
47673
+ parseIntoScene (resolve, reject)
47674
+ {
47675
+ this .ply ()
47676
+ .then (resolve)
47677
+ .catch (reject);
47678
+ },
47679
+ ply: async function ()
47680
+ {
47681
+ // Set profile and components.
47682
+
47683
+ const
47684
+ browser = this .getBrowser (),
47685
+ scene = this .getScene ();
47686
+
47687
+ scene .setEncoding ("PLY");
47688
+ scene .setProfile (browser .getProfile ("Interchange"));
47689
+
47690
+ await this .loadComponents ();
47691
+ await this .processElements (this .header ([ ]))
47692
+
47693
+ // Create nodes.
47694
+
47695
+ return this .getScene ();
47696
+ },
47697
+ whitespacesOrComments ()
47698
+ {
47699
+ while (this .whitespaces () || this .comment ())
47700
+ ;
47701
+ },
47702
+ whitespaces ()
47703
+ {
47704
+ return PLYAParser_Grammar .whitespaces .parse (this);
47705
+ },
47706
+ whitespacesNoLineTerminator ()
47707
+ {
47708
+ PLYAParser_Grammar .whitespacesNoLineTerminator .parse (this);
47709
+ },
47710
+ comment ()
47711
+ {
47712
+ if (PLYAParser_Grammar .comment .parse (this) && PLYAParser_Grammar .untilEndOfLine .parse (this))
47713
+ {
47714
+ this .comments .push (this .result [1] .trim ());
47715
+ return true;
47716
+ }
47717
+
47718
+ return false;
47719
+ },
47720
+ double ()
47721
+ {
47722
+ this .whitespacesNoLineTerminator ();
47723
+
47724
+ if (PLYAParser_Grammar .double .parse (this))
47725
+ {
47726
+ this .value = parseFloat (this .result [1]);
47727
+
47728
+ return true;
47729
+ }
47730
+
47731
+ return false;
47732
+ },
47733
+ int32 ()
47734
+ {
47735
+ this .whitespacesNoLineTerminator ();
47736
+
47737
+ if (PLYAParser_Grammar .int32 .parse (this))
47738
+ {
47739
+ this .value = parseInt (this .result [1]);
47740
+
47741
+ return true;
47742
+ }
47743
+
47744
+ return false;
47745
+ },
47746
+ convertColor (value, type)
47747
+ {
47748
+ switch (type)
47749
+ {
47750
+ case "uchar":
47751
+ case "uint8":
47752
+ return value / 0xff;
47753
+ case "ushort":
47754
+ case "uint16":
47755
+ return value / 0xfffff;
47756
+ case "uint":
47757
+ case "uint32":
47758
+ return value / 0xffffffff;
47759
+ case "float":
47760
+ case "float32":
47761
+ case "double":
47762
+ case "float64":
47763
+ return value;
47764
+ }
47765
+ },
47766
+ header (elements)
47767
+ {
47768
+ PLYAParser_Grammar .ply .parse (this);
47769
+ PLYAParser_Grammar .whitespaces .parse (this);
47770
+ PLYAParser_Grammar .format .parse (this);
47771
+
47772
+ this .headings (elements);
47773
+
47774
+ const
47775
+ scene = this .getScene (),
47776
+ worldInfo = scene .createNode ("WorldInfo");
47777
+
47778
+ worldInfo .title = new URL (scene .worldURL) .pathname .split ('/') .at (-1);
47779
+ worldInfo .info = this .comments;
47780
+
47781
+ scene .rootNodes .push (worldInfo);
47782
+
47783
+ return elements;
47784
+ },
47785
+ headings (elements)
47786
+ {
47787
+ while (this .head (elements))
47788
+ ;
47789
+ },
47790
+ head (elements)
47791
+ {
47792
+ if (this .element (elements))
47793
+ return true;
47794
+
47795
+ if (PLYAParser_Grammar .endHeader .parse (this))
47796
+ return false;
47797
+
47798
+ if (PLYAParser_Grammar .untilEndOfLine .parse (this))
47799
+ return true;
47800
+
47801
+ return false;
47802
+ },
47803
+ element (elements)
47804
+ {
47805
+ this .whitespacesOrComments ();
47806
+
47807
+ if (PLYAParser_Grammar .element .parse (this))
47808
+ {
47809
+ this .whitespacesNoLineTerminator ();
47810
+
47811
+ if (PLYAParser_Grammar .elementName .parse (this))
47812
+ {
47813
+ const name = this .result [1];
47814
+
47815
+ if (this .int32 ())
47816
+ {
47817
+ const element =
47818
+ {
47819
+ name: name,
47820
+ count: this .value,
47821
+ properties: [ ],
47822
+ };
47823
+
47824
+ this .properties (element .properties);
47825
+
47826
+ elements .push (element);
47827
+ return true;
47828
+ }
47829
+ }
47830
+ }
47831
+
47832
+ return false;
47833
+ },
47834
+ properties (properties)
47835
+ {
47836
+ while (this .property (properties))
47837
+ ;
47838
+ },
47839
+ property (properties)
47840
+ {
47841
+ this .whitespacesOrComments ();
47842
+
47843
+ if (PLYAParser_Grammar .property .parse (this))
47844
+ {
47845
+ this .whitespacesNoLineTerminator ();
47846
+
47847
+ if (PLYAParser_Grammar .propertyType .parse (this))
47848
+ {
47849
+ const
47850
+ type = this .result [1],
47851
+ value = this .typeMapping .get (type);
47852
+
47853
+ this .whitespacesNoLineTerminator ();
47854
+
47855
+ if (PLYAParser_Grammar .propertyName .parse (this))
47856
+ {
47857
+ const name = this .result [1];
47858
+
47859
+ properties .push ({ type, value, name });
47860
+ return true;
47861
+ }
47862
+ }
47863
+
47864
+ if (PLYAParser_Grammar .propertyList .parse (this))
47865
+ {
47866
+ this .whitespacesNoLineTerminator ();
47867
+
47868
+ if (PLYAParser_Grammar .propertyType .parse (this))
47869
+ {
47870
+ const count = this .typeMapping .get (this .result [1]);
47871
+
47872
+ this .whitespacesNoLineTerminator ();
47873
+
47874
+ if (PLYAParser_Grammar .propertyType .parse (this))
47875
+ {
47876
+ const
47877
+ type = this .result [1],
47878
+ value = this .typeMapping .get (type);
47879
+
47880
+ this .whitespacesNoLineTerminator ();
47881
+
47882
+ if (PLYAParser_Grammar .propertyName .parse (this))
47883
+ {
47884
+ const name = this .result [1];
47885
+
47886
+ properties .push ({ count, type, value, name });
47887
+ return true;
47888
+ }
47889
+ }
47890
+ }
47891
+ }
47892
+ }
47893
+
47894
+ return false;
47895
+ },
47896
+ async processElements (elements)
47897
+ {
47898
+ // console .log (elements)
47899
+
47900
+ for (const element of elements)
47901
+ await this .processElement (element);
47902
+
47903
+ if (!this .coord)
47904
+ return;
47905
+
47906
+ const
47907
+ scene = this .getScene (),
47908
+ shape = scene .createNode ("Shape"),
47909
+ appearance = scene .createNode ("Appearance"),
47910
+ material = scene .createNode (this .geometry ? "Material" : "UnlitMaterial"),
47911
+ geometry = this .geometry ?? scene .createNode ("PointSet");
47912
+
47913
+ appearance .material = material;
47914
+
47915
+ if (this .texCoord)
47916
+ {
47917
+ const textureTransform = scene .createNode ("TextureTransform");
47918
+
47919
+ textureTransform .translation .y = -1;
47920
+ textureTransform .scale .y = -1;
47921
+
47922
+ appearance .textureTransform = textureTransform;
47923
+ }
47924
+
47925
+ if (geometry .getNodeTypeName () !== "PointSet")
47926
+ {
47927
+ geometry .solid = false;
47928
+ geometry .texCoord = this .texCoord;
47929
+ }
47930
+
47931
+ geometry .attrib = this .attrib;
47932
+ geometry .color = this .color;
47933
+ geometry .normal = this .normal;
47934
+ geometry .coord = this .coord;
47935
+
47936
+ shape .appearance = appearance;
47937
+ shape .geometry = geometry;
47938
+
47939
+ scene .rootNodes .push (shape);
47940
+ },
47941
+ async processElement (element)
47942
+ {
47943
+ switch (element .name)
47944
+ {
47945
+ case "vertex":
47946
+ await this .parseVertices (element);
47947
+ break;
47948
+ case "face":
47949
+ this .parseFaces (element);
47950
+ break;
47951
+ case "multi_texture_vertex":
47952
+ this .parseMultiTextureVertices (element);
47953
+ break;
47954
+ case "multi_texture_face":
47955
+ this .parseMultiTextureFaces (element);
47956
+ break;
47957
+ default:
47958
+ this .parseUnknown (element);
47959
+ break;
47960
+ }
47961
+ },
47962
+ async parseVertices ({ count, properties })
47963
+ {
47964
+ const
47965
+ scene = this .getScene (),
47966
+ colors = [ ],
47967
+ texCoord = scene .createNode ("TextureCoordinate"),
47968
+ texCoords = [ ],
47969
+ normal = scene .createNode ("Normal"),
47970
+ normals = [ ],
47971
+ coord = scene .createNode ("Coordinate"),
47972
+ points = [ ],
47973
+ attributes = new Map ();
47974
+
47975
+ for (const { name } of properties)
47976
+ {
47977
+ if (name .match (/^(?:red|green|blue|alpha|r|g|b|a|s|t|u|v|nx|ny|nz|x|y|z)$/))
47978
+ continue;
47979
+
47980
+ attributes .set (name, [ ]);
47981
+ }
47982
+
47983
+ // console .time ("vertices")
47984
+
47985
+ for (let i = 0; i < count; ++ i)
47986
+ {
47987
+ this .whitespaces ();
47988
+
47989
+ for (const { value, name, type } of properties)
47990
+ {
47991
+ if (!value .call (this))
47992
+ throw new Error (`Couldn't parse value for property ${name}.`);
47993
+
47994
+ switch (name)
47995
+ {
47996
+ default:
47997
+ attributes .get (name) .push (this .value);
47998
+ break;
47999
+ case "red": case "green": case "blue": case "alpha":
48000
+ case "r": case "g": case "b": case "a":
48001
+ colors .push (this .convertColor (this .value, type));
48002
+ break;
48003
+ case "s": case "t":
48004
+ case "u": case "v":
48005
+ texCoords .push (this .value);
48006
+ break;
48007
+ case "nx": case "ny": case "nz":
48008
+ normals .push (this .value);
48009
+ break;
48010
+ case "x": case "y": case "z":
48011
+ points .push (this .value);
48012
+ break;
48013
+ }
48014
+ }
48015
+ }
48016
+
48017
+ // console .timeEnd ("vertices")
48018
+
48019
+ // Attributes
48020
+
48021
+ if (attributes .size)
48022
+ {
48023
+ scene .addComponent (this .getBrowser () .getComponent ("Shaders", 1));
48024
+
48025
+ await this .loadComponents ();
48026
+
48027
+ for (const [name, value] of attributes)
48028
+ {
48029
+ const floatVertexAttribute = scene .createNode ("FloatVertexAttribute");
48030
+
48031
+ floatVertexAttribute .name = name;
48032
+ floatVertexAttribute .numComponents = 1;
48033
+ floatVertexAttribute .value = value;
48034
+
48035
+ this .attrib .push (floatVertexAttribute);
48036
+ }
48037
+ }
48038
+
48039
+ // Geometric properties
48040
+
48041
+ const
48042
+ pAlpha = properties .some (p => p .name .match (/^(?:alpha|a)$/)),
48043
+ alpha = pAlpha && colors .some ((v, i) => i % 4 === 3 && v < 1),
48044
+ color = scene .createNode (alpha ? "ColorRGBA" : "Color");
48045
+
48046
+ color .color = alpha || !pAlpha ? colors : colors .filter ((v, i) => i % 4 !== 3);
48047
+ texCoord .point = texCoords;
48048
+ normal .vector = normals;
48049
+ coord .point = points;
48050
+
48051
+ this .color = colors .length ? color : null;
48052
+ this .texCoord = texCoords .length ? texCoord : null;
48053
+ this .normal = normals .length ? normal : null;
48054
+ this .coord = coord;
48055
+ },
48056
+ parseFaces ({ count, properties })
48057
+ {
48058
+ const
48059
+ scene = this .getScene (),
48060
+ geometry = scene .createNode ("IndexedFaceSet"),
48061
+ coordIndex = [ ];
48062
+
48063
+ for (let i = 0; i < count; ++ i)
48064
+ {
48065
+ this .whitespaces ();
48066
+
48067
+ for (const { count, value, name } of properties)
48068
+ {
48069
+ if (!count .call (this))
48070
+ throw new Error (`Couldn't parse property count for ${name}.`);
48071
+
48072
+ const length = this .value;
48073
+
48074
+ for (let i = 0; i < length; ++ i)
48075
+ {
48076
+ if (!value .call (this))
48077
+ throw new Error (`Couldn't parse a property value for ${name}.`);
48078
+
48079
+ coordIndex .push (this .value);
48080
+ }
48081
+
48082
+ coordIndex .push (-1);
48083
+ }
48084
+ }
48085
+
48086
+ geometry .coordIndex = coordIndex;
48087
+ this .geometry = geometry;
48088
+ },
48089
+ parseMultiTextureVertices ({ count, properties })
48090
+ {
48091
+ const
48092
+ scene = this .getScene (),
48093
+ texCoord = scene .createNode ("TextureCoordinate"),
48094
+ texCoords = [ ];
48095
+
48096
+ for (let i = 0; i < count; ++ i)
48097
+ {
48098
+ this .whitespaces ();
48099
+
48100
+ for (const { value, name } of properties)
48101
+ {
48102
+ if (!value .call (this))
48103
+ throw new Error (`Couldn't parse value for property ${name}.`);
48104
+
48105
+ switch (name)
48106
+ {
48107
+ case "s": case "t":
48108
+ case "u": case "v":
48109
+ texCoords .push (this .value);
48110
+ break;
48111
+ }
48112
+ }
48113
+ }
48114
+
48115
+ texCoord .point = texCoords;
48116
+
48117
+ this .texCoord = texCoords .length ? texCoord : null;
48118
+ },
48119
+ parseMultiTextureFaces ({ count, properties })
48120
+ {
48121
+ const texCoordIndex = [ ];
48122
+
48123
+ for (let i = 0; i < count; ++ i)
48124
+ {
48125
+ for (const { count, value, name } of properties)
48126
+ {
48127
+ if (count)
48128
+ {
48129
+ if (!count .call (this))
48130
+ throw new Error (`Couldn't parse property count for ${name}.`);
48131
+
48132
+ const length = this .value;
48133
+
48134
+ for (let i = 0; i < length; ++ i)
48135
+ {
48136
+ if (!value .call (this))
48137
+ throw new Error (`Couldn't parse value for property ${name}.`);
48138
+
48139
+ texCoordIndex .push (this .value);
48140
+ }
48141
+
48142
+ texCoordIndex .push (-1);
48143
+ }
48144
+ else
48145
+ {
48146
+ if (!value .call (this))
48147
+ throw new Error (`Couldn't parse value for property ${name}.`);
48148
+ }
48149
+ }
48150
+ }
48151
+
48152
+ if (this .geometry)
48153
+ this .geometry .texCoordIndex = texCoordIndex;
48154
+ },
48155
+ parseUnknown ({ count })
48156
+ {
48157
+ this .whitespaces ();
48158
+
48159
+ for (let i = 0; i < count; ++ i)
48160
+ PLYAParser_Grammar .line .parse (this);
48161
+ },
48162
+ });
48163
+
48164
+ const PLYAParser_default_ = PLYAParser;
48165
+ ;
48166
+
48167
+ x_ite_Namespace .set ("x_ite/Parser/PLYAParser", PLYAParser_default_);
48168
+ /* harmony default export */ const Parser_PLYAParser = (PLYAParser_default_);
48169
+ ;// CONCATENATED MODULE: ./src/x_ite/Parser/PLYBParser.js
48170
+ /*******************************************************************************
48171
+ *
48172
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
48173
+ *
48174
+ * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
48175
+ *
48176
+ * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
48177
+ *
48178
+ * The copyright notice above does not evidence any actual of intended
48179
+ * publication of such source code, and is an unpublished work by create3000.
48180
+ * This material contains CONFIDENTIAL INFORMATION that is the property of
48181
+ * create3000.
48182
+ *
48183
+ * No permission is granted to copy, distribute, or create derivative works from
48184
+ * the contents of this software, in whole or in part, without the prior written
48185
+ * permission of create3000.
48186
+ *
48187
+ * NON-MILITARY USE ONLY
48188
+ *
48189
+ * All create3000 software are effectively free software with a non-military use
48190
+ * restriction. It is free. Well commented source is provided. You may reuse the
48191
+ * source in any way you please with the exception anything that uses it must be
48192
+ * marked to indicate is contains 'non-military use only' components.
48193
+ *
48194
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
48195
+ *
48196
+ * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
48197
+ *
48198
+ * This file is part of the X_ITE Project.
48199
+ *
48200
+ * X_ITE is free software: you can redistribute it and/or modify it under the
48201
+ * terms of the GNU General Public License version 3 only, as published by the
48202
+ * Free Software Foundation.
48203
+ *
48204
+ * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
48205
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
48206
+ * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
48207
+ * details (a copy is included in the LICENSE file that accompanied this code).
48208
+ *
48209
+ * You should have received a copy of the GNU General Public License version 3
48210
+ * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
48211
+ * copy of the GPLv3 License.
48212
+ *
48213
+ * For Silvio, Joy and Adi.
48214
+ *
48215
+ ******************************************************************************/
48216
+
48217
+
48218
+
48219
+ function PLYBParser (scene)
48220
+ {
48221
+ Parser_PLYAParser .call (this, scene);
48222
+
48223
+ this .typeMapping = new Map ([
48224
+ ["char", this .binaryInt8],
48225
+ ["uchar", this .binaryUint8],
48226
+ ["short", this .binaryInt16],
48227
+ ["ushort", this .binaryUint16],
48228
+ ["int", this .binaryInt32],
48229
+ ["uint", this .binaryUint32],
48230
+ ["float", this .binaryFloat32],
48231
+ ["double", this .binaryFloat64],
48232
+ ["int8", this .binaryInt8],
48233
+ ["uint8", this .binaryUint8],
48234
+ ["int16", this .binaryInt16],
48235
+ ["uint16", this .binaryUint16],
48236
+ ["int32", this .binaryInt32],
48237
+ ["uint32", this .binaryUint32],
48238
+ ["float32", this .binaryFloat32],
48239
+ ["float64", this .binaryFloat64],
48240
+ ]);
48241
+
48242
+ this .binaryInt8 .bytes = 1;
48243
+ this .binaryUint8 .bytes = 1;
48244
+ this .binaryInt16 .bytes = 2;
48245
+ this .binaryUint16 .bytes = 2;
48246
+ this .binaryInt32 .bytes = 4;
48247
+ this .binaryUint32 .bytes = 4;
48248
+ this .binaryFloat32 .bytes = 4;
48249
+ this .binaryFloat64 .bytes = 8;
48250
+ }
48251
+
48252
+ Object .assign (Object .setPrototypeOf (PLYBParser .prototype, Parser_PLYAParser .prototype),
48253
+ {
48254
+ getEncoding ()
48255
+ {
48256
+ return ["ARRAY_BUFFER", "STRING"];
48257
+ },
48258
+ setInput (inputs)
48259
+ {
48260
+ this .arrayBuffer = inputs [0];
48261
+ this .dataView = new DataView (this .arrayBuffer);
48262
+ this .input = inputs [1];
48263
+ this .magic = this .input .match (/^ply\r?\nformat (binary_(?:little|big)_endian) 1.0.*?end_header\r?\n/s);
48264
+ this .byteOffset = this .magic ?.[0] .length;
48265
+ this .littleEndian = this .magic ?.[1] === "binary_little_endian";
48266
+ },
48267
+ isValid ()
48268
+ {
48269
+ if (!(this .arrayBuffer instanceof ArrayBuffer))
48270
+ return false;
48271
+
48272
+ return !! this .magic;
48273
+ },
48274
+ binaryInt8 ()
48275
+ {
48276
+ this .value = this .dataView .getInt8 (this .byteOffset, this .littleEndian);
48277
+ this .byteOffset += 1;
48278
+
48279
+ return true;
48280
+ },
48281
+ binaryUint8 ()
48282
+ {
48283
+ this .value = this .dataView .getUint8 (this .byteOffset, this .littleEndian);
48284
+ this .byteOffset += 1;
48285
+
48286
+ return true;
48287
+ },
48288
+ binaryInt16 ()
48289
+ {
48290
+ this .value = this .dataView .getInt16 (this .byteOffset, this .littleEndian);
48291
+ this .byteOffset += 2;
48292
+
48293
+ return true;
48294
+ },
48295
+ binaryUint16 ()
48296
+ {
48297
+ this .value = this .dataView .getUint16 (this .byteOffset, this .littleEndian);
48298
+ this .byteOffset += 2;
48299
+
48300
+ return true;
48301
+ },
48302
+ binaryInt32 ()
48303
+ {
48304
+ this .value = this .dataView .getInt32 (this .byteOffset, this .littleEndian);
48305
+ this .byteOffset += 4;
48306
+
48307
+ return true;
48308
+ },
48309
+ binaryUint32 ()
48310
+ {
48311
+ this .value = this .dataView .getUint32 (this .byteOffset, this .littleEndian);
48312
+ this .byteOffset += 4;
48313
+
48314
+ return true;
48315
+ },
48316
+ binaryFloat32 ()
48317
+ {
48318
+ this .value = this .dataView .getFloat32 (this .byteOffset, this .littleEndian);
48319
+ this .byteOffset += 4;
48320
+
48321
+ return true;
48322
+ },
48323
+ binaryFloat64 ()
48324
+ {
48325
+ this .value = this .dataView .getFloat64 (this .byteOffset, this .littleEndian);
48326
+ this .byteOffset += 8;
48327
+
48328
+ return true;
48329
+ },
48330
+ processElements (elements)
48331
+ {
48332
+ this .whitespaces = Function .prototype;
48333
+
48334
+ return Parser_PLYAParser .prototype .processElements .call (this, elements);
48335
+ },
48336
+ parseUnknown ({ count, properties })
48337
+ {
48338
+ for (let i = 0; i < count; ++ i)
48339
+ {
48340
+ for (const { count, type } of properties)
48341
+ {
48342
+ if (count)
48343
+ {
48344
+ count .call (this);
48345
+
48346
+ this .byteOffset += this .value * this .typeMapping .get (type) .bytes;
48347
+ }
48348
+ else
48349
+ {
48350
+ this .byteOffset += this .typeMapping .get (type) .bytes;
48351
+ }
48352
+ }
48353
+ }
48354
+ },
48355
+ // parseUnknown ({ count, properties })
48356
+ // {
48357
+ // let string = "";
48358
+
48359
+ // for (let i = 0; i < count; ++ i)
48360
+ // {
48361
+ // for (const { count, type, value } of properties)
48362
+ // {
48363
+ // if (count === undefined)
48364
+ // {
48365
+ // value .call (this);
48366
+
48367
+ // string += this .value + " "
48368
+ // }
48369
+ // else
48370
+ // {
48371
+ // count .call (this);
48372
+
48373
+ // string += this .value + " "
48374
+
48375
+ // for (let i = 0, l = this .value; i < l; ++ i)
48376
+ // {
48377
+ // value .call (this);
48378
+
48379
+ // string += this .value + " "
48380
+ // }
48381
+ // }
48382
+ // }
48383
+
48384
+ // string += "\n"
48385
+ // }
48386
+
48387
+ // console .log (string .substring (0, 1000))
48388
+ // },
48389
+ });
48390
+
48391
+ const PLYBParser_default_ = PLYBParser;
48392
+ ;
48393
+
48394
+ x_ite_Namespace .set ("x_ite/Parser/PLYBParser", PLYBParser_default_);
48395
+ /* harmony default export */ const Parser_PLYBParser = (PLYBParser_default_);
47550
48396
  ;// CONCATENATED MODULE: ./src/standard/Math/Numbers/Complex.js
47551
48397
  /*******************************************************************************
47552
48398
  *
@@ -48407,8 +49253,8 @@ const MatrixStack_default_ = MatrixStack;
48407
49253
  x_ite_Namespace .set ("standard/Math/Utility/MatrixStack", MatrixStack_default_);
48408
49254
  /* harmony default export */ const Utility_MatrixStack = (MatrixStack_default_);
48409
49255
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/SVGParser.js
48410
- /* provided dependency */ var SVGParser_$ = __webpack_require__(834);
48411
- /* provided dependency */ var libtess = __webpack_require__(492);
49256
+ /* provided dependency */ var SVGParser_$ = __webpack_require__(109);
49257
+ /* provided dependency */ var libtess = __webpack_require__(207);
48412
49258
  /*******************************************************************************
48413
49259
  *
48414
49260
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -51176,7 +52022,7 @@ const SVGParser_default_ = SVGParser;
51176
52022
  x_ite_Namespace .set ("x_ite/Parser/SVGParser", SVGParser_default_);
51177
52023
  /* harmony default export */ const Parser_SVGParser = (SVGParser_default_);
51178
52024
  ;// CONCATENATED MODULE: ./src/x_ite/Parser/GoldenGate.js
51179
- /* provided dependency */ var GoldenGate_$ = __webpack_require__(834);
52025
+ /* provided dependency */ var GoldenGate_$ = __webpack_require__(109);
51180
52026
  /*******************************************************************************
51181
52027
  *
51182
52028
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -51235,6 +52081,8 @@ x_ite_Namespace .set ("x_ite/Parser/SVGParser", SVGParser_default_);
51235
52081
 
51236
52082
 
51237
52083
 
52084
+
52085
+
51238
52086
  function GoldenGate (scene)
51239
52087
  {
51240
52088
  Parser_X3DParser .call (this, scene);
@@ -51284,14 +52132,21 @@ Object .assign (Object .setPrototypeOf (GoldenGate .prototype, Parser_X3DParser
51284
52132
  },
51285
52133
  getInput (encoding, x3dSyntax)
51286
52134
  {
51287
- if (this .inputs .has (encoding))
51288
- return this .inputs .get (encoding);
52135
+ if (Array .isArray (encoding))
52136
+ {
52137
+ return encoding .map (encoding => this .getInput (encoding));
52138
+ }
52139
+ else
52140
+ {
52141
+ if (this .inputs .has (encoding))
52142
+ return this .inputs .get (encoding);
51289
52143
 
51290
- const input = this .createInput (encoding, x3dSyntax);
52144
+ const input = this .createInput (encoding, x3dSyntax);
51291
52145
 
51292
- this .inputs .set (encoding, input);
52146
+ this .inputs .set (encoding, input);
51293
52147
 
51294
- return input;
52148
+ return input;
52149
+ }
51295
52150
  },
51296
52151
  createInput (encoding, x3dSyntax)
51297
52152
  {
@@ -51326,6 +52181,8 @@ GoldenGate .Parser = [
51326
52181
  Parser_OBJParser,
51327
52182
  Parser_STLAParser,
51328
52183
  Parser_STLBParser,
52184
+ Parser_PLYAParser,
52185
+ Parser_PLYBParser,
51329
52186
  ];
51330
52187
 
51331
52188
  const GoldenGate_default_ = GoldenGate;
@@ -51502,7 +52359,7 @@ const Plane3_default_ = Plane3;
51502
52359
  x_ite_Namespace .set ("standard/Math/Geometry/Plane3", Plane3_default_);
51503
52360
  /* harmony default export */ const Geometry_Plane3 = (Plane3_default_);
51504
52361
  ;// CONCATENATED MODULE: ./src/standard/Math/Geometry/Triangle3.js
51505
- /* provided dependency */ var Triangle3_libtess = __webpack_require__(492);
52362
+ /* provided dependency */ var Triangle3_libtess = __webpack_require__(207);
51506
52363
  /*******************************************************************************
51507
52364
  *
51508
52365
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -58897,7 +59754,7 @@ const X3DTexture2DNode_default_ = X3DTexture2DNode;
58897
59754
  x_ite_Namespace .set ("x_ite/Components/Texturing/X3DTexture2DNode", X3DTexture2DNode_default_);
58898
59755
  /* harmony default export */ const Texturing_X3DTexture2DNode = (X3DTexture2DNode_default_);
58899
59756
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/ImageTexture.js
58900
- /* provided dependency */ var ImageTexture_$ = __webpack_require__(834);
59757
+ /* provided dependency */ var ImageTexture_$ = __webpack_require__(109);
58901
59758
  /*******************************************************************************
58902
59759
  *
58903
59760
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -59429,7 +60286,7 @@ function X3DLayerNode (executionContext, defaultViewpoint, groupNode)
59429
60286
 
59430
60287
  this .addType (Base_X3DConstants .X3DLayerNode);
59431
60288
 
59432
- if (executionContext .getSpecificationVersion () < 4.0)
60289
+ if (executionContext .getSpecificationVersion () <= 3.3)
59433
60290
  this .addAlias ("isPickable", this ._pickable);
59434
60291
 
59435
60292
  this .groupNode = groupNode;
@@ -61433,7 +62290,7 @@ Object .assign (Object .setPrototypeOf (X3DViewpointNode .prototype, Core_X3DBin
61433
62290
 
61434
62291
  // VRML behavior
61435
62292
 
61436
- if (this .getExecutionContext () .getSpecificationVersion () === "2.0")
62293
+ if (this .getExecutionContext () .getSpecificationVersion () == 2.0)
61437
62294
  {
61438
62295
  if (this .getVRMLTransition ())
61439
62296
  transitionType = "LINEAR";
@@ -63437,7 +64294,7 @@ const X3DWorld_default_ = X3DWorld;
63437
64294
  x_ite_Namespace .set ("x_ite/Execution/X3DWorld", X3DWorld_default_);
63438
64295
  /* harmony default export */ const Execution_X3DWorld = (X3DWorld_default_);
63439
64296
  ;// CONCATENATED MODULE: ./src/x_ite/InputOutput/FileLoader.js
63440
- /* provided dependency */ var FileLoader_$ = __webpack_require__(834);
64297
+ /* provided dependency */ var FileLoader_$ = __webpack_require__(109);
63441
64298
  /*******************************************************************************
63442
64299
  *
63443
64300
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -74498,7 +75355,7 @@ function Switch (executionContext)
74498
75355
 
74499
75356
  this .addType (Base_X3DConstants .Switch);
74500
75357
 
74501
- if (executionContext .getSpecificationVersion () === "2.0")
75358
+ if (executionContext .getSpecificationVersion () == 2.0)
74502
75359
  this .addAlias ("choice", this ._children);
74503
75360
 
74504
75361
  this .childNode = null;
@@ -77945,7 +78802,7 @@ function DirectionalLight (executionContext)
77945
78802
 
77946
78803
  this .addType (Base_X3DConstants .DirectionalLight);
77947
78804
 
77948
- if (executionContext .getSpecificationVersion () === "2.0")
78805
+ if (executionContext .getSpecificationVersion () == 2.0)
77949
78806
  this ._global = true;
77950
78807
  }
77951
78808
 
@@ -79211,7 +80068,7 @@ function Collision (executionContext)
79211
80068
 
79212
80069
  this .addType (Base_X3DConstants .Collision);
79213
80070
 
79214
- if (executionContext .getSpecificationVersion () === "2.0")
80071
+ if (executionContext .getSpecificationVersion () == 2.0)
79215
80072
  this .addAlias ("collide", this ._enabled); // VRML2
79216
80073
  }
79217
80074
 
@@ -79400,7 +80257,7 @@ function LOD (executionContext)
79400
80257
 
79401
80258
  this .addType (Base_X3DConstants .LOD);
79402
80259
 
79403
- if (executionContext .getSpecificationVersion () === "2.0")
80260
+ if (executionContext .getSpecificationVersion () == 2.0)
79404
80261
  this .addAlias ("level", this ._children); // VRML2
79405
80262
 
79406
80263
  this ._center .setUnit ("length");
@@ -81508,7 +82365,7 @@ function LoadSensor (executionContext)
81508
82365
 
81509
82366
  this .addType (Base_X3DConstants .LoadSensor);
81510
82367
 
81511
- if (executionContext .getSpecificationVersion () < 4)
82368
+ if (executionContext .getSpecificationVersion () <= 3.3)
81512
82369
  this .addAlias ("watchList", this ._children);
81513
82370
 
81514
82371
  this .urlObjects = [ ];
@@ -87053,7 +87910,7 @@ const X3DShaderNode_default_ = X3DShaderNode;
87053
87910
  x_ite_Namespace .set ("x_ite/Components/Shaders/X3DShaderNode", X3DShaderNode_default_);
87054
87911
  /* harmony default export */ const Shaders_X3DShaderNode = (X3DShaderNode_default_);
87055
87912
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js
87056
- /* provided dependency */ var X3DProgrammableShaderObject_$ = __webpack_require__(834);
87913
+ /* provided dependency */ var X3DProgrammableShaderObject_$ = __webpack_require__(109);
87057
87914
  /*******************************************************************************
87058
87915
  *
87059
87916
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -95776,7 +96633,7 @@ const ShaderCompiler_default_ = ShaderCompiler;
95776
96633
  x_ite_Namespace .set ("x_ite/Browser/Shaders/ShaderCompiler", ShaderCompiler_default_);
95777
96634
  /* harmony default export */ const Shaders_ShaderCompiler = (ShaderCompiler_default_);
95778
96635
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Shaders/ShaderPart.js
95779
- /* provided dependency */ var ShaderPart_$ = __webpack_require__(834);
96636
+ /* provided dependency */ var ShaderPart_$ = __webpack_require__(109);
95780
96637
  /*******************************************************************************
95781
96638
  *
95782
96639
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -96311,7 +97168,7 @@ Object .defineProperties (AcousticProperties,
96311
97168
  },
96312
97169
  containerField:
96313
97170
  {
96314
- value: "AcousticProperties",
97171
+ value: "acousticProperties",
96315
97172
  enumerable: true,
96316
97173
  },
96317
97174
  specificationRange:
@@ -96435,7 +97292,7 @@ const X3DAppearanceNode_default_ = X3DAppearanceNode;
96435
97292
  x_ite_Namespace .set ("x_ite/Components/Shape/X3DAppearanceNode", X3DAppearanceNode_default_);
96436
97293
  /* harmony default export */ const Shape_X3DAppearanceNode = (X3DAppearanceNode_default_);
96437
97294
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Shape/Appearance.js
96438
- /* provided dependency */ var Appearance_$ = __webpack_require__(834);
97295
+ /* provided dependency */ var Appearance_$ = __webpack_require__(109);
96439
97296
  /*******************************************************************************
96440
97297
  *
96441
97298
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -96876,6 +97733,7 @@ Object .defineProperties (Appearance,
96876
97733
  {
96877
97734
  value: new Base_FieldDefinitionArray ([
96878
97735
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "metadata", new x_ite_Fields .SFNode ()),
97736
+ new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "acousticProperties", new x_ite_Fields .SFNode ()),
96879
97737
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "alphaMode", new x_ite_Fields .SFString ("AUTO")),
96880
97738
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "alphaCutoff", new x_ite_Fields .SFFloat (0.5)),
96881
97739
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "pointProperties", new x_ite_Fields .SFNode ()),
@@ -96887,7 +97745,6 @@ Object .defineProperties (Appearance,
96887
97745
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "textureTransform", new x_ite_Fields .SFNode ()),
96888
97746
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "shaders", new x_ite_Fields .MFNode ()),
96889
97747
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "blendMode", new x_ite_Fields .SFNode ()),
96890
- new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "acousticProperties", new x_ite_Fields .SFNode ()),
96891
97748
  ]),
96892
97749
  enumerable: true,
96893
97750
  },
@@ -97878,7 +98735,7 @@ function Material (executionContext)
97878
98735
 
97879
98736
  this .addType (Base_X3DConstants .Material);
97880
98737
 
97881
- if (executionContext .getSpecificationVersion () < 4.0)
98738
+ if (executionContext .getSpecificationVersion () <= 3.3)
97882
98739
  this .getMaterialKey = getMaterialKey;
97883
98740
 
97884
98741
  this .diffuseColor = new Float32Array (3);
@@ -99408,7 +100265,7 @@ Object .defineProperties (TwoSidedMaterial,
99408
100265
  },
99409
100266
  specificationRange:
99410
100267
  {
99411
- value: Object .freeze (["3.2", "Infinity"]),
100268
+ value: Object .freeze (["3.2", "4.0"]),
99412
100269
  enumerable: true,
99413
100270
  },
99414
100271
  fieldDefinitions:
@@ -100130,7 +100987,7 @@ const X3DSoundSourceNode_default_ = X3DSoundSourceNode;
100130
100987
  x_ite_Namespace .set ("x_ite/Components/Sound/X3DSoundSourceNode", X3DSoundSourceNode_default_);
100131
100988
  /* harmony default export */ const Sound_X3DSoundSourceNode = (X3DSoundSourceNode_default_);
100132
100989
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Sound/AudioClip.js
100133
- /* provided dependency */ var AudioClip_$ = __webpack_require__(834);
100990
+ /* provided dependency */ var AudioClip_$ = __webpack_require__(109);
100134
100991
  /*******************************************************************************
100135
100992
  *
100136
100993
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -102220,9 +103077,9 @@ Object .defineProperties (PeriodicWave,
102220
103077
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "metadata", new x_ite_Fields .SFNode ()),
102221
103078
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "description", new x_ite_Fields .SFString ()),
102222
103079
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "enabled", new x_ite_Fields .SFBool (true)),
103080
+ new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "type", new x_ite_Fields .SFString ("SQUARE")),
102223
103081
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "optionsReal", new x_ite_Fields .MFFloat ()),
102224
103082
  new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "optionsImag", new x_ite_Fields .MFFloat ()),
102225
- new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "type", new x_ite_Fields .SFString ("SQUARE")),
102226
103083
  ]),
102227
103084
  enumerable: true,
102228
103085
  },
@@ -103241,8 +104098,8 @@ const GIFMedia_default_ = GifMedia;
103241
104098
  x_ite_Namespace .set ("x_ite/Browser/Texturing/GIFMedia", GIFMedia_default_);
103242
104099
  /* harmony default export */ const GIFMedia = (GIFMedia_default_);
103243
104100
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/MovieTexture.js
103244
- /* provided dependency */ var MovieTexture_$ = __webpack_require__(834);
103245
- /* provided dependency */ var SuperGif = __webpack_require__(1);
104101
+ /* provided dependency */ var MovieTexture_$ = __webpack_require__(109);
104102
+ /* provided dependency */ var SuperGif = __webpack_require__(842);
103246
104103
  /*******************************************************************************
103247
104104
  *
103248
104105
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -104407,7 +105264,7 @@ const MultiTextureTransform_default_ = MultiTextureTransform;
104407
105264
  x_ite_Namespace .set ("x_ite/Components/Texturing/MultiTextureTransform", MultiTextureTransform_default_);
104408
105265
  /* harmony default export */ const Texturing_MultiTextureTransform = (MultiTextureTransform_default_);
104409
105266
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/PixelTexture.js
104410
- /* provided dependency */ var PixelTexture_$ = __webpack_require__(834);
105267
+ /* provided dependency */ var PixelTexture_$ = __webpack_require__(109);
104411
105268
  /*******************************************************************************
104412
105269
  *
104413
105270
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -105215,7 +106072,7 @@ function TextureProperties (executionContext)
105215
106072
 
105216
106073
  this .addType (Base_X3DConstants .TextureProperties);
105217
106074
 
105218
- if (executionContext .getSpecificationVersion () < 4.0)
106075
+ if (executionContext .getSpecificationVersion () <= 3.3)
105219
106076
  {
105220
106077
  this ._minificationFilter = "DEFAULT";
105221
106078
  this ._magnificationFilter = "DEFAULT";
@@ -106588,7 +107445,7 @@ const gettext_default_ = gettext;
106588
107445
  x_ite_Namespace .set ("locale/gettext", gettext_default_);
106589
107446
  /* harmony default export */ const locale_gettext = (gettext_default_);
106590
107447
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/BrowserTimings.js
106591
- /* provided dependency */ var BrowserTimings_$ = __webpack_require__(834);
107448
+ /* provided dependency */ var BrowserTimings_$ = __webpack_require__(109);
106592
107449
  /*******************************************************************************
106593
107450
  *
106594
107451
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -107018,7 +107875,7 @@ const TextureQuality_default_ = TextureQuality;
107018
107875
  x_ite_Namespace .set ("x_ite/Browser/Core/TextureQuality", TextureQuality_default_);
107019
107876
  /* harmony default export */ const Core_TextureQuality = (TextureQuality_default_);
107020
107877
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/BrowserOptions.js
107021
- /* provided dependency */ var BrowserOptions_$ = __webpack_require__(834);
107878
+ /* provided dependency */ var BrowserOptions_$ = __webpack_require__(109);
107022
107879
  /*******************************************************************************
107023
107880
  *
107024
107881
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -107599,7 +108456,7 @@ const RenderingProperties_default_ = RenderingProperties;
107599
108456
  x_ite_Namespace .set ("x_ite/Browser/Core/RenderingProperties", RenderingProperties_default_);
107600
108457
  /* harmony default export */ const Core_RenderingProperties = (RenderingProperties_default_);
107601
108458
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/Notification.js
107602
- /* provided dependency */ var Notification_$ = __webpack_require__(834);
108459
+ /* provided dependency */ var Notification_$ = __webpack_require__(109);
107603
108460
  /*******************************************************************************
107604
108461
  *
107605
108462
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -107721,8 +108578,8 @@ const Notification_default_ = Notification;
107721
108578
  x_ite_Namespace .set ("x_ite/Browser/Core/Notification", Notification_default_);
107722
108579
  /* harmony default export */ const Core_Notification = (Notification_default_);
107723
108580
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/ContextMenu.js
107724
- /* provided dependency */ var jquery_fullscreen = __webpack_require__(692);
107725
- /* provided dependency */ var ContextMenu_$ = __webpack_require__(834);
108581
+ /* provided dependency */ var jquery_fullscreen = __webpack_require__(418);
108582
+ /* provided dependency */ var ContextMenu_$ = __webpack_require__(109);
107726
108583
  /*******************************************************************************
107727
108584
  *
107728
108585
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -110440,7 +111297,7 @@ const DataStorage_default_ = DataStorage;
110440
111297
  x_ite_Namespace .set ("standard/Utility/DataStorage", DataStorage_default_);
110441
111298
  /* harmony default export */ const Utility_DataStorage = (DataStorage_default_);
110442
111299
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/X3DCoreContext.js
110443
- /* provided dependency */ var X3DCoreContext_$ = __webpack_require__(834);
111300
+ /* provided dependency */ var X3DCoreContext_$ = __webpack_require__(109);
110444
111301
  /*******************************************************************************
110445
111302
  *
110446
111303
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -110863,11 +111720,18 @@ Object .assign (X3DCoreContext .prototype,
110863
111720
  },
110864
111721
  parseUrlAttribute (urlCharacters)
110865
111722
  {
110866
- const url = new x_ite_Fields .MFString ();
111723
+ try
111724
+ {
111725
+ const url = new x_ite_Fields .MFString ();
110867
111726
 
110868
- url .fromString ("[" + urlCharacters + "]", this .getExecutionContext ());
111727
+ url .fromString ("[" + urlCharacters + "]", this .getExecutionContext ());
110869
111728
 
110870
- return url;
111729
+ return url;
111730
+ }
111731
+ catch
111732
+ {
111733
+ throw new Error ("Couldn't parse url attribute.");
111734
+ }
110871
111735
  },
110872
111736
  callBrowserEventHandler: (() =>
110873
111737
  {
@@ -112468,8 +113332,8 @@ const X3DViewer_default_ = X3DViewer;
112468
113332
  x_ite_Namespace .set ("x_ite/Browser/Navigation/X3DViewer", X3DViewer_default_);
112469
113333
  /* harmony default export */ const Navigation_X3DViewer = (X3DViewer_default_);
112470
113334
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/ExamineViewer.js
112471
- /* provided dependency */ var jquery_mousewheel = __webpack_require__(789);
112472
- /* provided dependency */ var ExamineViewer_$ = __webpack_require__(834);
113335
+ /* provided dependency */ var jquery_mousewheel = __webpack_require__(90);
113336
+ /* provided dependency */ var ExamineViewer_$ = __webpack_require__(109);
112473
113337
  /*******************************************************************************
112474
113338
  *
112475
113339
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -113341,8 +114205,8 @@ const ExamineViewer_default_ = ExamineViewer;
113341
114205
  x_ite_Namespace .set ("x_ite/Browser/Navigation/ExamineViewer", ExamineViewer_default_);
113342
114206
  /* harmony default export */ const Navigation_ExamineViewer = (ExamineViewer_default_);
113343
114207
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/X3DFlyViewer.js
113344
- /* provided dependency */ var X3DFlyViewer_jquery_mousewheel = __webpack_require__(789);
113345
- /* provided dependency */ var X3DFlyViewer_$ = __webpack_require__(834);
114208
+ /* provided dependency */ var X3DFlyViewer_jquery_mousewheel = __webpack_require__(90);
114209
+ /* provided dependency */ var X3DFlyViewer_$ = __webpack_require__(109);
113346
114210
  /*******************************************************************************
113347
114211
  *
113348
114212
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -114312,8 +115176,8 @@ const FlyViewer_default_ = FlyViewer;
114312
115176
  x_ite_Namespace .set ("x_ite/Browser/Navigation/FlyViewer", FlyViewer_default_);
114313
115177
  /* harmony default export */ const Navigation_FlyViewer = (FlyViewer_default_);
114314
115178
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/PlaneViewer.js
114315
- /* provided dependency */ var PlaneViewer_jquery_mousewheel = __webpack_require__(789);
114316
- /* provided dependency */ var PlaneViewer_$ = __webpack_require__(834);
115179
+ /* provided dependency */ var PlaneViewer_jquery_mousewheel = __webpack_require__(90);
115180
+ /* provided dependency */ var PlaneViewer_$ = __webpack_require__(109);
114317
115181
  /*******************************************************************************
114318
115182
  *
114319
115183
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -114644,8 +115508,8 @@ const NoneViewer_default_ = NoneViewer;
114644
115508
  x_ite_Namespace .set ("x_ite/Browser/Navigation/NoneViewer", NoneViewer_default_);
114645
115509
  /* harmony default export */ const Navigation_NoneViewer = (NoneViewer_default_);
114646
115510
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/LookAtViewer.js
114647
- /* provided dependency */ var LookAtViewer_jquery_mousewheel = __webpack_require__(789);
114648
- /* provided dependency */ var LookAtViewer_$ = __webpack_require__(834);
115511
+ /* provided dependency */ var LookAtViewer_jquery_mousewheel = __webpack_require__(90);
115512
+ /* provided dependency */ var LookAtViewer_$ = __webpack_require__(109);
114649
115513
  /*******************************************************************************
114650
115514
  *
114651
115515
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -115782,8 +116646,8 @@ const X3DPickingContext_default_ = X3DPickingContext;
115782
116646
  x_ite_Namespace .set ("x_ite/Browser/Picking/X3DPickingContext", X3DPickingContext_default_);
115783
116647
  /* harmony default export */ const Picking_X3DPickingContext = (X3DPickingContext_default_);
115784
116648
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/PointingDeviceSensor/PointingDevice.js
115785
- /* provided dependency */ var PointingDevice_jquery_mousewheel = __webpack_require__(789);
115786
- /* provided dependency */ var PointingDevice_$ = __webpack_require__(834);
116649
+ /* provided dependency */ var PointingDevice_jquery_mousewheel = __webpack_require__(90);
116650
+ /* provided dependency */ var PointingDevice_$ = __webpack_require__(109);
115787
116651
  /*******************************************************************************
115788
116652
  *
115789
116653
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -116823,8 +117687,8 @@ const MultiSampleFrameBuffer_default_ = MultiSampleFrameBuffer;
116823
117687
  x_ite_Namespace .set ("x_ite/Rendering/MultiSampleFrameBuffer", MultiSampleFrameBuffer_default_);
116824
117688
  /* harmony default export */ const Rendering_MultiSampleFrameBuffer = (MultiSampleFrameBuffer_default_);
116825
117689
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Rendering/X3DRenderingContext.js
116826
- /* provided dependency */ var X3DRenderingContext_$ = __webpack_require__(834);
116827
- /* provided dependency */ var ResizeSensor = __webpack_require__(504);
117690
+ /* provided dependency */ var X3DRenderingContext_$ = __webpack_require__(109);
117691
+ /* provided dependency */ var ResizeSensor = __webpack_require__(63);
116828
117692
  /*******************************************************************************
116829
117693
  *
116830
117694
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -119049,7 +119913,7 @@ const Components_default_ = Components;
119049
119913
  x_ite_Namespace .set ("x_ite/Components", Components_default_);
119050
119914
  /* harmony default export */ const x_ite_Components = ((/* unused pure expression or super */ null && (Components_default_)));
119051
119915
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/DOMIntegration.js
119052
- /* provided dependency */ var DOMIntegration_$ = __webpack_require__(834);
119916
+ /* provided dependency */ var DOMIntegration_$ = __webpack_require__(109);
119053
119917
  /*******************************************************************************
119054
119918
  * MIT License
119055
119919
  *
@@ -119187,15 +120051,17 @@ class DOMIntegration
119187
120051
 
119188
120052
  processAttribute (mutation, element)
119189
120053
  {
119190
- const parser = this .parser;
120054
+ const
120055
+ parser = this .parser,
120056
+ node = DOMIntegration_$.data (element, "node");
119191
120057
 
119192
- if (DOMIntegration_$.data (element, "node"))
120058
+ if (node)
119193
120059
  {
119194
120060
  const
119195
120061
  attributeName = mutation .attributeName,
119196
120062
  attribute = element .attributes .getNamedItem (attributeName);
119197
120063
 
119198
- parser .nodeAttribute (attribute, DOMIntegration_$.data (element, "node"));
120064
+ parser .nodeAttribute (attribute, node);
119199
120065
  }
119200
120066
  else
119201
120067
  {
@@ -119205,11 +120071,14 @@ class DOMIntegration
119205
120071
  parentNode = element .parentNode,
119206
120072
  node = DOMIntegration_$.data (parentNode, "node");
119207
120073
 
119208
- parser .pushExecutionContext (node .getExecutionContext ());
119209
- parser .pushParent (node);
119210
- parser .childElement (element);
119211
- parser .popParent ();
119212
- parser .popExecutionContext ();
120074
+ if (node)
120075
+ {
120076
+ parser .pushExecutionContext (node .getExecutionContext ());
120077
+ parser .pushParent (node);
120078
+ parser .childElement (element);
120079
+ parser .popParent ();
120080
+ parser .popExecutionContext ();
120081
+ }
119213
120082
  }
119214
120083
  }
119215
120084
 
@@ -119450,7 +120319,7 @@ const DOMIntegration_default_ = DOMIntegration;
119450
120319
  x_ite_Namespace .set ("x_ite/Browser/DOMIntegration", DOMIntegration_default_);
119451
120320
  /* harmony default export */ const Browser_DOMIntegration = (DOMIntegration_default_);
119452
120321
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Legacy.js
119453
- /* provided dependency */ var Legacy_$ = __webpack_require__(834);
120322
+ /* provided dependency */ var Legacy_$ = __webpack_require__(109);
119454
120323
  /*******************************************************************************
119455
120324
  *
119456
120325
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -120281,7 +121150,7 @@ const SupportedProfiles_default_ = SupportedProfiles;
120281
121150
  x_ite_Namespace .set ("x_ite/Configuration/SupportedProfiles", SupportedProfiles_default_);
120282
121151
  /* harmony default export */ const Configuration_SupportedProfiles = (SupportedProfiles_default_);
120283
121152
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/X3DBrowser.js
120284
- /* provided dependency */ var X3DBrowser_$ = __webpack_require__(834);
121153
+ /* provided dependency */ var X3DBrowser_$ = __webpack_require__(109);
120285
121154
  /*******************************************************************************
120286
121155
  *
120287
121156
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -121405,8 +122274,8 @@ const MicroTime_default_ = undefined;
121405
122274
  x_ite_Namespace .set ("standard/Time/MicroTime", MicroTime_default_);
121406
122275
  /* harmony default export */ const MicroTime = ((/* unused pure expression or super */ null && (MicroTime_default_)));
121407
122276
  ;// CONCATENATED MODULE: ./src/lib/jquery.js
121408
- /* provided dependency */ var jquery_$ = __webpack_require__(834);
121409
- /* provided dependency */ var pako = __webpack_require__(660);
122277
+ /* provided dependency */ var jquery_$ = __webpack_require__(109);
122278
+ /* provided dependency */ var pako = __webpack_require__(166);
121410
122279
  Object .assign (jquery_$,
121411
122280
  {
121412
122281
  decodeText (input)
@@ -121471,14 +122340,14 @@ const jquery_default_ = jquery_$;
121471
122340
  x_ite_Namespace .set ("lib/jquery", jquery_default_);
121472
122341
  /* harmony default export */ const jquery = ((/* unused pure expression or super */ null && (jquery_default_)));
121473
122342
  ;// CONCATENATED MODULE: ./src/lib/libtess.js
121474
- /* provided dependency */ var libtess_libtess = __webpack_require__(492);
122343
+ /* provided dependency */ var libtess_libtess = __webpack_require__(207);
121475
122344
  const libtess_default_ = libtess_libtess;
121476
122345
  ;
121477
122346
 
121478
122347
  x_ite_Namespace .set ("lib/libtess", libtess_default_);
121479
122348
  /* harmony default export */ const lib_libtess = ((/* unused pure expression or super */ null && (libtess_default_)));
121480
122349
  ;// CONCATENATED MODULE: ./src/x_ite/X3D.js
121481
- /* provided dependency */ var X3D_$ = __webpack_require__(834);
122350
+ /* provided dependency */ var X3D_$ = __webpack_require__(109);
121482
122351
  /*******************************************************************************
121483
122352
  *
121484
122353
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -121735,7 +122604,7 @@ const X3D_default_ = X3D;
121735
122604
  x_ite_Namespace .set ("x_ite/X3D", X3D_default_);
121736
122605
  /* harmony default export */ const x_ite_X3D = (X3D_default_);
121737
122606
  ;// CONCATENATED MODULE: ./src/x_ite/X3DCanvasElement.js
121738
- /* provided dependency */ var X3DCanvasElement_$ = __webpack_require__(834);
122607
+ /* provided dependency */ var X3DCanvasElement_$ = __webpack_require__(109);
121739
122608
  /*******************************************************************************
121740
122609
  *
121741
122610
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -122004,7 +122873,7 @@ x_ite_Namespace .set ("shim", shim_default_);
122004
122873
 
122005
122874
  // Assign X3D to global namespace.
122006
122875
 
122007
- window [Symbol .for ("X_ITE.X3D-8.8.7")] = x_ite_X3D;
122876
+ window [Symbol .for ("X_ITE.X3D-8.9.0")] = x_ite_X3D;
122008
122877
 
122009
122878
  customElements .define ("x3d-canvas", x_ite_X3DCanvasElement);
122010
122879