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/Makefile CHANGED
@@ -65,6 +65,12 @@ docs:
65
65
  docs-update:
66
66
  cd docs && bundle update
67
67
 
68
+ docs-components:
69
+ node build/docs/components.js
70
+
71
+ docs-nodes:
72
+ perl build/docs/nodes.pl
73
+
68
74
  .PHONY: tests
69
75
  tests:
70
76
  perl build/bin/tests.pl
@@ -0,0 +1,434 @@
1
+ #!/usr/bin/perl
2
+ use v5.10.0;
3
+ use utf8;
4
+ use open qw/:std :utf8/;
5
+
6
+ use Cwd;
7
+ use List::MoreUtils qw(first_index);
8
+ use HTML::Entities;
9
+
10
+
11
+ system "wget -q --output-document - https://www.web3d.org/x3d/content/X3dTooltips.html > /tmp/tooltips.html"
12
+ unless -f "/tmp/tooltips.html";
13
+ $tooltips = `cat /tmp/tooltips.html`;
14
+
15
+ @tooltips = $tooltips =~ m|<td.*?</td.*?>|sgo;
16
+
17
+ s|</?.*?>||sgo foreach @tooltips;
18
+ s/&nbsp;/ /sgo foreach @tooltips;
19
+ s/\s+/ /sgo foreach @tooltips;
20
+ s/^\s+|\s+$//sgo foreach @tooltips;
21
+
22
+ #say @tooltips;
23
+
24
+ $fieldDescription = {
25
+ " " => "",
26
+ "in" => "Input ",
27
+ "out" => "Output ",
28
+ "in, out" => "Input/Output ",
29
+ };
30
+
31
+ sub node {
32
+ $filename = shift;
33
+ chomp $filename;
34
+
35
+ $filename =~ m|([^/]+)/([^/]+)\.js$|o;
36
+
37
+ $componentName = $1;
38
+ $typeName = $2;
39
+
40
+ return if $componentName =~ /^Annotation$/o;
41
+ return if $typeName =~ /^X3D/o;
42
+
43
+ # return unless $typeName =~ /^CADAssembly$/o;
44
+ say "$componentName $typeName";
45
+
46
+ $md = "$cwd/docs/_posts/components/$componentName/$typeName.md";
47
+ $file = `cat $md`;
48
+ $file = reorder_fields ($typeName, $componentName, $file);
49
+ $file = update_example ($typeName, $componentName, $file);
50
+ @fields = map { /\*\*(.*?)\*\*/o; $_ = $1 } $file =~ /###\s*[SM]F\w+.*/go;
51
+
52
+ if (grep /^$typeName$/, @tooltips)
53
+ {
54
+ @node = @tooltips [(first_index { /^$typeName$/ } @tooltips) .. $#tooltips];
55
+ @node = @node [0 .. (first_index { /^$/ } @node)];
56
+
57
+ $file = update_node ($typeName, $componentName, \@node, $file);
58
+ $file = update_field ($_, \@node, $file) foreach @fields;
59
+ }
60
+
61
+ $file = reorder_sections ($file);
62
+
63
+ open FILE, ">", $md;
64
+ print FILE $file;
65
+ close FILE;
66
+ }
67
+
68
+ sub update_node {
69
+ $typeName = shift;
70
+ $componentName = shift;
71
+ $node = shift;
72
+ $file = shift;
73
+ $node = $node -> [1];
74
+
75
+ $source = `cat $cwd/src/x_ite/Components/$componentName/$typeName.js`;
76
+ $source =~ /Object\s*\.freeze\s*\(\["(.*?)", "(.*?)"\]\)/;
77
+ $from = $1;
78
+ $to = $2;
79
+
80
+ $source =~ /containerField:.*?value:\s*"(.*?)"/s;
81
+ $containerField = $1;
82
+
83
+ 1 while $node =~ s/^\s*(?:\[.*?\]|\(.*?\))\s*//so;
84
+ 1 while $node =~ s/^(?:\s*or)?\s*(?:[\[\()].*?[\]\)]|-1\.)\s*//so;
85
+
86
+ decode_entities $node;
87
+ $node =~ s/\s*\|\s*/ or /sgo;
88
+ $node =~ s/([<>|])/\\$1/sgo;
89
+ $node =~ s/&/&amp;/sgo;
90
+
91
+ $node =~ s/(profile=\S+|\\<component.*?>|containerField=\S+)/"`" . code($1) . "`"/sgoe;
92
+
93
+ # Special substitutions
94
+ $node = spelling ($node);
95
+
96
+ @description = @hints = @warnings = ();
97
+
98
+ # Split node.
99
+
100
+ $node =~ s/(Hint\s*:)/$1 __HINT__/sgo;
101
+ $node =~ s/(Warning\s*:)/$1 __WARNING__/sgo;
102
+
103
+ @sentences = split (/(?:Hint|Warning)\s*:/so, $node);
104
+
105
+ foreach (@sentences)
106
+ {
107
+ s/^\s+|\s+$//sgo;
108
+
109
+ if ($_ =~ s/__HINT__//o)
110
+ {
111
+ s/^\s+|\s+$//sgo;
112
+
113
+ push @hints, $_ if $_;
114
+ next;
115
+ }
116
+
117
+ if ($_ =~ s/__WARNING__//o)
118
+ {
119
+ s/^\s+|\s+$//sgo;
120
+
121
+ push @warnings, $_ if $_;
122
+ next;
123
+ }
124
+
125
+ push @description, $_ if $_;
126
+ }
127
+
128
+ $_ = ucfirst foreach @description;
129
+ $_ = ucfirst foreach @hints;
130
+ $_ = ucfirst foreach @warnings;
131
+
132
+ s/(.*?)[\s,]+(https?:.*?)(\s+(?:or|and)\s+|\s+|$)/[$1]($2){:target="_blank"}$3/sgo foreach @hints;
133
+ s/(.*?)[\s,]+(https?:.*?)(\s+(?:or|and)\s+|\s+|$)/[$1]($2){:target="_blank"}$3/sgo foreach @warnings;
134
+ s/(:|\s*at)\]/]/sgo foreach @hints;
135
+ s/(:|\s*at)\]/]/sgo foreach @warnings;
136
+
137
+ # Overview
138
+
139
+ $string = "";
140
+
141
+ if (@description)
142
+ {
143
+ $string .= "\n";
144
+ $string .= join " ", @description;
145
+ $string .= "\n";
146
+ $string .= "\n";
147
+ }
148
+ else
149
+ {
150
+ $string .= "\n";
151
+ $string .= "$typeName ...";
152
+ $string .= "\n";
153
+ $string .= "\n";
154
+ }
155
+
156
+ $string .= "The $typeName node belongs to the **$componentName** component and its default container field is *$containerField.*";
157
+ $string .= " ";
158
+ $string .= "It is available from X3D version $from or higher." if $to eq "Infinity";
159
+ $string .= "It is available from X3D version $from to $to." if $to ne "Infinity";
160
+ $string .= "\n";
161
+ $string .= "\n";
162
+ $string .= ">Deprecated: This node is deprecated as of X3D version $to. Future versions of the standard may remove this node.\n{: .prompt-danger }\n\n" if $to ne "Infinity";
163
+
164
+ $file =~ s/(## Overview\n).*?\n(?=##\s+)/$1$string/s;
165
+
166
+ # Advisories
167
+
168
+ $customs = $1 if $file =~ /## Advisories\s*(.*?)\s*###?\s+/so;
169
+
170
+ $string = "## Advisories\n\n";
171
+ $string .= $customs . "\n\n" if $customs;
172
+
173
+ if (@hints)
174
+ {
175
+ $string .= "### ";
176
+ $string .= @hints == 1 ? "Hint" : "Hints";
177
+ $string .= "\n";
178
+ $string .= "\n";
179
+ $string .= "- $_\n" foreach @hints;
180
+ $string .= "\n";
181
+ }
182
+
183
+ if (@warnings)
184
+ {
185
+ $string .= "### ";
186
+ $string .= @warnings == 1 ? "Warning" : "Warnings";
187
+ $string .= "\n";
188
+ $string .= "\n";
189
+ $string .= "- $_\n" foreach @warnings;
190
+ $string .= "\n";
191
+ }
192
+
193
+ $file =~ s/## Advisories\n.*?\n(?=##\s+|$)//so;
194
+
195
+ if (@hints || @warnings)
196
+ {
197
+ $file =~ s/\s+$//so;
198
+ $file .= "\n\n";
199
+ $file .= $string;
200
+ }
201
+
202
+ return $file;
203
+ }
204
+
205
+ sub code {
206
+ $string = shift;
207
+
208
+ $string =~ s/\\//sgo;
209
+ $string =~ s/`//sgo;
210
+ $string =~ s/="(.*?)"/"='" . attrib($1) . "'"/sgoe;
211
+ $string =~ s/\*(\w+)\*/$1/sgo;
212
+
213
+ return $string;
214
+ }
215
+
216
+ sub attrib {
217
+ $string = shift;
218
+
219
+ $string =~ s/'/"/sgo;
220
+
221
+ return $string;
222
+ }
223
+
224
+ sub spelling {
225
+ $string = shift;
226
+
227
+ $string =~ s/\*next\* to/next to/sgo;
228
+ $string =~ s/\[autoRefresh\b/autoRefresh/sgo;
229
+ $string =~ s/incldes/includes/sgo;
230
+ $string =~ s/polgyonal/polygonal/sgo;
231
+ $string =~ s/renderStryle/renderStyle/sgo;
232
+ $string =~ s/utilitized/utilized/sgo;
233
+ $string =~ s/gemoetry/geometry/sgo;
234
+ $string =~ s/spedification/specification/sgo;
235
+
236
+ $string =~ s|(https://en.wikipedia.org/wiki/Kilogram)|Kilogram $1|sgo;
237
+
238
+ return $string;
239
+ }
240
+
241
+ sub reorder_fields {
242
+ $typeName = shift;
243
+ $componentName = shift;
244
+ $file = shift;
245
+
246
+ $source = `cat $cwd/src/x_ite/Components/$componentName/$typeName.js`;
247
+ @sourceFields = $source =~ /\bX3DFieldDefinition\s*\(.*/go;
248
+ @sourceFields = map { /"(.*?)"/o; $_ = $1 } @sourceFields;
249
+
250
+ $fields = { };
251
+
252
+ foreach $name (@sourceFields)
253
+ {
254
+ $file =~ s/(###.*?\*\*$name\*\*.*?\n[\s\S\n]*?\n)(?=(?:###|##)\s+)//;
255
+ $fields -> {$name} = $1;
256
+ }
257
+
258
+ $string = "";
259
+ $string .= $fields -> {$_} foreach @sourceFields;
260
+
261
+ $file =~ s/(## Fields\n+)/$1$string/so;
262
+
263
+ return $file;
264
+ }
265
+
266
+ sub update_example {
267
+ $typeName = shift;
268
+ $componentName = shift;
269
+ $file = shift;
270
+
271
+ return $file unless -d "../media/docs/examples/$componentName/$typeName";
272
+
273
+ $string = "## Example\n\n";
274
+ $string .= "<x3d-canvas src=\"https://create3000.github.io/media/examples/$componentName/$typeName/$typeName.x3d\" update=\"auto\"></x3d-canvas>";
275
+ $string .= "\n\n";
276
+
277
+ $file =~ s/## Example\n.*?\n(?=##\s+|$)//so;
278
+ $file =~ s/\s+$//so;
279
+ $file .= "\n\n";
280
+ $file .= $string;
281
+
282
+ return $file;
283
+ }
284
+
285
+ sub update_field {
286
+ $name = shift;
287
+ $node = shift;
288
+ $file = shift;
289
+
290
+ # return $file unless $name eq "tolerance";
291
+ # say $name;
292
+
293
+ $file =~ /(###.*?\*\*$name\*\*.*?\n)/;
294
+ $line = $1;
295
+
296
+ $line =~ /###.*?\[(.*?)\].*?\*\*$name\*\*/;
297
+ $accessType = $1;
298
+
299
+ @description = @hints = @warnings = ();
300
+
301
+ if (grep /^$name$/, @$node)
302
+ {
303
+ @field = @$node [(first_index { /^$name$/ } @$node) + 1 .. $#$node];
304
+ $field = shift @field;
305
+
306
+ 1 while $field =~ s/^\s*(?:\[.*?\]|\(.*?\))\s*//so;
307
+ 1 while $field =~ s/^(?:\s*or)?\s*(?:[\[\()].*?[\]\)]|-1\.)\s*//so;
308
+
309
+ decode_entities $field;
310
+ $field =~ s/\s*\|\s*/ or /sgo;
311
+ $field =~ s/([<>|])/\\$1/sgo;
312
+ $field =~ s/&/&amp;/sgo;
313
+
314
+ $field =~ s/\b$name\b/*$name*/sg;
315
+ $n = $1, $field =~ s/\b$n\b/*$n*/sg if $name =~ /^set_(.*)$/;
316
+ $field =~ s/(profile=\S+|\\<\w+.*?>|containerField=\S+)/"`" . code($1) . "`"/sgoe;
317
+
318
+ # Special substitutions.
319
+ $field = spelling ($field);
320
+
321
+ # Split field.
322
+
323
+ $field =~ s/(Hint\s*:)/$1 __HINT__/sgo;
324
+ $field =~ s/(Warning\s*:)/$1 __WARNING__/sgo;
325
+
326
+ @sentences = split (/(?:Hint|Warning)\s*:/so, $field);
327
+
328
+ foreach (@sentences)
329
+ {
330
+ s/^\s+|\s+$//sgo;
331
+
332
+ if ($_ =~ s/__HINT__//o)
333
+ {
334
+ s/^\s+|\s+$//sgo;
335
+
336
+ push @hints, $_ if $_;
337
+ next;
338
+ }
339
+
340
+ if ($_ =~ s/__WARNING__//o)
341
+ {
342
+ s/^\s+|\s+$//sgo;
343
+
344
+ push @warnings, $_ if $_;
345
+ next;
346
+ }
347
+
348
+ push @description, $_ if $_;
349
+ }
350
+
351
+ $_ = ucfirst foreach @description;
352
+ $_ = ucfirst foreach @hints;
353
+ $_ = ucfirst foreach @warnings;
354
+
355
+ s/(.*?)[\s,]+(https?:.*?)(\s+(?:or|and)\s+|\s+|$)/[$1]($2){:target="_blank"}$3/sgo foreach @hints;
356
+ s/(.*?)[\s,]+(https?:.*?)(\s+(?:or|and)\s+|\s+|$)/[$1]($2){:target="_blank"}$3/sgo foreach @warnings;
357
+ s/(:|\s*at)\]/]/sgo foreach @hints;
358
+ s/(:|\s*at)\]/]/sgo foreach @warnings;
359
+ }
360
+ else
361
+ {
362
+ return $file if $line =~ /non standard/;
363
+ }
364
+
365
+ $string = "";
366
+
367
+ if (@description)
368
+ {
369
+ $string .= "\n";
370
+ $string .= join " ", @description;
371
+ $string .= "\n";
372
+ $string .= "\n";
373
+ }
374
+ else
375
+ {
376
+ $string .= "\n";
377
+ $string .= ucfirst ($fieldDescription -> {$accessType} . "field *$name*.");
378
+ $string .= "\n";
379
+ $string .= "\n";
380
+ }
381
+
382
+ if (@hints)
383
+ {
384
+ $string .= "#### ";
385
+ $string .= @hints == 1 ? "Hint" : "Hints";
386
+ $string .= "\n";
387
+ $string .= "\n";
388
+ $string .= "- $_\n" foreach @hints;
389
+ $string .= "\n";
390
+ }
391
+
392
+ if (@warnings)
393
+ {
394
+ $string .= "#### ";
395
+ $string .= @warnings == 1 ? "Warning" : "Warnings";
396
+ $string .= "\n";
397
+ $string .= "\n";
398
+ $string .= "- $_\n" foreach @warnings;
399
+ $string .= "\n";
400
+ }
401
+
402
+ # say $name;
403
+ # print "'$string'";
404
+
405
+ $file =~ s/(###.*?\*\*$name\*\*.*?\n).*?\n((?:###|##)\s+)/$1$string$2/s if $string;
406
+
407
+ return $file;
408
+ }
409
+
410
+ sub reorder_sections {
411
+ $file = shift;
412
+ @sections = ("Overview", "Hierarchy", "Fields", "Advisories", "Example", "See Also");
413
+ $sections = { };
414
+
415
+ foreach $s (@sections)
416
+ {
417
+ $file =~ s/(##\s+$s.*?\n)(?=##\s+|$)//s;
418
+ $sections -> {$s} = $1;
419
+ $sections -> {$s} =~ s/\s+$//so;
420
+ }
421
+
422
+ $file =~ s/\s+$/\n\n/so;
423
+
424
+ $file .= $sections -> {$_} . "\n\n" foreach grep { $sections -> {$_} } @sections;
425
+ $file =~ s/\s+$/\n/so;
426
+
427
+ return $file;
428
+ }
429
+
430
+ $cwd = getcwd ();
431
+
432
+ system "git checkout -- docs/_posts/components/";
433
+
434
+ node $_ foreach sort `find $cwd/src/x_ite/Components -type f -mindepth 2`;
@@ -1,4 +1,4 @@
1
- /* X_ITE v8.8.7 */(() => { // webpackBootstrap
1
+ /* X_ITE v8.9.0 */(() => { // webpackBootstrap
2
2
  /******/ "use strict";
3
3
  /******/ // The require scope
4
4
  /******/ var __webpack_require__ = {};
@@ -39,31 +39,31 @@ var __webpack_exports__ = {};
39
39
  // UNUSED EXPORTS: default
40
40
 
41
41
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components\")"
42
- const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components");
42
+ const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components");
43
43
  var Components_default = /*#__PURE__*/__webpack_require__.n(Components_namespaceObject);
44
44
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Fields\")"
45
- const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Fields");
45
+ const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Fields");
46
46
  var Fields_default = /*#__PURE__*/__webpack_require__.n(Fields_namespaceObject);
47
47
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DFieldDefinition\")"
48
- const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Base/X3DFieldDefinition");
48
+ const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Base/X3DFieldDefinition");
49
49
  var X3DFieldDefinition_default = /*#__PURE__*/__webpack_require__.n(X3DFieldDefinition_namespaceObject);
50
50
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/FieldDefinitionArray\")"
51
- const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Base/FieldDefinitionArray");
51
+ const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Base/FieldDefinitionArray");
52
52
  var FieldDefinitionArray_default = /*#__PURE__*/__webpack_require__.n(FieldDefinitionArray_namespaceObject);
53
53
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Layering/X3DLayerNode\")"
54
- const X3DLayerNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Layering/X3DLayerNode");
54
+ const X3DLayerNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Layering/X3DLayerNode");
55
55
  var X3DLayerNode_default = /*#__PURE__*/__webpack_require__.n(X3DLayerNode_namespaceObject);
56
56
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Navigation/Viewpoint\")"
57
- const Viewpoint_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Navigation/Viewpoint");
57
+ const Viewpoint_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Navigation/Viewpoint");
58
58
  var Viewpoint_default = /*#__PURE__*/__webpack_require__.n(Viewpoint_namespaceObject);
59
59
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/Group\")"
60
- const Group_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Grouping/Group");
60
+ const Group_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Grouping/Group");
61
61
  var Group_default = /*#__PURE__*/__webpack_require__.n(Group_namespaceObject);
62
62
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DConstants\")"
63
- const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Base/X3DConstants");
63
+ const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Base/X3DConstants");
64
64
  var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
65
65
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Namespace\")"
66
- const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Namespace");
66
+ const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Namespace");
67
67
  var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
68
68
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/AnnotationLayer.js
69
69
  /*******************************************************************************
@@ -180,7 +180,7 @@ const __default__ = AnnotationLayer;
180
180
  Namespace_default().set ("x_ite/Components/Annotation/AnnotationLayer", __default__);
181
181
  /* harmony default export */ const Annotation_AnnotationLayer = (__default__);
182
182
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DChildNode\")"
183
- const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Core/X3DChildNode");
183
+ const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Core/X3DChildNode");
184
184
  var X3DChildNode_default = /*#__PURE__*/__webpack_require__.n(X3DChildNode_namespaceObject);
185
185
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/AnnotationTarget.js
186
186
  /*******************************************************************************
@@ -292,7 +292,7 @@ const AnnotationTarget_default_ = AnnotationTarget;
292
292
  Namespace_default().set ("x_ite/Components/Annotation/AnnotationTarget", AnnotationTarget_default_);
293
293
  /* harmony default export */ const Annotation_AnnotationTarget = (AnnotationTarget_default_);
294
294
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DGroupingNode\")"
295
- const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
295
+ const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
296
296
  var X3DGroupingNode_default = /*#__PURE__*/__webpack_require__.n(X3DGroupingNode_namespaceObject);
297
297
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/X3DAnnotationNode.js
298
298
  /*******************************************************************************
@@ -504,7 +504,7 @@ const GroupAnnotation_default_ = GroupAnnotation;
504
504
  Namespace_default().set ("x_ite/Components/Annotation/GroupAnnotation", GroupAnnotation_default_);
505
505
  /* harmony default export */ const Annotation_GroupAnnotation = (GroupAnnotation_default_);
506
506
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/X3DUrlObject\")"
507
- const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Networking/X3DUrlObject");
507
+ const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Networking/X3DUrlObject");
508
508
  var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_namespaceObject);
509
509
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/IconAnnotation.js
510
510
  /*******************************************************************************
@@ -1 +1 @@
1
- /* X_ITE v8.8.7 */(()=>{"use strict";var e={n:t=>{var n=t&&t.__esModule?()=>t.default:()=>t;return e.d(n,{a:n}),n},d:(t,n)=>{for(var i in n)e.o(n,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:n[i]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Components");var n=e.n(t);const i=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Fields");var o=e.n(i);const a=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Base/X3DFieldDefinition");var p=e.n(a);const r=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Base/FieldDefinitionArray");var u=e.n(r);const l=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Components/Layering/X3DLayerNode");var s=e.n(l);const c=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Components/Navigation/Viewpoint");var w=e.n(c);const d=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Components/Grouping/Group");var m=e.n(d);const y=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Base/X3DConstants");var b=e.n(y);const O=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Namespace");var f=e.n(O);function S(e){s().call(this,e,new(w())(e),new(m())(e)),this.addType(b().AnnotationLayer)}Object.assign(Object.setPrototypeOf(S.prototype,s().prototype),{initialize(){s().prototype.initialize.call(this)}}),Object.defineProperties(S,{typeName:{value:"AnnotationLayer",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"layers",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"isPickable",new(o().SFBool)(!0)),new(p())(b().inputOutput,"layoutPolicy",new(o().MFString)),new(p())(b().inputOutput,"shownGroupID",new(o().MFString)),new(p())(b().inputOutput,"viewport",new(o().SFNode))]),enumerable:!0}});const v=S;f().set("x_ite/Components/Annotation/AnnotationLayer",v);const F=v,h=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Components/Core/X3DChildNode");var N=e.n(h);function A(e){N().call(this,e),this.addType(b().AnnotationTarget)}Object.assign(Object.setPrototypeOf(A.prototype,N().prototype),{initialize(){N().prototype.initialize.call(this)}}),Object.defineProperties(A,{typeName:{value:"AnnotationTarget",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"referencePoint",new(o().SFVec3f)(0,0,0)),new(p())(b().inputOutput,"leadLineStyle",new(o().SFNode)),new(p())(b().inputOutput,"marker",new(o().SFNode)),new(p())(b().inputOutput,"annotations",new(o().MFNode))]),enumerable:!0}});const g=A;f().set("x_ite/Components/Annotation/AnnotationTarget",g);const D=g,X=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Components/Grouping/X3DGroupingNode");var _=e.n(X);function j(e){N().call(this,e),this.addType(b().X3DAnnotationNode)}Object.assign(Object.setPrototypeOf(j.prototype,N().prototype),{initialize(){N().prototype.initialize.call(this)}}),Object.defineProperties(j,{typeName:{value:"X3DAnnotationNode",enumerable:!0},componentName:{value:"Annotation",enumerable:!0}});const T=j;f().set("x_ite/Components/Annotation/X3DAnnotationNode",T);const x=T;function I(e){_().call(this,e),x.call(this,e),this.addType(b().GroupAnnotation)}Object.assign(Object.setPrototypeOf(I.prototype,_().prototype),x.prototype,{initialize(){_().prototype.initialize.call(this),x.prototype.initialize.call(this)},dispose(){x.prototype.dispose.call(this),_().prototype.dispose.call(this)}}),Object.defineProperties(I,{typeName:{value:"GroupAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"visible",new(o().SFBool)(!0)),new(p())(b().inputOutput,"bboxDisplay",new(o().SFBool)),new(p())(b().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(p())(b().initializeOnly,"bboxCenter",new(o().SFVec3f)(0,0,0)),new(p())(b().inputOnly,"addChildren",new(o().MFNode)),new(p())(b().inputOnly,"removeChildren",new(o().MFNode)),new(p())(b().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const z=I;f().set("x_ite/Components/Annotation/GroupAnnotation",z);const P=z,C=window[Symbol.for("X_ITE.X3D-8.8.7")].require("x_ite/Components/Networking/X3DUrlObject");var E=e.n(C);function R(e){x.call(this,e),E().call(this,e),this.addType(b().IconAnnotation)}Object.assign(Object.setPrototypeOf(R.prototype,x.prototype),E().prototype,{initialize(){x.prototype.initialize.call(this),E().prototype.initialize.call(this)},requestImmediateLoad(e=!0){},dispose(){E().prototype.dispose.call(this),x.prototype.dispose.call(this)}}),Object.defineProperties(R,{typeName:{value:"IconAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"url",new(o().MFString)),new(p())(b().inputOutput,"autoRefresh",new(o().SFTime)),new(p())(b().inputOutput,"autoRefreshTimeLimit",new(o().SFTime)(3600))]),enumerable:!0}});const q=R;f().set("x_ite/Components/Annotation/IconAnnotation",q);const G=q;function L(e){x.call(this,e),this.addType(b().TextAnnotation)}Object.assign(Object.setPrototypeOf(L.prototype,x.prototype),{initialize(){x.prototype.initialize.call(this)}}),Object.defineProperties(L,{typeName:{value:"TextAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"contentType",new(o().SFString)("text/plain")),new(p())(b().inputOutput,"text",new(o().SFString))]),enumerable:!0}});const B=L;f().set("x_ite/Components/Annotation/TextAnnotation",B);const M=B;function V(e){x.call(this,e),this.addType(b().URLAnnotation)}Object.assign(Object.setPrototypeOf(V.prototype,x.prototype),{initialize(){x.prototype.initialize.call(this)}}),Object.defineProperties(V,{typeName:{value:"URLAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"url",new(o().MFString))]),enumerable:!0}});const U=V;f().set("x_ite/Components/Annotation/URLAnnotation",U);const k=U;n().add({name:"Annotation",concreteNodes:[F,D,P,G,M,k],abstractNodes:[x]});const H=void 0;f().set("assets/components/Annotation",H)})();
1
+ /* X_ITE v8.9.0 */(()=>{"use strict";var e={n:t=>{var n=t&&t.__esModule?()=>t.default:()=>t;return e.d(n,{a:n}),n},d:(t,n)=>{for(var i in n)e.o(n,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:n[i]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Components");var n=e.n(t);const i=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Fields");var o=e.n(i);const a=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Base/X3DFieldDefinition");var p=e.n(a);const r=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Base/FieldDefinitionArray");var u=e.n(r);const l=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Components/Layering/X3DLayerNode");var s=e.n(l);const c=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Components/Navigation/Viewpoint");var w=e.n(c);const d=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Components/Grouping/Group");var m=e.n(d);const y=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Base/X3DConstants");var b=e.n(y);const O=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Namespace");var f=e.n(O);function S(e){s().call(this,e,new(w())(e),new(m())(e)),this.addType(b().AnnotationLayer)}Object.assign(Object.setPrototypeOf(S.prototype,s().prototype),{initialize(){s().prototype.initialize.call(this)}}),Object.defineProperties(S,{typeName:{value:"AnnotationLayer",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"layers",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"isPickable",new(o().SFBool)(!0)),new(p())(b().inputOutput,"layoutPolicy",new(o().MFString)),new(p())(b().inputOutput,"shownGroupID",new(o().MFString)),new(p())(b().inputOutput,"viewport",new(o().SFNode))]),enumerable:!0}});const v=S;f().set("x_ite/Components/Annotation/AnnotationLayer",v);const F=v,h=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Components/Core/X3DChildNode");var N=e.n(h);function A(e){N().call(this,e),this.addType(b().AnnotationTarget)}Object.assign(Object.setPrototypeOf(A.prototype,N().prototype),{initialize(){N().prototype.initialize.call(this)}}),Object.defineProperties(A,{typeName:{value:"AnnotationTarget",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"referencePoint",new(o().SFVec3f)(0,0,0)),new(p())(b().inputOutput,"leadLineStyle",new(o().SFNode)),new(p())(b().inputOutput,"marker",new(o().SFNode)),new(p())(b().inputOutput,"annotations",new(o().MFNode))]),enumerable:!0}});const g=A;f().set("x_ite/Components/Annotation/AnnotationTarget",g);const D=g,X=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Components/Grouping/X3DGroupingNode");var _=e.n(X);function j(e){N().call(this,e),this.addType(b().X3DAnnotationNode)}Object.assign(Object.setPrototypeOf(j.prototype,N().prototype),{initialize(){N().prototype.initialize.call(this)}}),Object.defineProperties(j,{typeName:{value:"X3DAnnotationNode",enumerable:!0},componentName:{value:"Annotation",enumerable:!0}});const T=j;f().set("x_ite/Components/Annotation/X3DAnnotationNode",T);const x=T;function I(e){_().call(this,e),x.call(this,e),this.addType(b().GroupAnnotation)}Object.assign(Object.setPrototypeOf(I.prototype,_().prototype),x.prototype,{initialize(){_().prototype.initialize.call(this),x.prototype.initialize.call(this)},dispose(){x.prototype.dispose.call(this),_().prototype.dispose.call(this)}}),Object.defineProperties(I,{typeName:{value:"GroupAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"visible",new(o().SFBool)(!0)),new(p())(b().inputOutput,"bboxDisplay",new(o().SFBool)),new(p())(b().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(p())(b().initializeOnly,"bboxCenter",new(o().SFVec3f)(0,0,0)),new(p())(b().inputOnly,"addChildren",new(o().MFNode)),new(p())(b().inputOnly,"removeChildren",new(o().MFNode)),new(p())(b().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const z=I;f().set("x_ite/Components/Annotation/GroupAnnotation",z);const P=z,C=window[Symbol.for("X_ITE.X3D-8.9.0")].require("x_ite/Components/Networking/X3DUrlObject");var E=e.n(C);function R(e){x.call(this,e),E().call(this,e),this.addType(b().IconAnnotation)}Object.assign(Object.setPrototypeOf(R.prototype,x.prototype),E().prototype,{initialize(){x.prototype.initialize.call(this),E().prototype.initialize.call(this)},requestImmediateLoad(e=!0){},dispose(){E().prototype.dispose.call(this),x.prototype.dispose.call(this)}}),Object.defineProperties(R,{typeName:{value:"IconAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"url",new(o().MFString)),new(p())(b().inputOutput,"autoRefresh",new(o().SFTime)),new(p())(b().inputOutput,"autoRefreshTimeLimit",new(o().SFTime)(3600))]),enumerable:!0}});const q=R;f().set("x_ite/Components/Annotation/IconAnnotation",q);const G=q;function L(e){x.call(this,e),this.addType(b().TextAnnotation)}Object.assign(Object.setPrototypeOf(L.prototype,x.prototype),{initialize(){x.prototype.initialize.call(this)}}),Object.defineProperties(L,{typeName:{value:"TextAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"contentType",new(o().SFString)("text/plain")),new(p())(b().inputOutput,"text",new(o().SFString))]),enumerable:!0}});const B=L;f().set("x_ite/Components/Annotation/TextAnnotation",B);const M=B;function V(e){x.call(this,e),this.addType(b().URLAnnotation)}Object.assign(Object.setPrototypeOf(V.prototype,x.prototype),{initialize(){x.prototype.initialize.call(this)}}),Object.defineProperties(V,{typeName:{value:"URLAnnotation",enumerable:!0},componentName:{value:"Annotation",enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze(["4.0","Infinity"]),enumerable:!0},fieldDefinitions:{value:new(u())([new(p())(b().inputOutput,"metadata",new(o().SFNode)),new(p())(b().inputOutput,"enabled",new(o().SFBool)(!0)),new(p())(b().inputOutput,"annotationGroupID",new(o().SFString)),new(p())(b().inputOutput,"displayPolicy",new(o().SFString)("NEVER")),new(p())(b().inputOutput,"url",new(o().MFString))]),enumerable:!0}});const U=V;f().set("x_ite/Components/Annotation/URLAnnotation",U);const k=U;n().add({name:"Annotation",concreteNodes:[F,D,P,G,M,k],abstractNodes:[x]});const H=void 0;f().set("assets/components/Annotation",H)})();
@@ -1,4 +1,4 @@
1
- /* X_ITE v8.8.7 */(() => { // webpackBootstrap
1
+ /* X_ITE v8.9.0 */(() => { // webpackBootstrap
2
2
  /******/ "use strict";
3
3
  /******/ // The require scope
4
4
  /******/ var __webpack_require__ = {};
@@ -39,28 +39,28 @@ var __webpack_exports__ = {};
39
39
  // UNUSED EXPORTS: default
40
40
 
41
41
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components\")"
42
- const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components");
42
+ const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components");
43
43
  var Components_default = /*#__PURE__*/__webpack_require__.n(Components_namespaceObject);
44
44
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Fields\")"
45
- const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Fields");
45
+ const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Fields");
46
46
  var Fields_default = /*#__PURE__*/__webpack_require__.n(Fields_namespaceObject);
47
47
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DFieldDefinition\")"
48
- const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Base/X3DFieldDefinition");
48
+ const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Base/X3DFieldDefinition");
49
49
  var X3DFieldDefinition_default = /*#__PURE__*/__webpack_require__.n(X3DFieldDefinition_namespaceObject);
50
50
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/FieldDefinitionArray\")"
51
- const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Base/FieldDefinitionArray");
51
+ const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Base/FieldDefinitionArray");
52
52
  var FieldDefinitionArray_default = /*#__PURE__*/__webpack_require__.n(FieldDefinitionArray_namespaceObject);
53
53
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DGroupingNode\")"
54
- const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
54
+ const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
55
55
  var X3DGroupingNode_default = /*#__PURE__*/__webpack_require__.n(X3DGroupingNode_namespaceObject);
56
56
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DChildNode\")"
57
- const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Core/X3DChildNode");
57
+ const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Core/X3DChildNode");
58
58
  var X3DChildNode_default = /*#__PURE__*/__webpack_require__.n(X3DChildNode_namespaceObject);
59
59
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DConstants\")"
60
- const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Base/X3DConstants");
60
+ const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Base/X3DConstants");
61
61
  var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
62
62
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Namespace\")"
63
- const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Namespace");
63
+ const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Namespace");
64
64
  var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
65
65
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/X3DProductStructureChildNode.js
66
66
  /*******************************************************************************
@@ -254,10 +254,10 @@ const CADAssembly_default_ = CADAssembly;
254
254
  Namespace_default().set ("x_ite/Components/CADGeometry/CADAssembly", CADAssembly_default_);
255
255
  /* harmony default export */ const CADGeometry_CADAssembly = (CADAssembly_default_);
256
256
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DBoundedObject\")"
257
- const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Grouping/X3DBoundedObject");
257
+ const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Grouping/X3DBoundedObject");
258
258
  var X3DBoundedObject_default = /*#__PURE__*/__webpack_require__.n(X3DBoundedObject_namespaceObject);
259
259
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Rendering/TraverseType\")"
260
- const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Rendering/TraverseType");
260
+ const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Rendering/TraverseType");
261
261
  var TraverseType_default = /*#__PURE__*/__webpack_require__.n(TraverseType_namespaceObject);
262
262
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/CADFace.js
263
263
  /*******************************************************************************
@@ -624,7 +624,7 @@ const CADLayer_default_ = CADLayer;
624
624
  Namespace_default().set ("x_ite/Components/CADGeometry/CADLayer", CADLayer_default_);
625
625
  /* harmony default export */ const CADGeometry_CADLayer = (CADLayer_default_);
626
626
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DTransformNode\")"
627
- const X3DTransformNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Grouping/X3DTransformNode");
627
+ const X3DTransformNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Grouping/X3DTransformNode");
628
628
  var X3DTransformNode_default = /*#__PURE__*/__webpack_require__.n(X3DTransformNode_namespaceObject);
629
629
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/CADPart.js
630
630
  /*******************************************************************************
@@ -744,7 +744,7 @@ const CADPart_default_ = CADPart;
744
744
  Namespace_default().set ("x_ite/Components/CADGeometry/CADPart", CADPart_default_);
745
745
  /* harmony default export */ const CADGeometry_CADPart = (CADPart_default_);
746
746
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Rendering/X3DComposedGeometryNode\")"
747
- const X3DComposedGeometryNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.7")] .require ("x_ite/Components/Rendering/X3DComposedGeometryNode");
747
+ const X3DComposedGeometryNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.9.0")] .require ("x_ite/Components/Rendering/X3DComposedGeometryNode");
748
748
  var X3DComposedGeometryNode_default = /*#__PURE__*/__webpack_require__.n(X3DComposedGeometryNode_namespaceObject);
749
749
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/IndexedQuadSet.js
750
750
  /*******************************************************************************