x_ite 8.7.8 → 8.8.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 (646) hide show
  1. package/Makefile +3 -0
  2. package/build/bin/version.pl +1 -1
  3. package/dist/assets/components/Annotation.js +248 -169
  4. package/dist/assets/components/Annotation.min.js +1 -1
  5. package/dist/assets/components/CADGeometry.js +296 -233
  6. package/dist/assets/components/CADGeometry.min.js +1 -1
  7. package/dist/assets/components/CubeMapTexturing.js +217 -172
  8. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  9. package/dist/assets/components/DIS.js +451 -387
  10. package/dist/assets/components/DIS.min.js +1 -1
  11. package/dist/assets/components/EventUtilities.js +309 -208
  12. package/dist/assets/components/EventUtilities.min.js +1 -1
  13. package/dist/assets/components/Geometry2D.js +397 -333
  14. package/dist/assets/components/Geometry2D.min.js +1 -1
  15. package/dist/assets/components/Geospatial.js +705 -575
  16. package/dist/assets/components/Geospatial.min.js +1 -1
  17. package/dist/assets/components/HAnim.js +319 -259
  18. package/dist/assets/components/HAnim.min.js +1 -1
  19. package/dist/assets/components/KeyDeviceSensor.js +134 -99
  20. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  21. package/dist/assets/components/Layout.js +305 -240
  22. package/dist/assets/components/Layout.min.js +1 -1
  23. package/dist/assets/components/NURBS.js +781 -626
  24. package/dist/assets/components/NURBS.min.js +1 -1
  25. package/dist/assets/components/ParticleSystems.js +632 -460
  26. package/dist/assets/components/ParticleSystems.min.js +1 -1
  27. package/dist/assets/components/Picking.js +376 -295
  28. package/dist/assets/components/Picking.min.js +1 -1
  29. package/dist/assets/components/RigidBodyPhysics.js +936 -749
  30. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  31. package/dist/assets/components/Scripting.js +173 -103
  32. package/dist/assets/components/Scripting.min.js +1 -1
  33. package/dist/assets/components/Text.js +241 -207
  34. package/dist/assets/components/Text.min.js +1 -1
  35. package/dist/assets/components/TextureProjector.js +162 -129
  36. package/dist/assets/components/TextureProjector.min.js +1 -1
  37. package/dist/assets/components/Texturing3D.js +485 -384
  38. package/dist/assets/components/Texturing3D.min.js +1 -1
  39. package/dist/assets/components/VolumeRendering.js +741 -547
  40. package/dist/assets/components/VolumeRendering.min.js +1 -1
  41. package/dist/assets/components/X_ITE.js +66 -54
  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 +61554 -59658
  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/package.json +4 -4
  49. package/src/assets/components/Annotation.js +14 -14
  50. package/src/assets/components/CADGeometry.js +14 -14
  51. package/src/assets/components/CubeMapTexturing.js +11 -11
  52. package/src/assets/components/DIS.js +13 -13
  53. package/src/assets/components/EventUtilities.js +16 -16
  54. package/src/assets/components/Geometry2D.js +15 -15
  55. package/src/assets/components/Geospatial.js +19 -19
  56. package/src/assets/components/HAnim.js +13 -13
  57. package/src/assets/components/KeyDeviceSensor.js +10 -10
  58. package/src/assets/components/Layout.js +13 -13
  59. package/src/assets/components/NURBS.js +24 -24
  60. package/src/assets/components/ParticleSystems.js +19 -19
  61. package/src/assets/components/Picking.js +14 -14
  62. package/src/assets/components/RigidBodyPhysics.js +24 -24
  63. package/src/assets/components/Scripting.js +9 -9
  64. package/src/assets/components/Text.js +10 -10
  65. package/src/assets/components/TextureProjector.js +10 -10
  66. package/src/assets/components/Texturing3D.js +16 -16
  67. package/src/assets/components/VolumeRendering.js +23 -23
  68. package/src/assets/components/X_ITE.js +8 -7
  69. package/src/assets/shaders/webgl1/include/Shadow.glsl.js +21 -25
  70. package/src/assets/shaders/webgl2/include/Shadow.glsl.js +23 -27
  71. package/src/bookmarks.js +2 -2
  72. package/src/lib/jquery.js +42 -30
  73. package/src/standard/Geospatial/Geodetic.js +8 -9
  74. package/src/standard/Geospatial/UniversalTransverseMercator.js +4 -5
  75. package/src/standard/Math/Algorithm.js +41 -56
  76. package/src/standard/Math/Algorithms/Bezier.js +2 -2
  77. package/src/standard/Math/Algorithms/MergeSort.js +6 -6
  78. package/src/standard/Math/Algorithms/PartialSort.js +5 -5
  79. package/src/standard/Math/Algorithms/QuickSort.js +5 -5
  80. package/src/standard/Math/Geometry/Box2.js +16 -17
  81. package/src/standard/Math/Geometry/Box3.js +18 -19
  82. package/src/standard/Math/Geometry/Camera.js +6 -5
  83. package/src/standard/Math/Geometry/Cylinder3.js +6 -7
  84. package/src/standard/Math/Geometry/Line2.js +20 -18
  85. package/src/standard/Math/Geometry/Line3.js +20 -18
  86. package/src/standard/Math/Geometry/Plane3.js +11 -12
  87. package/src/standard/Math/Geometry/Sphere3.js +6 -7
  88. package/src/standard/Math/Geometry/Spheroid3.js +6 -7
  89. package/src/standard/Math/Geometry/Triangle2.js +4 -3
  90. package/src/standard/Math/Geometry/Triangle3.js +5 -4
  91. package/src/standard/Math/Geometry/ViewVolume.js +6 -7
  92. package/src/standard/Math/Numbers/Color3.js +18 -19
  93. package/src/standard/Math/Numbers/Color4.js +20 -21
  94. package/src/standard/Math/Numbers/Complex.js +28 -29
  95. package/src/standard/Math/Numbers/Matrix2.js +22 -23
  96. package/src/standard/Math/Numbers/Matrix3.js +28 -29
  97. package/src/standard/Math/Numbers/Matrix4.js +29 -30
  98. package/src/standard/Math/Numbers/Quaternion.js +40 -41
  99. package/src/standard/Math/Numbers/Rotation4.js +34 -35
  100. package/src/standard/Math/Numbers/Vector2.js +29 -30
  101. package/src/standard/Math/Numbers/Vector3.js +32 -33
  102. package/src/standard/Math/Numbers/Vector4.js +34 -35
  103. package/src/standard/Math/Utility/BVH.js +14 -15
  104. package/src/standard/Math/Utility/MatrixStack.js +12 -12
  105. package/src/standard/Time/MicroTime.js +4 -3
  106. package/src/standard/Utility/BitSet.js +10 -11
  107. package/src/standard/Utility/DataStorage.js +10 -10
  108. package/src/standard/Utility/MapUtilities.js +2 -1
  109. package/src/standard/Utility/ObjectCache.js +3 -3
  110. package/src/tests.js +10 -0
  111. package/src/x_ite/Base/Events.js +3 -3
  112. package/src/x_ite/Base/FieldArray.js +11 -9
  113. package/src/x_ite/Base/FieldDefinitionArray.js +11 -9
  114. package/src/x_ite/Base/X3DArrayField.js +13 -14
  115. package/src/x_ite/Base/X3DBaseNode.js +219 -181
  116. package/src/x_ite/Base/X3DCast.js +1 -1
  117. package/src/x_ite/Base/X3DChildObject.js +162 -53
  118. package/src/x_ite/Base/X3DConstants.js +74 -60
  119. package/src/x_ite/Base/X3DEventObject.js +6 -12
  120. package/src/x_ite/Base/X3DField.js +45 -42
  121. package/src/x_ite/Base/X3DFieldDefinition.js +9 -7
  122. package/src/x_ite/Base/X3DInfoArray.js +75 -65
  123. package/src/x_ite/Base/X3DObject.js +59 -29
  124. package/src/x_ite/Base/X3DObjectArrayField.js +51 -117
  125. package/src/x_ite/Base/X3DTypedArrayField.js +48 -42
  126. package/src/x_ite/Browser/Core/BrowserOptions.js +55 -57
  127. package/src/x_ite/Browser/Core/BrowserProperties.js +18 -20
  128. package/src/x_ite/Browser/Core/BrowserTimings.js +29 -33
  129. package/src/x_ite/Browser/Core/Context.js +7 -7
  130. package/src/x_ite/Browser/Core/ContextMenu.js +61 -83
  131. package/src/x_ite/Browser/Core/Notification.js +12 -12
  132. package/src/x_ite/Browser/Core/RenderingProperties.js +28 -28
  133. package/src/x_ite/Browser/Core/X3DCoreContext.js +45 -37
  134. package/src/x_ite/Browser/DOMIntegration.js +4 -1
  135. package/src/x_ite/Browser/EnvironmentalEffects/X3DEnvironmentalEffectsContext.js +3 -3
  136. package/src/x_ite/Browser/Followers/X3DArrayChaserTemplate.js +1 -1
  137. package/src/x_ite/Browser/Followers/X3DArrayFollowerTemplate.js +12 -12
  138. package/src/x_ite/Browser/Geometry2D/Arc2DOptions.js +8 -14
  139. package/src/x_ite/Browser/Geometry2D/ArcClose2DOptions.js +8 -14
  140. package/src/x_ite/Browser/Geometry2D/Circle2DOptions.js +13 -17
  141. package/src/x_ite/Browser/Geometry2D/Disk2DOptions.js +15 -19
  142. package/src/x_ite/Browser/Geometry2D/Rectangle2DOptions.js +12 -16
  143. package/src/x_ite/Browser/Geometry2D/X3DGeometry2DContext.js +9 -9
  144. package/src/x_ite/Browser/Geometry3D/BoxOptions.js +12 -16
  145. package/src/x_ite/Browser/Geometry3D/ConeOptions.js +6 -12
  146. package/src/x_ite/Browser/Geometry3D/CylinderOptions.js +6 -12
  147. package/src/x_ite/Browser/Geometry3D/IcoSphereOptions.js +13 -17
  148. package/src/x_ite/Browser/Geometry3D/QuadSphereOptions.js +17 -21
  149. package/src/x_ite/Browser/Geometry3D/X3DGeometry3DContext.js +8 -8
  150. package/src/x_ite/Browser/Geospatial/Geocentric.js +5 -6
  151. package/src/x_ite/Browser/Geospatial/Geospatial.js +10 -10
  152. package/src/x_ite/Browser/Grouping/X3DGroupingContext.js +3 -3
  153. package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator.js +2 -3
  154. package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator1.js +8 -9
  155. package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolatorTemplate.js +7 -8
  156. package/src/x_ite/Browser/Interpolation/SquatInterpolator.js +3 -4
  157. package/src/x_ite/Browser/KeyDeviceSensor/X3DKeyDeviceSensorContext.js +8 -8
  158. package/src/x_ite/Browser/Layering/X3DLayeringContext.js +4 -4
  159. package/src/x_ite/Browser/Layout/ScreenText.js +7 -8
  160. package/src/x_ite/Browser/Layout/X3DLayoutContext.js +3 -3
  161. package/src/x_ite/Browser/Legacy.js +32 -12
  162. package/src/x_ite/Browser/Lighting/X3DLightingContext.js +5 -5
  163. package/src/x_ite/Browser/NURBS/NURBS.js +10 -10
  164. package/src/x_ite/Browser/Navigation/ExamineViewer.js +32 -20
  165. package/src/x_ite/Browser/Navigation/FlyViewer.js +22 -10
  166. package/src/x_ite/Browser/Navigation/LookAtViewer.js +29 -17
  167. package/src/x_ite/Browser/Navigation/NoneViewer.js +15 -5
  168. package/src/x_ite/Browser/Navigation/PlaneViewer.js +24 -12
  169. package/src/x_ite/Browser/Navigation/WalkViewer.js +22 -10
  170. package/src/x_ite/Browser/Navigation/X3DFlyViewer.js +17 -18
  171. package/src/x_ite/Browser/Navigation/X3DNavigationContext.js +19 -19
  172. package/src/x_ite/Browser/Navigation/X3DViewer.js +13 -19
  173. package/src/x_ite/Browser/Networking/URLs.js +5 -5
  174. package/src/x_ite/Browser/Networking/X3DNetworkingContext.js +16 -16
  175. package/src/x_ite/Browser/ParticleSystems/X3DParticleSystemsContext.js +3 -3
  176. package/src/x_ite/Browser/Picking/VolumePicker.js +8 -8
  177. package/src/x_ite/Browser/Picking/X3DPickingContext.js +12 -12
  178. package/src/x_ite/Browser/PointingDeviceSensor/PointingDevice.js +24 -20
  179. package/src/x_ite/Browser/PointingDeviceSensor/PointingDeviceSensorContainer.js +6 -6
  180. package/src/x_ite/Browser/PointingDeviceSensor/X3DPointingDeviceSensorContext.js +21 -21
  181. package/src/x_ite/Browser/Rendering/GeometryContext.js +4 -5
  182. package/src/x_ite/Browser/Rendering/X3DRenderingContext.js +18 -18
  183. package/src/x_ite/Browser/Scripting/X3DScriptingContext.js +4 -4
  184. package/src/x_ite/Browser/Shaders/ShaderCompiler.js +4 -4
  185. package/src/x_ite/Browser/Shaders/ShaderSource.js +1 -1
  186. package/src/x_ite/Browser/Shaders/X3DShadersContext.js +13 -13
  187. package/src/x_ite/Browser/Shape/X3DShapeContext.js +12 -12
  188. package/src/x_ite/Browser/Sound/X3DSoundContext.js +0 -2
  189. package/src/x_ite/Browser/Text/PolygonText.js +10 -11
  190. package/src/x_ite/Browser/Text/X3DTextContext.js +6 -6
  191. package/src/x_ite/Browser/Text/X3DTextGeometry.js +18 -19
  192. package/src/x_ite/Browser/Texturing/GifMedia.js +7 -7
  193. package/src/x_ite/Browser/Texturing/X3DTexturingContext.js +24 -24
  194. package/src/x_ite/Browser/Texturing3D/DICOMParser.js +38 -38
  195. package/src/x_ite/Browser/Texturing3D/NRRDParser.js +14 -14
  196. package/src/x_ite/Browser/Time/X3DTimeContext.js +5 -5
  197. package/src/x_ite/Browser/VERSION.js +1 -1
  198. package/src/x_ite/Browser/VolumeRendering/VolumeMaterial.js +39 -22
  199. package/src/x_ite/Browser/VolumeRendering/X3DVolumeRenderingContext.js +6 -6
  200. package/src/x_ite/Browser/X3DBrowser.js +170 -136
  201. package/src/x_ite/Browser/X3DBrowserContext.js +23 -24
  202. package/src/x_ite/Components/Annotation/AnnotationLayer.js +30 -19
  203. package/src/x_ite/Components/Annotation/AnnotationTarget.js +30 -19
  204. package/src/x_ite/Components/Annotation/GroupAnnotation.js +40 -29
  205. package/src/x_ite/Components/Annotation/IconAnnotation.js +38 -27
  206. package/src/x_ite/Components/Annotation/TextAnnotation.js +31 -20
  207. package/src/x_ite/Components/Annotation/URLAnnotation.js +30 -19
  208. package/src/x_ite/Components/Annotation/X3DAnnotationNode.js +16 -3
  209. package/src/x_ite/Components/CADGeometry/CADAssembly.js +32 -21
  210. package/src/x_ite/Components/CADGeometry/CADFace.js +48 -37
  211. package/src/x_ite/Components/CADGeometry/CADLayer.js +30 -21
  212. package/src/x_ite/Components/CADGeometry/CADPart.js +37 -26
  213. package/src/x_ite/Components/CADGeometry/IndexedQuadSet.js +51 -46
  214. package/src/x_ite/Components/CADGeometry/QuadSet.js +48 -43
  215. package/src/x_ite/Components/CADGeometry/X3DProductStructureChildNode.js +13 -2
  216. package/src/x_ite/Components/Core/MetadataBoolean.js +33 -22
  217. package/src/x_ite/Components/Core/MetadataDouble.js +33 -22
  218. package/src/x_ite/Components/Core/MetadataFloat.js +33 -22
  219. package/src/x_ite/Components/Core/MetadataInteger.js +33 -22
  220. package/src/x_ite/Components/Core/MetadataSet.js +33 -22
  221. package/src/x_ite/Components/Core/MetadataString.js +33 -22
  222. package/src/x_ite/Components/Core/WorldInfo.js +34 -23
  223. package/src/x_ite/Components/Core/X3DBindableNode.js +17 -4
  224. package/src/x_ite/Components/Core/X3DChildNode.js +19 -6
  225. package/src/x_ite/Components/Core/X3DInfoNode.js +13 -2
  226. package/src/x_ite/Components/Core/X3DMetadataObject.js +18 -5
  227. package/src/x_ite/Components/Core/X3DNode.js +66 -34
  228. package/src/x_ite/Components/Core/X3DPrototypeInstance.js +68 -77
  229. package/src/x_ite/Components/Core/X3DSensorNode.js +13 -2
  230. package/src/x_ite/Components/Core.js +22 -29
  231. package/src/x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture.js +46 -35
  232. package/src/x_ite/Components/CubeMapTexturing/GeneratedCubeMapTexture.js +39 -28
  233. package/src/x_ite/Components/CubeMapTexturing/ImageCubeMapTexture.js +47 -36
  234. package/src/x_ite/Components/CubeMapTexturing/X3DEnvironmentTextureNode.js +21 -8
  235. package/src/x_ite/Components/DIS/DISEntityManager.js +29 -20
  236. package/src/x_ite/Components/DIS/DISEntityTypeMapping.js +41 -30
  237. package/src/x_ite/Components/DIS/EspduTransform.js +117 -106
  238. package/src/x_ite/Components/DIS/ReceiverPdu.js +60 -49
  239. package/src/x_ite/Components/DIS/SignalPdu.js +60 -49
  240. package/src/x_ite/Components/DIS/TransmitterPdu.js +76 -65
  241. package/src/x_ite/Components/EnvironmentalEffects/Background.js +47 -36
  242. package/src/x_ite/Components/EnvironmentalEffects/Fog.js +42 -31
  243. package/src/x_ite/Components/EnvironmentalEffects/FogCoordinate.js +39 -28
  244. package/src/x_ite/Components/EnvironmentalEffects/LocalFog.js +40 -29
  245. package/src/x_ite/Components/EnvironmentalEffects/TextureBackground.js +48 -37
  246. package/src/x_ite/Components/EnvironmentalEffects/X3DBackgroundNode.js +28 -15
  247. package/src/x_ite/Components/EnvironmentalEffects/X3DFogObject.js +30 -18
  248. package/src/x_ite/Components/EnvironmentalEffects.js +15 -22
  249. package/src/x_ite/Components/EnvironmentalSensor/ProximitySensor.js +45 -34
  250. package/src/x_ite/Components/EnvironmentalSensor/TransformSensor.js +50 -39
  251. package/src/x_ite/Components/EnvironmentalSensor/VisibilitySensor.js +41 -30
  252. package/src/x_ite/Components/EnvironmentalSensor/X3DEnvironmentalSensorNode.js +22 -9
  253. package/src/x_ite/Components/EnvironmentalSensor.js +12 -19
  254. package/src/x_ite/Components/EventUtilities/BooleanFilter.js +38 -27
  255. package/src/x_ite/Components/EventUtilities/BooleanSequencer.js +38 -27
  256. package/src/x_ite/Components/EventUtilities/BooleanToggle.js +33 -22
  257. package/src/x_ite/Components/EventUtilities/BooleanTrigger.js +32 -21
  258. package/src/x_ite/Components/EventUtilities/IntegerSequencer.js +38 -27
  259. package/src/x_ite/Components/EventUtilities/IntegerTrigger.js +33 -22
  260. package/src/x_ite/Components/EventUtilities/TimeTrigger.js +32 -21
  261. package/src/x_ite/Components/EventUtilities/X3DSequencerNode.js +20 -7
  262. package/src/x_ite/Components/EventUtilities/X3DTriggerNode.js +13 -2
  263. package/src/x_ite/Components/Followers/ColorChaser.js +47 -36
  264. package/src/x_ite/Components/Followers/ColorDamper.js +49 -38
  265. package/src/x_ite/Components/Followers/CoordinateChaser.js +33 -22
  266. package/src/x_ite/Components/Followers/CoordinateDamper.js +35 -24
  267. package/src/x_ite/Components/Followers/OrientationChaser.js +43 -32
  268. package/src/x_ite/Components/Followers/OrientationDamper.js +41 -30
  269. package/src/x_ite/Components/Followers/PositionChaser.js +33 -22
  270. package/src/x_ite/Components/Followers/PositionChaser2D.js +33 -22
  271. package/src/x_ite/Components/Followers/PositionDamper.js +35 -24
  272. package/src/x_ite/Components/Followers/PositionDamper2D.js +35 -24
  273. package/src/x_ite/Components/Followers/ScalarChaser.js +47 -36
  274. package/src/x_ite/Components/Followers/ScalarDamper.js +43 -32
  275. package/src/x_ite/Components/Followers/TexCoordChaser2D.js +33 -22
  276. package/src/x_ite/Components/Followers/TexCoordDamper2D.js +35 -24
  277. package/src/x_ite/Components/Followers/X3DChaserNode.js +27 -14
  278. package/src/x_ite/Components/Followers/X3DDamperNode.js +22 -9
  279. package/src/x_ite/Components/Followers/X3DFollowerNode.js +29 -16
  280. package/src/x_ite/Components/Followers.js +25 -32
  281. package/src/x_ite/Components/Geometry2D/Arc2D.js +38 -27
  282. package/src/x_ite/Components/Geometry2D/ArcClose2D.js +39 -28
  283. package/src/x_ite/Components/Geometry2D/Circle2D.js +35 -24
  284. package/src/x_ite/Components/Geometry2D/Disk2D.js +40 -29
  285. package/src/x_ite/Components/Geometry2D/Polyline2D.js +34 -23
  286. package/src/x_ite/Components/Geometry2D/Polypoint2D.js +34 -23
  287. package/src/x_ite/Components/Geometry2D/Rectangle2D.js +34 -23
  288. package/src/x_ite/Components/Geometry2D/TriangleSet2D.js +36 -25
  289. package/src/x_ite/Components/Geometry3D/Box.js +34 -23
  290. package/src/x_ite/Components/Geometry3D/Cone.js +40 -29
  291. package/src/x_ite/Components/Geometry3D/Cylinder.js +41 -30
  292. package/src/x_ite/Components/Geometry3D/ElevationGrid.js +63 -52
  293. package/src/x_ite/Components/Geometry3D/Extrusion.js +49 -38
  294. package/src/x_ite/Components/Geometry3D/IndexedFaceSet.js +98 -95
  295. package/src/x_ite/Components/Geometry3D/Sphere.js +36 -25
  296. package/src/x_ite/Components/Geometry3D.js +15 -22
  297. package/src/x_ite/Components/Geospatial/GeoCoordinate.js +37 -26
  298. package/src/x_ite/Components/Geospatial/GeoElevationGrid.js +63 -52
  299. package/src/x_ite/Components/Geospatial/GeoLOD.js +59 -48
  300. package/src/x_ite/Components/Geospatial/GeoLocation.js +45 -34
  301. package/src/x_ite/Components/Geospatial/GeoMetadata.js +38 -27
  302. package/src/x_ite/Components/Geospatial/GeoOrigin.js +37 -26
  303. package/src/x_ite/Components/Geospatial/GeoPositionInterpolator.js +43 -32
  304. package/src/x_ite/Components/Geospatial/GeoProximitySensor.js +48 -37
  305. package/src/x_ite/Components/Geospatial/GeoTouchSensor.js +45 -34
  306. package/src/x_ite/Components/Geospatial/GeoTransform.js +49 -38
  307. package/src/x_ite/Components/Geospatial/GeoViewpoint.js +56 -45
  308. package/src/x_ite/Components/Geospatial/X3DGeospatialObject.js +30 -17
  309. package/src/x_ite/Components/Grouping/Group.js +29 -20
  310. package/src/x_ite/Components/Grouping/StaticGroup.js +40 -48
  311. package/src/x_ite/Components/Grouping/Switch.js +51 -40
  312. package/src/x_ite/Components/Grouping/Transform.js +34 -25
  313. package/src/x_ite/Components/Grouping/X3DBoundedObject.js +22 -9
  314. package/src/x_ite/Components/Grouping/X3DGroupingNode.js +224 -221
  315. package/src/x_ite/Components/Grouping/X3DTransformMatrix3DNode.js +20 -7
  316. package/src/x_ite/Components/Grouping/X3DTransformNode.js +17 -4
  317. package/src/x_ite/Components/Grouping.js +16 -23
  318. package/src/x_ite/Components/HAnim/HAnimDisplacer.js +27 -18
  319. package/src/x_ite/Components/HAnim/HAnimHumanoid.js +73 -62
  320. package/src/x_ite/Components/HAnim/HAnimJoint.js +61 -50
  321. package/src/x_ite/Components/HAnim/HAnimMotion.js +44 -33
  322. package/src/x_ite/Components/HAnim/HAnimSegment.js +36 -27
  323. package/src/x_ite/Components/HAnim/HAnimSite.js +36 -27
  324. package/src/x_ite/Components/Interpolation/ColorInterpolator.js +38 -27
  325. package/src/x_ite/Components/Interpolation/CoordinateInterpolator.js +38 -27
  326. package/src/x_ite/Components/Interpolation/CoordinateInterpolator2D.js +38 -27
  327. package/src/x_ite/Components/Interpolation/EaseInEaseOut.js +39 -28
  328. package/src/x_ite/Components/Interpolation/NormalInterpolator.js +38 -27
  329. package/src/x_ite/Components/Interpolation/OrientationInterpolator.js +38 -27
  330. package/src/x_ite/Components/Interpolation/PositionInterpolator.js +38 -27
  331. package/src/x_ite/Components/Interpolation/PositionInterpolator2D.js +38 -27
  332. package/src/x_ite/Components/Interpolation/ScalarInterpolator.js +39 -28
  333. package/src/x_ite/Components/Interpolation/SplinePositionInterpolator.js +44 -33
  334. package/src/x_ite/Components/Interpolation/SplinePositionInterpolator2D.js +44 -33
  335. package/src/x_ite/Components/Interpolation/SplineScalarInterpolator.js +44 -33
  336. package/src/x_ite/Components/Interpolation/SquadOrientationInterpolator.js +40 -29
  337. package/src/x_ite/Components/Interpolation/X3DInterpolatorNode.js +21 -8
  338. package/src/x_ite/Components/Interpolation.js +22 -29
  339. package/src/x_ite/Components/KeyDeviceSensor/KeySensor.js +44 -33
  340. package/src/x_ite/Components/KeyDeviceSensor/StringSensor.js +38 -27
  341. package/src/x_ite/Components/KeyDeviceSensor/X3DKeyDeviceSensorNode.js +23 -10
  342. package/src/x_ite/Components/Layering/Layer.js +40 -29
  343. package/src/x_ite/Components/Layering/LayerSet.js +44 -33
  344. package/src/x_ite/Components/Layering/Viewport.js +48 -37
  345. package/src/x_ite/Components/Layering/X3DLayerNode.js +45 -32
  346. package/src/x_ite/Components/Layering/X3DViewportNode.js +13 -2
  347. package/src/x_ite/Components/Layering.js +13 -20
  348. package/src/x_ite/Components/Layout/Layout.js +60 -49
  349. package/src/x_ite/Components/Layout/LayoutGroup.js +48 -37
  350. package/src/x_ite/Components/Layout/LayoutLayer.js +41 -30
  351. package/src/x_ite/Components/Layout/ScreenFontStyle.js +41 -30
  352. package/src/x_ite/Components/Layout/ScreenGroup.js +42 -31
  353. package/src/x_ite/Components/Layout/X3DLayoutNode.js +13 -2
  354. package/src/x_ite/Components/Lighting/DirectionalLight.js +45 -35
  355. package/src/x_ite/Components/Lighting/EnvironmentLight.js +51 -41
  356. package/src/x_ite/Components/Lighting/PointLight.js +53 -43
  357. package/src/x_ite/Components/Lighting/SpotLight.js +62 -52
  358. package/src/x_ite/Components/Lighting/X3DLightNode.js +29 -16
  359. package/src/x_ite/Components/Lighting.js +13 -20
  360. package/src/x_ite/Components/NURBS/Contour2D.js +45 -45
  361. package/src/x_ite/Components/NURBS/ContourPolyline2D.js +34 -23
  362. package/src/x_ite/Components/NURBS/CoordinateDouble.js +23 -14
  363. package/src/x_ite/Components/NURBS/NurbsCurve.js +47 -36
  364. package/src/x_ite/Components/NURBS/NurbsCurve2D.js +44 -33
  365. package/src/x_ite/Components/NURBS/NurbsOrientationInterpolator.js +46 -35
  366. package/src/x_ite/Components/NURBS/NurbsPatchSurface.js +36 -27
  367. package/src/x_ite/Components/NURBS/NurbsPositionInterpolator.js +46 -35
  368. package/src/x_ite/Components/NURBS/NurbsSet.js +52 -52
  369. package/src/x_ite/Components/NURBS/NurbsSurfaceInterpolator.js +44 -33
  370. package/src/x_ite/Components/NURBS/NurbsSweptSurface.js +40 -29
  371. package/src/x_ite/Components/NURBS/NurbsSwungSurface.js +40 -29
  372. package/src/x_ite/Components/NURBS/NurbsTextureCoordinate.js +43 -32
  373. package/src/x_ite/Components/NURBS/NurbsTrimmedSurface.js +59 -59
  374. package/src/x_ite/Components/NURBS/X3DNurbsControlCurveNode.js +13 -2
  375. package/src/x_ite/Components/NURBS/X3DNurbsSurfaceGeometryNode.js +30 -17
  376. package/src/x_ite/Components/NURBS/X3DParametricGeometryNode.js +16 -3
  377. package/src/x_ite/Components/Navigation/Billboard.js +43 -32
  378. package/src/x_ite/Components/Navigation/Collision.js +49 -38
  379. package/src/x_ite/Components/Navigation/LOD.js +54 -43
  380. package/src/x_ite/Components/Navigation/NavigationInfo.js +58 -47
  381. package/src/x_ite/Components/Navigation/OrthoViewpoint.js +69 -58
  382. package/src/x_ite/Components/Navigation/Viewpoint.js +53 -42
  383. package/src/x_ite/Components/Navigation/ViewpointGroup.js +44 -33
  384. package/src/x_ite/Components/Navigation/X3DViewpointNode.js +48 -35
  385. package/src/x_ite/Components/Navigation.js +16 -23
  386. package/src/x_ite/Components/Networking/Anchor.js +51 -40
  387. package/src/x_ite/Components/Networking/Inline.js +54 -43
  388. package/src/x_ite/Components/Networking/LoadSensor.js +49 -38
  389. package/src/x_ite/Components/Networking/X3DNetworkSensorNode.js +13 -2
  390. package/src/x_ite/Components/Networking/X3DUrlObject.js +35 -22
  391. package/src/x_ite/Components/Networking.js +13 -20
  392. package/src/x_ite/Components/ParticleSystems/BoundedPhysicsModel.js +37 -26
  393. package/src/x_ite/Components/ParticleSystems/ConeEmitter.js +44 -33
  394. package/src/x_ite/Components/ParticleSystems/ExplosionEmitter.js +41 -30
  395. package/src/x_ite/Components/ParticleSystems/ForcePhysicsModel.js +34 -23
  396. package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +83 -72
  397. package/src/x_ite/Components/ParticleSystems/PointEmitter.js +41 -30
  398. package/src/x_ite/Components/ParticleSystems/PolylineEmitter.js +42 -31
  399. package/src/x_ite/Components/ParticleSystems/SurfaceEmitter.js +42 -31
  400. package/src/x_ite/Components/ParticleSystems/VolumeEmitter.js +43 -32
  401. package/src/x_ite/Components/ParticleSystems/WindPhysicsModel.js +38 -27
  402. package/src/x_ite/Components/ParticleSystems/X3DParticleEmitterNode.js +33 -20
  403. package/src/x_ite/Components/ParticleSystems/X3DParticlePhysicsModelNode.js +16 -3
  404. package/src/x_ite/Components/Picking/LinePickSensor.js +49 -38
  405. package/src/x_ite/Components/Picking/PickableGroup.js +45 -34
  406. package/src/x_ite/Components/Picking/PointPickSensor.js +46 -35
  407. package/src/x_ite/Components/Picking/PrimitivePickSensor.js +46 -35
  408. package/src/x_ite/Components/Picking/VolumePickSensor.js +45 -34
  409. package/src/x_ite/Components/Picking/X3DPickSensorNode.js +31 -18
  410. package/src/x_ite/Components/Picking/X3DPickableObject.js +20 -7
  411. package/src/x_ite/Components/PointingDeviceSensor/CylinderSensor.js +50 -39
  412. package/src/x_ite/Components/PointingDeviceSensor/PlaneSensor.js +52 -45
  413. package/src/x_ite/Components/PointingDeviceSensor/SphereSensor.js +44 -33
  414. package/src/x_ite/Components/PointingDeviceSensor/TouchSensor.js +30 -21
  415. package/src/x_ite/Components/PointingDeviceSensor/X3DDragSensorNode.js +13 -2
  416. package/src/x_ite/Components/PointingDeviceSensor/X3DPointingDeviceSensorNode.js +22 -11
  417. package/src/x_ite/Components/PointingDeviceSensor/X3DTouchSensorNode.js +16 -3
  418. package/src/x_ite/Components/PointingDeviceSensor.js +15 -22
  419. package/src/x_ite/Components/Rendering/ClipPlane.js +44 -34
  420. package/src/x_ite/Components/Rendering/Color.js +37 -26
  421. package/src/x_ite/Components/Rendering/ColorRGBA.js +37 -26
  422. package/src/x_ite/Components/Rendering/Coordinate.js +23 -14
  423. package/src/x_ite/Components/Rendering/IndexedLineSet.js +52 -41
  424. package/src/x_ite/Components/Rendering/IndexedTriangleFanSet.js +48 -37
  425. package/src/x_ite/Components/Rendering/IndexedTriangleSet.js +44 -33
  426. package/src/x_ite/Components/Rendering/IndexedTriangleStripSet.js +48 -37
  427. package/src/x_ite/Components/Rendering/LineSet.js +45 -34
  428. package/src/x_ite/Components/Rendering/Normal.js +39 -28
  429. package/src/x_ite/Components/Rendering/PointSet.js +45 -34
  430. package/src/x_ite/Components/Rendering/TriangleFanSet.js +47 -36
  431. package/src/x_ite/Components/Rendering/TriangleSet.js +41 -30
  432. package/src/x_ite/Components/Rendering/TriangleStripSet.js +47 -36
  433. package/src/x_ite/Components/Rendering/X3DColorNode.js +17 -4
  434. package/src/x_ite/Components/Rendering/X3DComposedGeometryNode.js +33 -20
  435. package/src/x_ite/Components/Rendering/X3DCoordinateNode.js +23 -10
  436. package/src/x_ite/Components/Rendering/X3DGeometricPropertyNode.js +13 -2
  437. package/src/x_ite/Components/Rendering/X3DGeometryNode.js +96 -80
  438. package/src/x_ite/Components/Rendering/X3DLineGeometryNode.js +21 -8
  439. package/src/x_ite/Components/Rendering/X3DNormalNode.js +13 -2
  440. package/src/x_ite/Components/Rendering/X3DPointGeometryNode.js +20 -7
  441. package/src/x_ite/Components/Rendering.js +29 -36
  442. package/src/x_ite/Components/RigidBodyPhysics/BallJoint.js +43 -32
  443. package/src/x_ite/Components/RigidBodyPhysics/CollidableOffset.js +48 -37
  444. package/src/x_ite/Components/RigidBodyPhysics/CollidableShape.js +52 -41
  445. package/src/x_ite/Components/RigidBodyPhysics/CollisionCollection.js +47 -36
  446. package/src/x_ite/Components/RigidBodyPhysics/CollisionSensor.js +41 -30
  447. package/src/x_ite/Components/RigidBodyPhysics/CollisionSpace.js +44 -33
  448. package/src/x_ite/Components/RigidBodyPhysics/Contact.js +38 -29
  449. package/src/x_ite/Components/RigidBodyPhysics/DoubleAxisHingeJoint.js +60 -49
  450. package/src/x_ite/Components/RigidBodyPhysics/MotorJoint.js +48 -39
  451. package/src/x_ite/Components/RigidBodyPhysics/RigidBody.js +69 -58
  452. package/src/x_ite/Components/RigidBodyPhysics/RigidBodyCollection.js +61 -50
  453. package/src/x_ite/Components/RigidBodyPhysics/SingleAxisHingeJoint.js +49 -38
  454. package/src/x_ite/Components/RigidBodyPhysics/SliderJoint.js +47 -36
  455. package/src/x_ite/Components/RigidBodyPhysics/UniversalJoint.js +36 -27
  456. package/src/x_ite/Components/RigidBodyPhysics/X3DNBodyCollidableNode.js +24 -11
  457. package/src/x_ite/Components/RigidBodyPhysics/X3DNBodyCollisionSpaceNode.js +17 -4
  458. package/src/x_ite/Components/RigidBodyPhysics/X3DRigidJointNode.js +34 -21
  459. package/src/x_ite/Components/Scripting/Script.js +83 -53
  460. package/src/x_ite/Components/Scripting/X3DScriptNode.js +17 -4
  461. package/src/x_ite/Components/Shaders/ComposedShader.js +46 -35
  462. package/src/x_ite/Components/Shaders/FloatVertexAttribute.js +40 -29
  463. package/src/x_ite/Components/Shaders/Matrix3VertexAttribute.js +38 -27
  464. package/src/x_ite/Components/Shaders/Matrix4VertexAttribute.js +38 -27
  465. package/src/x_ite/Components/Shaders/PackagedShader.js +45 -34
  466. package/src/x_ite/Components/Shaders/ProgramShader.js +27 -18
  467. package/src/x_ite/Components/Shaders/ShaderPart.js +47 -36
  468. package/src/x_ite/Components/Shaders/ShaderProgram.js +42 -31
  469. package/src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js +51 -38
  470. package/src/x_ite/Components/Shaders/X3DShaderNode.js +19 -6
  471. package/src/x_ite/Components/Shaders/X3DVertexAttributeNode.js +17 -4
  472. package/src/x_ite/Components/Shaders.js +19 -26
  473. package/src/x_ite/Components/Shape/AcousticProperties.js +28 -19
  474. package/src/x_ite/Components/Shape/Appearance.js +79 -68
  475. package/src/x_ite/Components/Shape/FillProperties.js +44 -33
  476. package/src/x_ite/Components/Shape/LineProperties.js +44 -33
  477. package/src/x_ite/Components/Shape/Material.js +75 -64
  478. package/src/x_ite/Components/Shape/PhysicalMaterial.js +65 -54
  479. package/src/x_ite/Components/Shape/PointProperties.js +43 -32
  480. package/src/x_ite/Components/Shape/Shape.js +48 -37
  481. package/src/x_ite/Components/Shape/TwoSidedMaterial.js +60 -49
  482. package/src/x_ite/Components/Shape/UnlitMaterial.js +44 -33
  483. package/src/x_ite/Components/Shape/X3DAppearanceChildNode.js +13 -2
  484. package/src/x_ite/Components/Shape/X3DAppearanceNode.js +17 -4
  485. package/src/x_ite/Components/Shape/X3DMaterialNode.js +41 -33
  486. package/src/x_ite/Components/Shape/X3DOneSidedMaterialNode.js +29 -16
  487. package/src/x_ite/Components/Shape/X3DShapeNode.js +28 -15
  488. package/src/x_ite/Components/Shape.js +23 -30
  489. package/src/x_ite/Components/Sound/Analyser.js +46 -37
  490. package/src/x_ite/Components/Sound/AudioClip.js +61 -50
  491. package/src/x_ite/Components/Sound/AudioDestination.js +35 -26
  492. package/src/x_ite/Components/Sound/BiquadFilter.js +45 -36
  493. package/src/x_ite/Components/Sound/BufferAudioSource.js +61 -50
  494. package/src/x_ite/Components/Sound/ChannelMerger.js +32 -23
  495. package/src/x_ite/Components/Sound/ChannelSelector.js +33 -24
  496. package/src/x_ite/Components/Sound/ChannelSplitter.js +33 -24
  497. package/src/x_ite/Components/Sound/Convolver.js +43 -34
  498. package/src/x_ite/Components/Sound/Delay.js +43 -34
  499. package/src/x_ite/Components/Sound/DynamicsCompressor.js +47 -38
  500. package/src/x_ite/Components/Sound/Gain.js +41 -32
  501. package/src/x_ite/Components/Sound/ListenerPointSource.js +39 -30
  502. package/src/x_ite/Components/Sound/MicrophoneSource.js +35 -26
  503. package/src/x_ite/Components/Sound/OscillatorSource.js +37 -28
  504. package/src/x_ite/Components/Sound/PeriodicWave.js +27 -18
  505. package/src/x_ite/Components/Sound/Sound.js +51 -40
  506. package/src/x_ite/Components/Sound/SpatialSound.js +42 -33
  507. package/src/x_ite/Components/Sound/StreamAudioDestination.js +35 -26
  508. package/src/x_ite/Components/Sound/StreamAudioSource.js +35 -26
  509. package/src/x_ite/Components/Sound/WaveShaper.js +43 -34
  510. package/src/x_ite/Components/Sound/X3DSoundChannelNode.js +13 -2
  511. package/src/x_ite/Components/Sound/X3DSoundDestinationNode.js +13 -2
  512. package/src/x_ite/Components/Sound/X3DSoundNode.js +13 -2
  513. package/src/x_ite/Components/Sound/X3DSoundProcessingNode.js +17 -4
  514. package/src/x_ite/Components/Sound/X3DSoundSourceNode.js +30 -17
  515. package/src/x_ite/Components/Sound.js +34 -41
  516. package/src/x_ite/Components/Text/FontStyle.js +37 -26
  517. package/src/x_ite/Components/Text/Text.js +50 -39
  518. package/src/x_ite/Components/Text/X3DFontStyleNode.js +32 -18
  519. package/src/x_ite/Components/TextureProjector/TextureProjector.js +49 -39
  520. package/src/x_ite/Components/TextureProjector/TextureProjectorParallel.js +58 -48
  521. package/src/x_ite/Components/TextureProjector/X3DTextureProjectorNode.js +27 -14
  522. package/src/x_ite/Components/Texturing/ImageTexture.js +50 -39
  523. package/src/x_ite/Components/Texturing/MovieTexture.js +67 -56
  524. package/src/x_ite/Components/Texturing/MultiTexture.js +52 -41
  525. package/src/x_ite/Components/Texturing/MultiTextureCoordinate.js +44 -33
  526. package/src/x_ite/Components/Texturing/MultiTextureTransform.js +39 -28
  527. package/src/x_ite/Components/Texturing/PixelTexture.js +42 -31
  528. package/src/x_ite/Components/Texturing/TextureCoordinate.js +41 -30
  529. package/src/x_ite/Components/Texturing/TextureCoordinateGenerator.js +41 -30
  530. package/src/x_ite/Components/Texturing/TextureProperties.js +47 -36
  531. package/src/x_ite/Components/Texturing/TextureTransform.js +39 -28
  532. package/src/x_ite/Components/Texturing/X3DSingleTextureCoordinateNode.js +20 -7
  533. package/src/x_ite/Components/Texturing/X3DSingleTextureNode.js +21 -8
  534. package/src/x_ite/Components/Texturing/X3DSingleTextureTransformNode.js +20 -7
  535. package/src/x_ite/Components/Texturing/X3DTexture2DNode.js +26 -13
  536. package/src/x_ite/Components/Texturing/X3DTextureCoordinateNode.js +13 -2
  537. package/src/x_ite/Components/Texturing/X3DTextureNode.js +17 -4
  538. package/src/x_ite/Components/Texturing/X3DTextureTransformNode.js +13 -2
  539. package/src/x_ite/Components/Texturing.js +25 -32
  540. package/src/x_ite/Components/Texturing3D/ComposedTexture3D.js +44 -33
  541. package/src/x_ite/Components/Texturing3D/ImageTexture3D.js +46 -35
  542. package/src/x_ite/Components/Texturing3D/ImageTextureAtlas.js +54 -43
  543. package/src/x_ite/Components/Texturing3D/PixelTexture3D.js +40 -29
  544. package/src/x_ite/Components/Texturing3D/TextureCoordinate3D.js +41 -30
  545. package/src/x_ite/Components/Texturing3D/TextureCoordinate4D.js +41 -30
  546. package/src/x_ite/Components/Texturing3D/TextureTransform3D.js +39 -28
  547. package/src/x_ite/Components/Texturing3D/TextureTransformMatrix3D.js +36 -25
  548. package/src/x_ite/Components/Texturing3D/X3DTexture3DNode.js +26 -13
  549. package/src/x_ite/Components/Time/TimeSensor.js +55 -44
  550. package/src/x_ite/Components/Time/X3DTimeDependentNode.js +38 -25
  551. package/src/x_ite/Components/Time.js +10 -17
  552. package/src/x_ite/Components/VolumeRendering/BlendedVolumeStyle.js +51 -41
  553. package/src/x_ite/Components/VolumeRendering/BoundaryEnhancementVolumeStyle.js +39 -28
  554. package/src/x_ite/Components/VolumeRendering/CartoonVolumeStyle.js +42 -31
  555. package/src/x_ite/Components/VolumeRendering/ComposedVolumeStyle.js +41 -30
  556. package/src/x_ite/Components/VolumeRendering/EdgeEnhancementVolumeStyle.js +41 -30
  557. package/src/x_ite/Components/VolumeRendering/IsoSurfaceVolumeData.js +50 -39
  558. package/src/x_ite/Components/VolumeRendering/OpacityMapVolumeStyle.js +39 -28
  559. package/src/x_ite/Components/VolumeRendering/ProjectionVolumeStyle.js +38 -27
  560. package/src/x_ite/Components/VolumeRendering/SegmentedVolumeData.js +49 -38
  561. package/src/x_ite/Components/VolumeRendering/ShadedVolumeStyle.js +44 -33
  562. package/src/x_ite/Components/VolumeRendering/SilhouetteEnhancementVolumeStyle.js +42 -31
  563. package/src/x_ite/Components/VolumeRendering/ToneMappedVolumeStyle.js +41 -30
  564. package/src/x_ite/Components/VolumeRendering/VolumeData.js +45 -34
  565. package/src/x_ite/Components/VolumeRendering/X3DComposableVolumeRenderStyleNode.js +13 -2
  566. package/src/x_ite/Components/VolumeRendering/X3DVolumeDataNode.js +25 -12
  567. package/src/x_ite/Components/VolumeRendering/X3DVolumeRenderStyleNode.js +22 -9
  568. package/src/x_ite/Components/X_ITE/BlendMode.js +48 -37
  569. package/src/x_ite/Components.js +38 -14
  570. package/src/x_ite/Configuration/AbstractNodes.js +50 -0
  571. package/src/x_ite/{Fallback.js → Configuration/AbstractNodesArray.js} +22 -29
  572. package/src/x_ite/Configuration/ComponentInfo.js +14 -10
  573. package/src/x_ite/Configuration/ComponentInfoArray.js +14 -10
  574. package/src/x_ite/Configuration/ConcreteNodes.js +50 -0
  575. package/src/x_ite/Configuration/{SupportedNodes.js → ConcreteNodesArray.js} +26 -40
  576. package/src/x_ite/Configuration/ProfileInfo.js +13 -9
  577. package/src/x_ite/Configuration/ProfileInfoArray.js +14 -13
  578. package/src/x_ite/Configuration/SupportedComponents.js +40 -78
  579. package/src/x_ite/Configuration/SupportedProfiles.js +16 -16
  580. package/src/x_ite/Configuration/UnitInfo.js +14 -10
  581. package/src/x_ite/Configuration/UnitInfoArray.js +10 -21
  582. package/src/x_ite/Execution/BindableList.js +14 -10
  583. package/src/x_ite/Execution/BindableStack.js +14 -10
  584. package/src/x_ite/Execution/ExportedNodesArray.js +11 -9
  585. package/src/x_ite/Execution/ImportedNodesArray.js +11 -9
  586. package/src/x_ite/Execution/NamedNodesArray.js +11 -22
  587. package/src/x_ite/Execution/X3DExecutionContext.js +181 -152
  588. package/src/x_ite/Execution/X3DExportedNode.js +18 -10
  589. package/src/x_ite/Execution/X3DImportedNode.js +35 -22
  590. package/src/x_ite/Execution/X3DScene.js +93 -64
  591. package/src/x_ite/Execution/X3DWorld.js +21 -17
  592. package/src/x_ite/Fields/ArrayFields.js +87 -153
  593. package/src/x_ite/Fields/SFBool.js +21 -25
  594. package/src/x_ite/Fields/SFColor.js +43 -39
  595. package/src/x_ite/Fields/SFColorRGBA.js +39 -35
  596. package/src/x_ite/Fields/SFDouble.js +20 -21
  597. package/src/x_ite/Fields/SFFloat.js +20 -21
  598. package/src/x_ite/Fields/SFImage.js +50 -48
  599. package/src/x_ite/Fields/SFInt32.js +20 -21
  600. package/src/x_ite/Fields/SFMatrix3.js +23 -16
  601. package/src/x_ite/Fields/SFMatrix4.js +24 -17
  602. package/src/x_ite/Fields/SFMatrixPrototypeTemplate.js +31 -31
  603. package/src/x_ite/Fields/SFNode.js +57 -88
  604. package/src/x_ite/Fields/SFNodeCache.js +7 -11
  605. package/src/x_ite/Fields/SFRotation.js +73 -62
  606. package/src/x_ite/Fields/SFString.js +35 -36
  607. package/src/x_ite/Fields/SFTime.js +20 -21
  608. package/src/x_ite/Fields/SFVec2.js +17 -14
  609. package/src/x_ite/Fields/SFVec3.js +20 -17
  610. package/src/x_ite/Fields/SFVec4.js +21 -18
  611. package/src/x_ite/Fields/SFVecPrototypeTemplate.js +36 -36
  612. package/src/x_ite/Fields.js +6 -13
  613. package/src/x_ite/InputOutput/FileLoader.js +36 -40
  614. package/src/x_ite/InputOutput/Generator.js +50 -51
  615. package/src/x_ite/Parser/GLB2Parser.js +12 -13
  616. package/src/x_ite/Parser/GLTF2Parser.js +111 -112
  617. package/src/x_ite/Parser/GoldenGate.js +11 -13
  618. package/src/x_ite/Parser/HTMLSupport.js +15 -5
  619. package/src/x_ite/Parser/JSONParser.js +21 -22
  620. package/src/x_ite/Parser/OBJParser.js +56 -57
  621. package/src/x_ite/Parser/STLAParser.js +22 -23
  622. package/src/x_ite/Parser/STLBParser.js +12 -13
  623. package/src/x_ite/Parser/SVGParser.js +85 -86
  624. package/src/x_ite/Parser/VRMLParser.js +495 -878
  625. package/src/x_ite/Parser/X3DOptimizer.js +7 -7
  626. package/src/x_ite/Parser/X3DParser.js +17 -17
  627. package/src/x_ite/Parser/XMLParser.js +215 -269
  628. package/src/x_ite/Prototype/ExternProtoDeclarationArray.js +11 -9
  629. package/src/x_ite/Prototype/ProtoDeclarationArray.js +11 -9
  630. package/src/x_ite/Prototype/X3DExternProtoDeclaration.js +35 -27
  631. package/src/x_ite/Prototype/X3DProtoDeclaration.js +28 -20
  632. package/src/x_ite/Prototype/X3DProtoDeclarationNode.js +18 -10
  633. package/src/x_ite/Rendering/DependentRenderer.js +11 -12
  634. package/src/x_ite/Rendering/MultiSampleFrameBuffer.js +9 -10
  635. package/src/x_ite/Rendering/PointingBuffer.js +6 -7
  636. package/src/x_ite/Rendering/TextureBuffer.js +11 -12
  637. package/src/x_ite/Rendering/VertexArray.js +5 -5
  638. package/src/x_ite/Rendering/X3DRenderObject.js +51 -52
  639. package/src/x_ite/Routing/RouteArray.js +11 -9
  640. package/src/x_ite/Routing/X3DRoute.js +35 -19
  641. package/src/x_ite/Routing/X3DRoutingContext.js +8 -9
  642. package/src/x_ite/X3D.js +27 -26
  643. package/src/x_ite/X3DCanvasElement.js +18 -7
  644. package/src/x_ite.css +2 -1
  645. package/webpack.config.js +2 -2
  646. /package/src/x_ite/{DEBUG.js → DEVELOPMENT.js} +0 -0
@@ -1,7 +1,7 @@
1
- /* X_ITE v8.7.8 */(() => { // webpackBootstrap
1
+ /* X_ITE v8.8.0 */(() => { // webpackBootstrap
2
2
  /******/ var __webpack_modules__ = ({
3
3
 
4
- /***/ 536:
4
+ /***/ 243:
5
5
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6
6
 
7
7
  var __dirname = "/";
@@ -38,7 +38,7 @@ var Ib=[cx,_q,cr,Yr,as,fs,hs,Hu,Su,cx,cx,cx,cx,cx,cx,cx];var Jb=[dx,si,gi,Wh,Kh,
38
38
 
39
39
  /***/ }),
40
40
 
41
- /***/ 153:
41
+ /***/ 751:
42
42
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
43
43
 
44
44
  var __dirname = "/";
@@ -72,7 +72,7 @@ var _a=[yj,od,ef,yj];var $a=[zj,Li,di,bi,Kb,Lb,Mb,Nb,Rc,Sc,Uc,jd,xd,Ye,lf,yd,zd,
72
72
 
73
73
  /***/ }),
74
74
 
75
- /***/ 486:
75
+ /***/ 740:
76
76
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
77
77
 
78
78
  /*! dicom-parser - 1.8.12 - 2023-02-20 | (c) 2017 Chris Hafey | https://github.com/cornerstonejs/dicomParser */
@@ -4028,7 +4028,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE_zlib__;
4028
4028
 
4029
4029
  /***/ }),
4030
4030
 
4031
- /***/ 534:
4031
+ /***/ 233:
4032
4032
  /***/ ((module) => {
4033
4033
 
4034
4034
  /* -*- tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
@@ -5183,7 +5183,7 @@ function decode(jpegData, userOpts = {}) {
5183
5183
 
5184
5184
  /***/ }),
5185
5185
 
5186
- /***/ 422:
5186
+ /***/ 309:
5187
5187
  /***/ ((module) => {
5188
5188
 
5189
5189
  (function(f){if(true){module.exports=f()}else { var g; }})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=undefined;if(!f&&c)return require(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=undefined,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
@@ -6952,7 +6952,7 @@ if ((moduleType !== 'undefined') && module.exports) {
6952
6952
  /***/ ((module) => {
6953
6953
 
6954
6954
  "use strict";
6955
- module.exports = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("lib/jquery");
6955
+ module.exports = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("lib/jquery");
6956
6956
 
6957
6957
  /***/ }),
6958
6958
 
@@ -7056,25 +7056,25 @@ var __webpack_exports__ = {};
7056
7056
  // UNUSED EXPORTS: default
7057
7057
 
7058
7058
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components\")"
7059
- const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Components");
7059
+ const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components");
7060
7060
  var Components_default = /*#__PURE__*/__webpack_require__.n(Components_namespaceObject);
7061
7061
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Fields\")"
7062
- const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Fields");
7062
+ const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Fields");
7063
7063
  var Fields_default = /*#__PURE__*/__webpack_require__.n(Fields_namespaceObject);
7064
7064
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DFieldDefinition\")"
7065
- const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Base/X3DFieldDefinition");
7065
+ const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Base/X3DFieldDefinition");
7066
7066
  var X3DFieldDefinition_default = /*#__PURE__*/__webpack_require__.n(X3DFieldDefinition_namespaceObject);
7067
7067
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/FieldDefinitionArray\")"
7068
- const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Base/FieldDefinitionArray");
7068
+ const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Base/FieldDefinitionArray");
7069
7069
  var FieldDefinitionArray_default = /*#__PURE__*/__webpack_require__.n(FieldDefinitionArray_namespaceObject);
7070
7070
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Texturing/X3DSingleTextureNode\")"
7071
- const X3DSingleTextureNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Components/Texturing/X3DSingleTextureNode");
7071
+ const X3DSingleTextureNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Texturing/X3DSingleTextureNode");
7072
7072
  var X3DSingleTextureNode_default = /*#__PURE__*/__webpack_require__.n(X3DSingleTextureNode_namespaceObject);
7073
7073
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DConstants\")"
7074
- const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Base/X3DConstants");
7074
+ const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Base/X3DConstants");
7075
7075
  var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
7076
7076
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Namespace\")"
7077
- const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Namespace");
7077
+ const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Namespace");
7078
7078
  var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
7079
7079
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing3D/X3DTexture3DNode.js
7080
7080
  /*******************************************************************************
@@ -7144,12 +7144,11 @@ function X3DTexture3DNode (executionContext)
7144
7144
  this .data = null;
7145
7145
  }
7146
7146
 
7147
- X3DTexture3DNode .prototype = Object .assign (Object .create ((X3DSingleTextureNode_default()).prototype),
7147
+ Object .assign (Object .setPrototypeOf (X3DTexture3DNode .prototype, (X3DSingleTextureNode_default()).prototype),
7148
7148
  {
7149
- constructor: X3DTexture3DNode,
7150
- initialize: function ()
7149
+ initialize ()
7151
7150
  {
7152
- X3DSingleTextureNode_default().prototype.initialize.call (this);
7151
+ X3DSingleTextureNode_default().prototype .initialize .call (this);
7153
7152
 
7154
7153
  this ._repeatS .addInterest ("updateTextureParameters", this);
7155
7154
  this ._repeatT .addInterest ("updateTextureParameters", this);
@@ -7163,31 +7162,31 @@ X3DTexture3DNode .prototype = Object .assign (Object .create ((X3DSingleTextureN
7163
7162
  gl .bindTexture (gl .TEXTURE_3D, this .getTexture ());
7164
7163
  gl .texImage3D (gl .TEXTURE_3D, 0, gl .RGBA, 1, 1, 1, 0, gl .RGBA, gl .UNSIGNED_BYTE, defaultData);
7165
7164
  },
7166
- getTarget: function ()
7165
+ getTarget ()
7167
7166
  {
7168
7167
  return this .target;
7169
7168
  },
7170
- getTextureType: function ()
7169
+ getTextureType ()
7171
7170
  {
7172
7171
  return 3;
7173
7172
  },
7174
- getTextureTypeString: function ()
7173
+ getTextureTypeString ()
7175
7174
  {
7176
7175
  return "3D";
7177
7176
  },
7178
- getWidth: function ()
7177
+ getWidth ()
7179
7178
  {
7180
7179
  return this .width;
7181
7180
  },
7182
- getHeight: function ()
7181
+ getHeight ()
7183
7182
  {
7184
7183
  return this .height;
7185
7184
  },
7186
- getDepth: function ()
7185
+ getDepth ()
7187
7186
  {
7188
7187
  return this .depth;
7189
7188
  },
7190
- clearTexture: function ()
7189
+ clearTexture ()
7191
7190
  {
7192
7191
  const gl = this .getBrowser () .getContext ();
7193
7192
 
@@ -7195,7 +7194,7 @@ X3DTexture3DNode .prototype = Object .assign (Object .create ((X3DSingleTextureN
7195
7194
 
7196
7195
  this .data = null;
7197
7196
  },
7198
- setTexture: function (width, height, depth, transparent, format, data)
7197
+ setTexture (width, height, depth, transparent, format, data)
7199
7198
  {
7200
7199
  this .width = width;
7201
7200
  this .height = height;
@@ -7214,9 +7213,9 @@ X3DTexture3DNode .prototype = Object .assign (Object .create ((X3DSingleTextureN
7214
7213
  this .updateTextureParameters ();
7215
7214
  this .addNodeEvent ();
7216
7215
  },
7217
- updateTextureParameters: function ()
7216
+ updateTextureParameters ()
7218
7217
  {
7219
- X3DSingleTextureNode_default().prototype.updateTextureParameters.call (this,
7218
+ X3DSingleTextureNode_default().prototype .updateTextureParameters .call (this,
7220
7219
  this .target,
7221
7220
  this ._textureProperties .getValue (),
7222
7221
  this .texturePropertiesNode,
@@ -7226,7 +7225,7 @@ X3DTexture3DNode .prototype = Object .assign (Object .create ((X3DSingleTextureN
7226
7225
  this ._repeatT .getValue (),
7227
7226
  this ._repeatR .getValue ());
7228
7227
  },
7229
- setShaderUniforms: function (gl, shaderObject, renderObject, channel = shaderObject .x3d_Texture [0])
7228
+ setShaderUniforms (gl, shaderObject, renderObject, channel = shaderObject .x3d_Texture [0])
7230
7229
  {
7231
7230
  const textureUnit = this .getBrowser () .getTexture3DUnit ();
7232
7231
 
@@ -7236,13 +7235,27 @@ X3DTexture3DNode .prototype = Object .assign (Object .create ((X3DSingleTextureN
7236
7235
  },
7237
7236
  });
7238
7237
 
7238
+ Object .defineProperties (X3DTexture3DNode,
7239
+ {
7240
+ typeName:
7241
+ {
7242
+ value: "X3DTexture3DNode",
7243
+ enumerable: true,
7244
+ },
7245
+ componentName:
7246
+ {
7247
+ value: "Texturing3D",
7248
+ enumerable: true,
7249
+ },
7250
+ });
7251
+
7239
7252
  const __default__ = X3DTexture3DNode;
7240
7253
  ;
7241
7254
 
7242
7255
  Namespace_default().set ("x_ite/Components/Texturing3D/X3DTexture3DNode", __default__);
7243
7256
  /* harmony default export */ const Texturing3D_X3DTexture3DNode = (__default__);
7244
7257
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DCast\")"
7245
- const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Base/X3DCast");
7258
+ const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Base/X3DCast");
7246
7259
  var X3DCast_default = /*#__PURE__*/__webpack_require__.n(X3DCast_namespaceObject);
7247
7260
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing3D/ComposedTexture3D.js
7248
7261
  /*******************************************************************************
@@ -7301,7 +7314,7 @@ var X3DCast_default = /*#__PURE__*/__webpack_require__.n(X3DCast_namespaceObject
7301
7314
 
7302
7315
  function ComposedTexture3D (executionContext)
7303
7316
  {
7304
- Texturing3D_X3DTexture3DNode.call (this, executionContext);
7317
+ Texturing3D_X3DTexture3DNode .call (this, executionContext);
7305
7318
 
7306
7319
  this .addType ((X3DConstants_default()).ComposedTexture3D);
7307
7320
 
@@ -7311,37 +7324,11 @@ function ComposedTexture3D (executionContext)
7311
7324
  this .textureNodes = [ ];
7312
7325
  }
7313
7326
 
7314
- ComposedTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTexture3DNode.prototype),
7327
+ Object .assign (Object .setPrototypeOf (ComposedTexture3D .prototype, Texturing3D_X3DTexture3DNode .prototype),
7315
7328
  {
7316
- constructor: ComposedTexture3D,
7317
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
7318
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
7319
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
7320
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
7321
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
7322
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
7323
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
7324
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "texture", new (Fields_default()).MFNode ()),
7325
- ]),
7326
- getTypeName: function ()
7327
- {
7328
- return "ComposedTexture3D";
7329
- },
7330
- getComponentName: function ()
7329
+ initialize ()
7331
7330
  {
7332
- return "Texturing3D";
7333
- },
7334
- getContainerField: function ()
7335
- {
7336
- return "texture";
7337
- },
7338
- getSpecificationRange: function ()
7339
- {
7340
- return ["3.1", "Infinity"];
7341
- },
7342
- initialize: function ()
7343
- {
7344
- Texturing3D_X3DTexture3DNode.prototype.initialize.call (this);
7331
+ Texturing3D_X3DTexture3DNode .prototype .initialize .call (this);
7345
7332
 
7346
7333
  const gl = this .getBrowser () .getContext ();
7347
7334
 
@@ -7352,11 +7339,11 @@ ComposedTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTe
7352
7339
 
7353
7340
  this .set_texture__ ();
7354
7341
  },
7355
- checkLoadState: function ()
7342
+ checkLoadState ()
7356
7343
  {
7357
7344
  return this ._loadState .getValue ();
7358
7345
  },
7359
- set_texture__: function ()
7346
+ set_texture__ ()
7360
7347
  {
7361
7348
  const textureNodes = this .textureNodes;
7362
7349
 
@@ -7378,15 +7365,15 @@ ComposedTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTe
7378
7365
 
7379
7366
  this .set_update__ ();
7380
7367
  },
7381
- set_update__: function ()
7368
+ set_update__ ()
7382
7369
  {
7383
7370
  this ._update .addEvent ();
7384
7371
  },
7385
- isComplete: function ()
7372
+ isComplete ()
7386
7373
  {
7387
7374
  return this .textureNodes .every (textureNode => textureNode .checkLoadState () === (X3DConstants_default()).COMPLETE_STATE || textureNode .getWidth ());
7388
7375
  },
7389
- update: function ()
7376
+ update ()
7390
7377
  {
7391
7378
  const textureNodes = this .textureNodes
7392
7379
 
@@ -7434,16 +7421,53 @@ ComposedTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTe
7434
7421
  },
7435
7422
  });
7436
7423
 
7424
+ Object .defineProperties (ComposedTexture3D,
7425
+ {
7426
+ typeName:
7427
+ {
7428
+ value: "ComposedTexture3D",
7429
+ enumerable: true,
7430
+ },
7431
+ componentName:
7432
+ {
7433
+ value: "Texturing3D",
7434
+ enumerable: true,
7435
+ },
7436
+ containerField:
7437
+ {
7438
+ value: "texture",
7439
+ enumerable: true,
7440
+ },
7441
+ specificationRange:
7442
+ {
7443
+ value: Object .freeze (["3.1", "Infinity"]),
7444
+ enumerable: true,
7445
+ },
7446
+ fieldDefinitions:
7447
+ {
7448
+ value: new (FieldDefinitionArray_default()) ([
7449
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
7450
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
7451
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
7452
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
7453
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
7454
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
7455
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "texture", new (Fields_default()).MFNode ()),
7456
+ ]),
7457
+ enumerable: true,
7458
+ },
7459
+ });
7460
+
7437
7461
  const ComposedTexture3D_default_ = ComposedTexture3D;
7438
7462
  ;
7439
7463
 
7440
7464
  Namespace_default().set ("x_ite/Components/Texturing3D/ComposedTexture3D", ComposedTexture3D_default_);
7441
7465
  /* harmony default export */ const Texturing3D_ComposedTexture3D = (ComposedTexture3D_default_);
7442
7466
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/X3DUrlObject\")"
7443
- const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Components/Networking/X3DUrlObject");
7467
+ const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Networking/X3DUrlObject");
7444
7468
  var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_namespaceObject);
7445
7469
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Parser/Expressions\")"
7446
- const Expressions_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Parser/Expressions");
7470
+ const Expressions_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Parser/Expressions");
7447
7471
  var Expressions_default = /*#__PURE__*/__webpack_require__.n(Expressions_namespaceObject);
7448
7472
  // EXTERNAL MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"lib/jquery\")"
7449
7473
  var jquery_ = __webpack_require__(355);
@@ -7522,9 +7546,9 @@ function NRRDParser ()
7522
7546
  ]);
7523
7547
  }
7524
7548
 
7525
- NRRDParser .prototype =
7549
+ Object .assign (NRRDParser .prototype,
7526
7550
  {
7527
- parse: function (input)
7551
+ parse (input)
7528
7552
  {
7529
7553
  this .setInput (input);
7530
7554
 
@@ -7536,7 +7560,7 @@ NRRDParser .prototype =
7536
7560
 
7537
7561
  return this .nrrd;
7538
7562
  },
7539
- setInput: function (value)
7563
+ setInput (value)
7540
7564
  {
7541
7565
  this .dataView = new DataView (value);
7542
7566
  this .input = jquery_default().decodeText (value);
@@ -7544,7 +7568,7 @@ NRRDParser .prototype =
7544
7568
  this .nrrd = { };
7545
7569
  this .littleEndian = true;
7546
7570
  },
7547
- getNRRD: function ()
7571
+ getNRRD ()
7548
7572
  {
7549
7573
  if (Grammar .NRRD .parse (this))
7550
7574
  {
@@ -7556,7 +7580,7 @@ NRRDParser .prototype =
7556
7580
  this .nrrd .nrrd = false;
7557
7581
  return false;
7558
7582
  },
7559
- getFields: function ()
7583
+ getFields ()
7560
7584
  {
7561
7585
  while (Grammar .comment .parse (this))
7562
7586
  ;
@@ -7641,7 +7665,7 @@ NRRDParser .prototype =
7641
7665
  this .encoding = encoding;
7642
7666
  };
7643
7667
  })(),
7644
- getDimension: function (value)
7668
+ getDimension (value)
7645
7669
  {
7646
7670
  const result = value .match (/(\d+)/);
7647
7671
 
@@ -7662,7 +7686,7 @@ NRRDParser .prototype =
7662
7686
 
7663
7687
  throw new Error ("Unsupported NRRD dimension '" + result [1] + "', must be 1, 2, 3, or 4.");
7664
7688
  },
7665
- getSizes: function (value)
7689
+ getSizes (value)
7666
7690
  {
7667
7691
  const
7668
7692
  num = /\s*(\d+)/gy,
@@ -7713,7 +7737,7 @@ NRRDParser .prototype =
7713
7737
  throw new Error ("Unsupported NRRD sizes.");
7714
7738
  }
7715
7739
  },
7716
- getEndian: function (value)
7740
+ getEndian (value)
7717
7741
  {
7718
7742
  if (value === "little")
7719
7743
  {
@@ -7729,7 +7753,7 @@ NRRDParser .prototype =
7729
7753
 
7730
7754
  throw new Error ("Unsupported NRRD endian, must be either 'little' or 'big'.");
7731
7755
  },
7732
- getData: function ()
7756
+ getData ()
7733
7757
  {
7734
7758
  switch (this .encoding)
7735
7759
  {
@@ -7755,7 +7779,7 @@ NRRDParser .prototype =
7755
7779
  }
7756
7780
  }
7757
7781
  },
7758
- ascii: function ()
7782
+ ascii ()
7759
7783
  {
7760
7784
  const
7761
7785
  dataLength = this .nrrd .components * this .nrrd .width * this .nrrd .height * this .nrrd .depth,
@@ -7812,7 +7836,7 @@ NRRDParser .prototype =
7812
7836
  }
7813
7837
  }
7814
7838
  },
7815
- raw: function ()
7839
+ raw ()
7816
7840
  {
7817
7841
  const
7818
7842
  dataView = this .dataView,
@@ -7865,7 +7889,7 @@ NRRDParser .prototype =
7865
7889
  }
7866
7890
  }
7867
7891
  },
7868
- hex: function ()
7892
+ hex ()
7869
7893
  {
7870
7894
  if (Grammar .data .parse (this))
7871
7895
  {
@@ -7884,7 +7908,7 @@ NRRDParser .prototype =
7884
7908
 
7885
7909
  throw new Error ("Invalid NRRD data.");
7886
7910
  },
7887
- gzip: function ()
7911
+ gzip ()
7888
7912
  {
7889
7913
  try
7890
7914
  {
@@ -7904,7 +7928,7 @@ NRRDParser .prototype =
7904
7928
  throw new Error (`Invalid NRRD data: ${error}.`);
7905
7929
  }
7906
7930
  },
7907
- };
7931
+ });
7908
7932
 
7909
7933
  const NRRDParser_default_ = NRRDParser;
7910
7934
  ;
@@ -7912,11 +7936,11 @@ const NRRDParser_default_ = NRRDParser;
7912
7936
  Namespace_default().set ("x_ite/Browser/Texturing3D/NRRDParser", NRRDParser_default_);
7913
7937
  /* harmony default export */ const Texturing3D_NRRDParser = (NRRDParser_default_);
7914
7938
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/Texturing3D/DICOMParser.js
7915
- /* provided dependency */ var dicomParser = __webpack_require__(486);
7916
- /* provided dependency */ var JpegImage = __webpack_require__(534);
7917
- /* provided dependency */ var jpeg = __webpack_require__(422);
7918
- /* provided dependency */ var CharLS = __webpack_require__(536);
7919
- /* provided dependency */ var OpenJPEG = __webpack_require__(153);
7939
+ /* provided dependency */ var dicomParser = __webpack_require__(740);
7940
+ /* provided dependency */ var JpegImage = __webpack_require__(233);
7941
+ /* provided dependency */ var jpeg = __webpack_require__(309);
7942
+ /* provided dependency */ var CharLS = __webpack_require__(243);
7943
+ /* provided dependency */ var OpenJPEG = __webpack_require__(751);
7920
7944
  /*******************************************************************************
7921
7945
  *
7922
7946
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -7969,9 +7993,9 @@ function DicomParser ()
7969
7993
  this .dicom = { dicom: false };
7970
7994
  }
7971
7995
 
7972
- DicomParser .prototype =
7996
+ Object .assign (DicomParser .prototype,
7973
7997
  {
7974
- parse: function (input)
7998
+ parse (input)
7975
7999
  {
7976
8000
  try
7977
8001
  {
@@ -7997,30 +8021,30 @@ DicomParser .prototype =
7997
8021
  this .getTansferSyntax ();
7998
8022
  this .getPixelData ();
7999
8023
 
8000
- // if (DEBUG)
8024
+ // if (DEVELOPMENT)
8001
8025
  // console .log (this);
8002
8026
 
8003
8027
  return this .dicom;
8004
8028
  },
8005
- getPhotometricInterpretation: function ()
8029
+ getPhotometricInterpretation ()
8006
8030
  {
8007
8031
  // https://dicom.innolitics.com/ciods/ct-image/image-pixel/00280004
8008
8032
  this .photometricInterpretation = this .dataSet .string ("x00280004");
8009
8033
  },
8010
- getComponents: function ()
8034
+ getComponents ()
8011
8035
  {
8012
8036
  // https://dicom.innolitics.com/ciods/ct-image/image-pixel/00280002
8013
8037
  this .dicom .components = this .dataSet .uint16 ("x00280002");
8014
8038
  },
8015
- getWidth: function ()
8039
+ getWidth ()
8016
8040
  {
8017
8041
  this .dicom .width = this .dataSet .uint16 ("x00280011");
8018
8042
  },
8019
- getHeight: function ()
8043
+ getHeight ()
8020
8044
  {
8021
8045
  this .dicom .height = this .dataSet .uint16 ("x00280010");
8022
8046
  },
8023
- getDepth: function ()
8047
+ getDepth ()
8024
8048
  {
8025
8049
  if (this .dataSet .elements .x00280008)
8026
8050
  {
@@ -8029,27 +8053,27 @@ DicomParser .prototype =
8029
8053
  else
8030
8054
  this .dicom .depth = 1;
8031
8055
  },
8032
- getBitsAllocated: function ()
8056
+ getBitsAllocated ()
8033
8057
  {
8034
8058
  this .bitsAllocated = this .dataSet .uint16 ("x00280100");
8035
8059
  },
8036
- getBitsStored: function ()
8060
+ getBitsStored ()
8037
8061
  {
8038
8062
  this .bitsStored = this .dataSet .uint16 ("x00280101");
8039
8063
  },
8040
- getPixelRepresentation: function ()
8064
+ getPixelRepresentation ()
8041
8065
  {
8042
8066
  this .pixelRepresentation = this .dataSet .uint16 ("x00280103") || 0;
8043
8067
  },
8044
- getPlanarConfiguration: function ()
8068
+ getPlanarConfiguration ()
8045
8069
  {
8046
8070
  this .planarConfiguration = this .dataSet .uint16 ("x00280006") || 0;
8047
8071
  },
8048
- getTansferSyntax: function ()
8072
+ getTansferSyntax ()
8049
8073
  {
8050
8074
  this .transferSyntax = this .dataSet .string ("x00020010");
8051
8075
  },
8052
- getPixelData: function ()
8076
+ getPixelData ()
8053
8077
  {
8054
8078
  var
8055
8079
  dicom = this .dicom,
@@ -8214,7 +8238,7 @@ DicomParser .prototype =
8214
8238
  dicom .components = components;
8215
8239
  dicom .data = bytes;
8216
8240
  },
8217
- getFrames: function (pixelElement)
8241
+ getFrames (pixelElement)
8218
8242
  {
8219
8243
  var frames = [ ];
8220
8244
 
@@ -8278,7 +8302,7 @@ DicomParser .prototype =
8278
8302
 
8279
8303
  return frames;
8280
8304
  },
8281
- getTypedArray: function (frame)
8305
+ getTypedArray (frame)
8282
8306
  {
8283
8307
  switch (this .bitsAllocated)
8284
8308
  {
@@ -8292,7 +8316,7 @@ DicomParser .prototype =
8292
8316
  throw new Error ("DICOM: unsupported pixel format.");
8293
8317
  }
8294
8318
  },
8295
- flipImage: function (frame, components)
8319
+ flipImage (frame, components)
8296
8320
  {
8297
8321
  var
8298
8322
  width = this .dicom .width,
@@ -8313,7 +8337,7 @@ DicomParser .prototype =
8313
8337
 
8314
8338
  return out;
8315
8339
  },
8316
- getNormalizeOffsetAndFactor: function (data)
8340
+ getNormalizeOffsetAndFactor (data)
8317
8341
  {
8318
8342
  var
8319
8343
  min = Number .POSITIVE_INFINITY,
@@ -8329,7 +8353,7 @@ DicomParser .prototype =
8329
8353
 
8330
8354
  return { offset: min, factor: diverence ? 1 / diverence * 255 : 0 };
8331
8355
  },
8332
- unpackBinaryFrame: function (byteArray, frameOffset, pixelsPerFrame)
8356
+ unpackBinaryFrame (byteArray, frameOffset, pixelsPerFrame)
8333
8357
  {
8334
8358
  function isBitSet (byte, bitPos)
8335
8359
  {
@@ -8356,7 +8380,7 @@ DicomParser .prototype =
8356
8380
 
8357
8381
  return pixelData;
8358
8382
  },
8359
- decodeLittleEndian: function (pixelData)
8383
+ decodeLittleEndian (pixelData)
8360
8384
  {
8361
8385
  var
8362
8386
  buffer = pixelData .buffer,
@@ -8391,7 +8415,7 @@ DicomParser .prototype =
8391
8415
 
8392
8416
  return pixelData;
8393
8417
  },
8394
- decodeBigEndian: function (pixelData)
8418
+ decodeBigEndian (pixelData)
8395
8419
  {
8396
8420
  function swap16 (value)
8397
8421
  {
@@ -8425,7 +8449,7 @@ DicomParser .prototype =
8425
8449
 
8426
8450
  return pixelData;
8427
8451
  },
8428
- decodeRLE: function (pixelData)
8452
+ decodeRLE (pixelData)
8429
8453
  {
8430
8454
  if (this .bitsAllocated === 8)
8431
8455
  {
@@ -8440,7 +8464,7 @@ DicomParser .prototype =
8440
8464
 
8441
8465
  throw new Error ("DICOM: unsupported pixel format for RLE.");
8442
8466
  },
8443
- decodeRLE8: function (pixelData)
8467
+ decodeRLE8 (pixelData)
8444
8468
  {
8445
8469
  const frameData = pixelData;
8446
8470
  const frameSize = this .dicom .width * this .dicom .height;
@@ -8494,7 +8518,7 @@ DicomParser .prototype =
8494
8518
 
8495
8519
  return out;
8496
8520
  },
8497
- decodeRLE8Planar: function (pixelData)
8521
+ decodeRLE8Planar (pixelData)
8498
8522
  {
8499
8523
  const frameData = pixelData;
8500
8524
  const frameSize = this .dicom .width * this .dicom .height;
@@ -8547,7 +8571,7 @@ DicomParser .prototype =
8547
8571
 
8548
8572
  return out;
8549
8573
  },
8550
- decodeRLE16: function (pixelData)
8574
+ decodeRLE16 (pixelData)
8551
8575
  {
8552
8576
  const frameData = pixelData;
8553
8577
  const frameSize = this .dicom .width * this .dicom .height;
@@ -8596,7 +8620,7 @@ DicomParser .prototype =
8596
8620
 
8597
8621
  return out;
8598
8622
  },
8599
- decodeJPEGBaseline: function (pixelData)
8623
+ decodeJPEGBaseline (pixelData)
8600
8624
  {
8601
8625
  var jpeg = new JpegImage ();
8602
8626
 
@@ -8610,7 +8634,7 @@ DicomParser .prototype =
8610
8634
 
8611
8635
  return data;
8612
8636
  },
8613
- decodeJPEGLossless: function (pixelData)
8637
+ decodeJPEGLossless (pixelData)
8614
8638
  {
8615
8639
  const
8616
8640
  decoder = new jpeg .lossless .Decoder (),
@@ -8618,7 +8642,7 @@ DicomParser .prototype =
8618
8642
 
8619
8643
  return new Uint8Array (buffer);
8620
8644
  },
8621
- decodeJPEGLS: function (pixelData)
8645
+ decodeJPEGLS (pixelData)
8622
8646
  {
8623
8647
  var image = this .jpegLSDecode (pixelData, this .pixelRepresentation === 1);
8624
8648
 
@@ -8700,7 +8724,7 @@ DicomParser .prototype =
8700
8724
  return image;
8701
8725
  };
8702
8726
  })(),
8703
- decodeJPEG2000: function (pixelData)
8727
+ decodeJPEG2000 (pixelData)
8704
8728
  {
8705
8729
  var
8706
8730
  bytesPerPixel = this .bitsAllocated <= 8 ? 1 : 2,
@@ -8804,7 +8828,7 @@ DicomParser .prototype =
8804
8828
  return image;
8805
8829
  };
8806
8830
  })(),
8807
- convertRGBColorByPlane: function (pixelData)
8831
+ convertRGBColorByPlane (pixelData)
8808
8832
  {
8809
8833
  if (pixelData .length % 3 !== 0)
8810
8834
  throw new Error ("DICOM: convertRGBColorByPlane: RGB buffer length must be divisble by 3.");
@@ -8826,7 +8850,7 @@ DicomParser .prototype =
8826
8850
 
8827
8851
  return out;
8828
8852
  },
8829
- convertYBRFullByPixel: function (pixelData)
8853
+ convertYBRFullByPixel (pixelData)
8830
8854
  {
8831
8855
  if (pixelData .length % 3 !== 0)
8832
8856
  throw new Error ("DICOM: convertYBRFullByPixel: YBR buffer length must be divisble by 3.");
@@ -8853,7 +8877,7 @@ DicomParser .prototype =
8853
8877
 
8854
8878
  return out;
8855
8879
  },
8856
- convertYBRFullByPlane: function (pixelData)
8880
+ convertYBRFullByPlane (pixelData)
8857
8881
  {
8858
8882
  if (pixelData .length % 3 !== 0)
8859
8883
  throw new Error ("DICOM: convertYBRFullByPlane: YBR buffer length must be divisble by 3.");
@@ -8880,7 +8904,7 @@ DicomParser .prototype =
8880
8904
 
8881
8905
  return out;
8882
8906
  },
8883
- convertPaletteColor: function (pixelData)
8907
+ convertPaletteColor (pixelData)
8884
8908
  {
8885
8909
  function convertLUTto8Bit (lut, shift)
8886
8910
  {
@@ -8935,7 +8959,7 @@ DicomParser .prototype =
8935
8959
 
8936
8960
  return out;
8937
8961
  },
8938
- getLUT: function ()
8962
+ getLUT ()
8939
8963
  {
8940
8964
  if (this .LUT)
8941
8965
  return this .LUT;
@@ -8946,7 +8970,7 @@ DicomParser .prototype =
8946
8970
 
8947
8971
  return this .LUT;
8948
8972
  },
8949
- populatePaletteColorLut: function (dataSet, imagePixelModule)
8973
+ populatePaletteColorLut (dataSet, imagePixelModule)
8950
8974
  {
8951
8975
  imagePixelModule .redPaletteColorLookupTableDescriptor = this .getLutDescriptor (dataSet, 'x00281101');
8952
8976
  imagePixelModule .greenPaletteColorLookupTableDescriptor = this .getLutDescriptor (dataSet, 'x00281102');
@@ -8986,14 +9010,14 @@ DicomParser .prototype =
8986
9010
  imagePixelModule .greenPaletteColorLookupTableData = this .getLutData (dataSet, 'x00281202', imagePixelModule .greenPaletteColorLookupTableDescriptor);
8987
9011
  imagePixelModule .bluePaletteColorLookupTableData = this .getLutData (dataSet, 'x00281203', imagePixelModule .bluePaletteColorLookupTableDescriptor);
8988
9012
  },
8989
- getLutDescriptor: function (dataSet, tag)
9013
+ getLutDescriptor (dataSet, tag)
8990
9014
  {
8991
9015
  if (! dataSet .elements [tag] || dataSet .elements [tag] .length !== 6)
8992
9016
  return;
8993
9017
 
8994
9018
  return [dataSet .uint16 (tag, 0), dataSet .uint16 (tag, 1), dataSet .uint16 (tag, 2)];
8995
9019
  },
8996
- getLutData: function (lutDataSet, tag, lutDescriptor)
9020
+ getLutData (lutDataSet, tag, lutDescriptor)
8997
9021
  {
8998
9022
  const lut = [];
8999
9023
  const lutData = lutDataSet .elements [tag];
@@ -9009,7 +9033,7 @@ DicomParser .prototype =
9009
9033
 
9010
9034
  return lut;
9011
9035
  },
9012
- };
9036
+ });
9013
9037
 
9014
9038
  // ftp://medical.nema.org/medical/dicom/DataSets/WG04/
9015
9039
 
@@ -9019,7 +9043,7 @@ const DICOMParser_default_ = DicomParser;
9019
9043
  Namespace_default().set ("x_ite/Browser/Texturing3D/DICOMParser", DICOMParser_default_);
9020
9044
  /* harmony default export */ const DICOMParser = (DICOMParser_default_);
9021
9045
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/InputOutput/FileLoader\")"
9022
- const FileLoader_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/InputOutput/FileLoader");
9046
+ const FileLoader_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/InputOutput/FileLoader");
9023
9047
  var FileLoader_default = /*#__PURE__*/__webpack_require__.n(FileLoader_namespaceObject);
9024
9048
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing3D/ImageTexture3D.js
9025
9049
  /*******************************************************************************
@@ -9081,52 +9105,23 @@ var FileLoader_default = /*#__PURE__*/__webpack_require__.n(FileLoader_namespace
9081
9105
 
9082
9106
  function ImageTexture3D (executionContext)
9083
9107
  {
9084
- Texturing3D_X3DTexture3DNode.call (this, executionContext);
9108
+ Texturing3D_X3DTexture3DNode .call (this, executionContext);
9085
9109
  X3DUrlObject_default().call (this, executionContext);
9086
9110
 
9087
9111
  this .addType ((X3DConstants_default()).ImageTexture3D);
9088
9112
  }
9089
9113
 
9090
- ImageTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTexture3DNode.prototype),
9114
+ Object .assign (Object .setPrototypeOf (ImageTexture3D .prototype, Texturing3D_X3DTexture3DNode .prototype),
9091
9115
  (X3DUrlObject_default()).prototype,
9092
9116
  {
9093
- constructor: ImageTexture3D,
9094
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
9095
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9096
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
9097
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "load", new (Fields_default()).SFBool (true)),
9098
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "url", new (Fields_default()).MFString ()),
9099
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefresh", new (Fields_default()).SFTime ()),
9100
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefreshTimeLimit", new (Fields_default()).SFTime (3600)),
9101
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
9102
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
9103
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
9104
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
9105
- ]),
9106
- getTypeName: function ()
9107
- {
9108
- return "ImageTexture3D";
9109
- },
9110
- getComponentName: function ()
9117
+ initialize ()
9111
9118
  {
9112
- return "Texturing3D";
9113
- },
9114
- getContainerField: function ()
9115
- {
9116
- return "texture";
9117
- },
9118
- getSpecificationRange: function ()
9119
- {
9120
- return ["3.1", "Infinity"];
9121
- },
9122
- initialize: function ()
9123
- {
9124
- Texturing3D_X3DTexture3DNode.prototype.initialize.call (this);
9125
- X3DUrlObject_default().prototype.initialize.call (this);
9119
+ Texturing3D_X3DTexture3DNode .prototype .initialize .call (this);
9120
+ X3DUrlObject_default().prototype .initialize .call (this);
9126
9121
 
9127
9122
  this .requestImmediateLoad () .catch (Function .prototype);
9128
9123
  },
9129
- getInternalType: function (components)
9124
+ getInternalType (components)
9130
9125
  {
9131
9126
  const gl = this .getBrowser () .getContext ();
9132
9127
 
@@ -9142,11 +9137,11 @@ ImageTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTextu
9142
9137
  return gl .RGBA;
9143
9138
  }
9144
9139
  },
9145
- unloadData: function ()
9140
+ unloadData ()
9146
9141
  {
9147
9142
  this .clearTexture ();
9148
9143
  },
9149
- loadData: function ()
9144
+ loadData ()
9150
9145
  {
9151
9146
  new (FileLoader_default()) (this) .loadDocument (this ._url,
9152
9147
  function (data)
@@ -9186,10 +9181,50 @@ ImageTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTextu
9186
9181
  }
9187
9182
  .bind (this));
9188
9183
  },
9189
- dispose: function ()
9184
+ dispose ()
9185
+ {
9186
+ X3DUrlObject_default().prototype .dispose .call (this);
9187
+ Texturing3D_X3DTexture3DNode .prototype .dispose .call (this);
9188
+ },
9189
+ });
9190
+
9191
+ Object .defineProperties (ImageTexture3D,
9192
+ {
9193
+ typeName:
9194
+ {
9195
+ value: "ImageTexture3D",
9196
+ enumerable: true,
9197
+ },
9198
+ componentName:
9199
+ {
9200
+ value: "Texturing3D",
9201
+ enumerable: true,
9202
+ },
9203
+ containerField:
9204
+ {
9205
+ value: "texture",
9206
+ enumerable: true,
9207
+ },
9208
+ specificationRange:
9190
9209
  {
9191
- X3DUrlObject_default().prototype.dispose.call (this);
9192
- Texturing3D_X3DTexture3DNode.prototype.dispose.call (this);
9210
+ value: Object .freeze (["3.1", "Infinity"]),
9211
+ enumerable: true,
9212
+ },
9213
+ fieldDefinitions:
9214
+ {
9215
+ value: new (FieldDefinitionArray_default()) ([
9216
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9217
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
9218
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "load", new (Fields_default()).SFBool (true)),
9219
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "url", new (Fields_default()).MFString ()),
9220
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefresh", new (Fields_default()).SFTime ()),
9221
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefreshTimeLimit", new (Fields_default()).SFTime (3600)),
9222
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
9223
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
9224
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
9225
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
9226
+ ]),
9227
+ enumerable: true,
9193
9228
  },
9194
9229
  });
9195
9230
 
@@ -9198,9 +9233,9 @@ const ImageTexture3D_default_ = ImageTexture3D;
9198
9233
 
9199
9234
  Namespace_default().set ("x_ite/Components/Texturing3D/ImageTexture3D", ImageTexture3D_default_);
9200
9235
  /* harmony default export */ const Texturing3D_ImageTexture3D = (ImageTexture3D_default_);
9201
- ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/DEBUG\")"
9202
- const DEBUG_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/DEBUG");
9203
- var DEBUG_default = /*#__PURE__*/__webpack_require__.n(DEBUG_namespaceObject);
9236
+ ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/DEVELOPMENT\")"
9237
+ const DEVELOPMENT_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/DEVELOPMENT");
9238
+ var DEVELOPMENT_default = /*#__PURE__*/__webpack_require__.n(DEVELOPMENT_namespaceObject);
9204
9239
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing3D/ImageTextureAtlas.js
9205
9240
  /* provided dependency */ var $ = __webpack_require__(355);
9206
9241
  /*******************************************************************************
@@ -9260,7 +9295,7 @@ var DEBUG_default = /*#__PURE__*/__webpack_require__.n(DEBUG_namespaceObject);
9260
9295
 
9261
9296
  function ImageTextureAtlas (executionContext)
9262
9297
  {
9263
- Texturing3D_X3DTexture3DNode.call (this, executionContext);
9298
+ Texturing3D_X3DTexture3DNode .call (this, executionContext);
9264
9299
  X3DUrlObject_default().call (this, executionContext);
9265
9300
 
9266
9301
  this .addType ((X3DConstants_default()).ImageTextureAtlas);
@@ -9270,45 +9305,13 @@ function ImageTextureAtlas (executionContext)
9270
9305
  this .urlStack = new (Fields_default()).MFString ();
9271
9306
  }
9272
9307
 
9273
- ImageTextureAtlas .prototype = Object .assign (Object .create (Texturing3D_X3DTexture3DNode.prototype),
9308
+ Object .assign (Object .setPrototypeOf (ImageTextureAtlas .prototype, Texturing3D_X3DTexture3DNode .prototype),
9274
9309
  (X3DUrlObject_default()).prototype,
9275
9310
  {
9276
- constructor: ImageTextureAtlas,
9277
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
9278
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9279
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
9280
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "load", new (Fields_default()).SFBool (true)),
9281
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "url", new (Fields_default()).MFString ()),
9282
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefresh", new (Fields_default()).SFTime ()),
9283
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefreshTimeLimit", new (Fields_default()).SFTime (3600)),
9284
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "slicesOverX", new (Fields_default()).SFInt32 ()),
9285
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "slicesOverY", new (Fields_default()).SFInt32 ()),
9286
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "numberOfSlices", new (Fields_default()).SFInt32 ()),
9287
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
9288
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
9289
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
9290
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
9291
- ]),
9292
- getTypeName: function ()
9293
- {
9294
- return "ImageTextureAtlas";
9295
- },
9296
- getComponentName: function ()
9297
- {
9298
- return "Texturing3D";
9299
- },
9300
- getContainerField: function ()
9311
+ initialize ()
9301
9312
  {
9302
- return "texture";
9303
- },
9304
- getSpecificationRange: function ()
9305
- {
9306
- return ["4.0", "Infinity"];
9307
- },
9308
- initialize: function ()
9309
- {
9310
- Texturing3D_X3DTexture3DNode.prototype.initialize.call (this);
9311
- X3DUrlObject_default().prototype.initialize.call (this);
9313
+ Texturing3D_X3DTexture3DNode .prototype .initialize .call (this);
9314
+ X3DUrlObject_default().prototype .initialize .call (this);
9312
9315
 
9313
9316
  this .image .on ("load", this .setImage .bind (this));
9314
9317
  this .image .on ("abort error", this .setError .bind (this));
@@ -9316,16 +9319,16 @@ ImageTextureAtlas .prototype = Object .assign (Object .create (Texturing3D_X3DTe
9316
9319
 
9317
9320
  this .requestImmediateLoad () .catch (Function .prototype);
9318
9321
  },
9319
- unloadData: function ()
9322
+ unloadData ()
9320
9323
  {
9321
9324
  this .clearTexture ();
9322
9325
  },
9323
- loadData: function ()
9326
+ loadData ()
9324
9327
  {
9325
9328
  this .urlStack .setValue (this ._url);
9326
9329
  this .loadNext ();
9327
9330
  },
9328
- loadNext: function ()
9331
+ loadNext ()
9329
9332
  {
9330
9333
  if (this .urlStack .length === 0)
9331
9334
  {
@@ -9346,16 +9349,16 @@ ImageTextureAtlas .prototype = Object .assign (Object .create (Texturing3D_X3DTe
9346
9349
 
9347
9350
  this .image .attr ("src", this .URL .href);
9348
9351
  },
9349
- setError: function (event)
9352
+ setError (event)
9350
9353
  {
9351
9354
  if (this .URL .protocol !== "data:")
9352
9355
  console .warn (`Error loading image '${decodeURI (this .URL .href)}'`, event .type);
9353
9356
 
9354
9357
  this .loadNext ();
9355
9358
  },
9356
- setImage: function ()
9359
+ setImage ()
9357
9360
  {
9358
- if ((DEBUG_default()))
9361
+ if ((DEVELOPMENT_default()))
9359
9362
  {
9360
9363
  if (this .URL .protocol !== "data:")
9361
9364
  console .info (`Done loading image '${decodeURI (this .URL .href)}'`);
@@ -9422,17 +9425,60 @@ ImageTextureAtlas .prototype = Object .assign (Object .create (Texturing3D_X3DTe
9422
9425
  }
9423
9426
  catch (error)
9424
9427
  {
9425
- if ((DEBUG_default()))
9428
+ if ((DEVELOPMENT_default()))
9426
9429
  console .log (error)
9427
9430
 
9428
9431
  // Catch security error from cross origin requests.
9429
9432
  this .setError ({ type: error .message });
9430
9433
  }
9431
9434
  },
9432
- dispose: function ()
9435
+ dispose ()
9433
9436
  {
9434
- X3DUrlObject_default().prototype.dispose.call (this);
9435
- Texturing3D_X3DTexture3DNode.prototype.dispose.call (this);
9437
+ X3DUrlObject_default().prototype .dispose .call (this);
9438
+ Texturing3D_X3DTexture3DNode .prototype .dispose .call (this);
9439
+ },
9440
+ });
9441
+
9442
+ Object .defineProperties (ImageTextureAtlas,
9443
+ {
9444
+ typeName:
9445
+ {
9446
+ value: "ImageTextureAtlas",
9447
+ enumerable: true,
9448
+ },
9449
+ componentName:
9450
+ {
9451
+ value: "Texturing3D",
9452
+ enumerable: true,
9453
+ },
9454
+ containerField:
9455
+ {
9456
+ value: "texture",
9457
+ enumerable: true,
9458
+ },
9459
+ specificationRange:
9460
+ {
9461
+ value: Object .freeze (["4.0", "Infinity"]),
9462
+ enumerable: true,
9463
+ },
9464
+ fieldDefinitions:
9465
+ {
9466
+ value: new (FieldDefinitionArray_default()) ([
9467
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9468
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
9469
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "load", new (Fields_default()).SFBool (true)),
9470
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "url", new (Fields_default()).MFString ()),
9471
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefresh", new (Fields_default()).SFTime ()),
9472
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefreshTimeLimit", new (Fields_default()).SFTime (3600)),
9473
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "slicesOverX", new (Fields_default()).SFInt32 ()),
9474
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "slicesOverY", new (Fields_default()).SFInt32 ()),
9475
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "numberOfSlices", new (Fields_default()).SFInt32 ()),
9476
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
9477
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
9478
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
9479
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
9480
+ ]),
9481
+ enumerable: true,
9436
9482
  },
9437
9483
  });
9438
9484
 
@@ -9497,50 +9543,24 @@ Namespace_default().set ("x_ite/Components/Texturing3D/ImageTextureAtlas", Image
9497
9543
 
9498
9544
  function PixelTexture3D (executionContext)
9499
9545
  {
9500
- Texturing3D_X3DTexture3DNode.call (this, executionContext);
9546
+ Texturing3D_X3DTexture3DNode .call (this, executionContext);
9501
9547
 
9502
9548
  this .addType ((X3DConstants_default()).PixelTexture3D);
9503
9549
 
9504
9550
  this .addChildObjects ("loadState", new (Fields_default()).SFInt32 ((X3DConstants_default()).NOT_STARTED_STATE));
9505
9551
  }
9506
9552
 
9507
- PixelTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTexture3DNode.prototype),
9553
+ Object .assign (Object .setPrototypeOf (PixelTexture3D .prototype, Texturing3D_X3DTexture3DNode .prototype),
9508
9554
  {
9509
- constructor: PixelTexture3D,
9510
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
9511
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9512
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
9513
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "image", new (Fields_default()).MFInt32 (0, 0, 0, 0)),
9514
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
9515
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
9516
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
9517
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
9518
- ]),
9519
- getTypeName: function ()
9520
- {
9521
- return "PixelTexture3D";
9522
- },
9523
- getComponentName: function ()
9524
- {
9525
- return "Texturing3D";
9526
- },
9527
- getContainerField: function ()
9528
- {
9529
- return "texture";
9530
- },
9531
- getSpecificationRange: function ()
9532
- {
9533
- return ["3.1", "Infinity"];
9534
- },
9535
- initialize: function ()
9555
+ initialize ()
9536
9556
  {
9537
- Texturing3D_X3DTexture3DNode.prototype.initialize.call (this);
9557
+ Texturing3D_X3DTexture3DNode .prototype .initialize .call (this);
9538
9558
 
9539
9559
  this ._image .addInterest ("set_image__", this);
9540
9560
 
9541
9561
  this .set_image__ ();
9542
9562
  },
9543
- checkLoadState: function ()
9563
+ checkLoadState ()
9544
9564
  {
9545
9565
  return this ._loadState .getValue ();
9546
9566
  },
@@ -9651,16 +9671,53 @@ PixelTexture3D .prototype = Object .assign (Object .create (Texturing3D_X3DTextu
9651
9671
  })(),
9652
9672
  });
9653
9673
 
9674
+ Object .defineProperties (PixelTexture3D,
9675
+ {
9676
+ typeName:
9677
+ {
9678
+ value: "PixelTexture3D",
9679
+ enumerable: true,
9680
+ },
9681
+ componentName:
9682
+ {
9683
+ value: "Texturing3D",
9684
+ enumerable: true,
9685
+ },
9686
+ containerField:
9687
+ {
9688
+ value: "texture",
9689
+ enumerable: true,
9690
+ },
9691
+ specificationRange:
9692
+ {
9693
+ value: Object .freeze (["3.1", "Infinity"]),
9694
+ enumerable: true,
9695
+ },
9696
+ fieldDefinitions:
9697
+ {
9698
+ value: new (FieldDefinitionArray_default()) ([
9699
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9700
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "description", new (Fields_default()).SFString ()),
9701
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "image", new (Fields_default()).MFInt32 (0, 0, 0, 0)),
9702
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatS", new (Fields_default()).SFBool ()),
9703
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatT", new (Fields_default()).SFBool ()),
9704
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "repeatR", new (Fields_default()).SFBool ()),
9705
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "textureProperties", new (Fields_default()).SFNode ()),
9706
+ ]),
9707
+ enumerable: true,
9708
+ },
9709
+ });
9710
+
9654
9711
  const PixelTexture3D_default_ = PixelTexture3D;
9655
9712
  ;
9656
9713
 
9657
9714
  Namespace_default().set ("x_ite/Components/Texturing3D/PixelTexture3D", PixelTexture3D_default_);
9658
9715
  /* harmony default export */ const Texturing3D_PixelTexture3D = (PixelTexture3D_default_);
9659
9716
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Texturing/X3DSingleTextureCoordinateNode\")"
9660
- const X3DSingleTextureCoordinateNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Components/Texturing/X3DSingleTextureCoordinateNode");
9717
+ const X3DSingleTextureCoordinateNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Texturing/X3DSingleTextureCoordinateNode");
9661
9718
  var X3DSingleTextureCoordinateNode_default = /*#__PURE__*/__webpack_require__.n(X3DSingleTextureCoordinateNode_namespaceObject);
9662
9719
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Vector4\")"
9663
- const Vector4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("standard/Math/Numbers/Vector4");
9720
+ const Vector4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("standard/Math/Numbers/Vector4");
9664
9721
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing3D/TextureCoordinate3D.js
9665
9722
  /*******************************************************************************
9666
9723
  *
@@ -9723,52 +9780,30 @@ function TextureCoordinate3D (executionContext)
9723
9780
  this .addType ((X3DConstants_default()).TextureCoordinate3D);
9724
9781
  }
9725
9782
 
9726
- TextureCoordinate3D .prototype = Object .assign (Object .create ((X3DSingleTextureCoordinateNode_default()).prototype),
9783
+ Object .assign (Object .setPrototypeOf (TextureCoordinate3D .prototype, (X3DSingleTextureCoordinateNode_default()).prototype),
9727
9784
  {
9728
- constructor: TextureCoordinate3D,
9729
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
9730
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9731
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
9732
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "point", new (Fields_default()).MFVec3f ()),
9733
- ]),
9734
- getTypeName: function ()
9735
- {
9736
- return "TextureCoordinate3D";
9737
- },
9738
- getComponentName: function ()
9739
- {
9740
- return "Texturing3D";
9741
- },
9742
- getContainerField: function ()
9785
+ initialize ()
9743
9786
  {
9744
- return "texCoord";
9745
- },
9746
- getSpecificationRange: function ()
9747
- {
9748
- return ["3.1", "Infinity"];
9749
- },
9750
- initialize: function ()
9751
- {
9752
- X3DSingleTextureCoordinateNode_default().prototype.initialize.call (this);
9787
+ X3DSingleTextureCoordinateNode_default().prototype .initialize .call (this);
9753
9788
 
9754
9789
  this ._point .addInterest ("set_point__", this);
9755
9790
 
9756
9791
  this .set_point__ ();
9757
9792
  },
9758
- set_point__: function ()
9793
+ set_point__ ()
9759
9794
  {
9760
9795
  this .point = this ._point .getValue ();
9761
9796
  this .length = this ._point .length;
9762
9797
  },
9763
- isEmpty: function ()
9798
+ isEmpty ()
9764
9799
  {
9765
9800
  return this .length === 0;
9766
9801
  },
9767
- getSize: function ()
9802
+ getSize ()
9768
9803
  {
9769
9804
  return this .length;
9770
9805
  },
9771
- get1Point: function (index, vector)
9806
+ get1Point (index, vector)
9772
9807
  {
9773
9808
  if (index >= 0 && index < this .length)
9774
9809
  {
@@ -9792,7 +9827,7 @@ TextureCoordinate3D .prototype = Object .assign (Object .create ((X3DSingleTextu
9792
9827
  return vector .set (0, 0, 0, 1);
9793
9828
  }
9794
9829
  },
9795
- getPoints: function (array)
9830
+ getPoints (array)
9796
9831
  {
9797
9832
  const
9798
9833
  point = this .point,
@@ -9803,7 +9838,7 @@ TextureCoordinate3D .prototype = Object .assign (Object .create ((X3DSingleTextu
9803
9838
 
9804
9839
  return array;
9805
9840
  },
9806
- addPointToChannel: function (index, array)
9841
+ addPointToChannel (index, array)
9807
9842
  {
9808
9843
  if (index >= 0 && index < this .length)
9809
9844
  {
@@ -9829,6 +9864,39 @@ TextureCoordinate3D .prototype = Object .assign (Object .create ((X3DSingleTextu
9829
9864
  },
9830
9865
  });
9831
9866
 
9867
+ Object .defineProperties (TextureCoordinate3D,
9868
+ {
9869
+ typeName:
9870
+ {
9871
+ value: "TextureCoordinate3D",
9872
+ enumerable: true,
9873
+ },
9874
+ componentName:
9875
+ {
9876
+ value: "Texturing3D",
9877
+ enumerable: true,
9878
+ },
9879
+ containerField:
9880
+ {
9881
+ value: "texCoord",
9882
+ enumerable: true,
9883
+ },
9884
+ specificationRange:
9885
+ {
9886
+ value: Object .freeze (["3.1", "Infinity"]),
9887
+ enumerable: true,
9888
+ },
9889
+ fieldDefinitions:
9890
+ {
9891
+ value: new (FieldDefinitionArray_default()) ([
9892
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9893
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
9894
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "point", new (Fields_default()).MFVec3f ()),
9895
+ ]),
9896
+ enumerable: true,
9897
+ },
9898
+ });
9899
+
9832
9900
  const TextureCoordinate3D_default_ = TextureCoordinate3D;
9833
9901
  ;
9834
9902
 
@@ -9896,52 +9964,30 @@ function TextureCoordinate4D (executionContext)
9896
9964
  this .addType ((X3DConstants_default()).TextureCoordinate4D);
9897
9965
  }
9898
9966
 
9899
- TextureCoordinate4D .prototype = Object .assign (Object .create ((X3DSingleTextureCoordinateNode_default()).prototype),
9967
+ Object .assign (Object .setPrototypeOf (TextureCoordinate4D .prototype, (X3DSingleTextureCoordinateNode_default()).prototype),
9900
9968
  {
9901
- constructor: TextureCoordinate4D,
9902
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
9903
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
9904
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
9905
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "point", new (Fields_default()).MFVec4f ()),
9906
- ]),
9907
- getTypeName: function ()
9908
- {
9909
- return "TextureCoordinate4D";
9910
- },
9911
- getComponentName: function ()
9912
- {
9913
- return "Texturing3D";
9914
- },
9915
- getContainerField: function ()
9916
- {
9917
- return "texCoord";
9918
- },
9919
- getSpecificationRange: function ()
9920
- {
9921
- return ["3.1", "Infinity"];
9922
- },
9923
- initialize: function ()
9969
+ initialize ()
9924
9970
  {
9925
- X3DSingleTextureCoordinateNode_default().prototype.initialize.call (this);
9971
+ X3DSingleTextureCoordinateNode_default().prototype .initialize .call (this);
9926
9972
 
9927
9973
  this ._point .addInterest ("set_point__", this);
9928
9974
 
9929
9975
  this .set_point__ ();
9930
9976
  },
9931
- set_point__: function ()
9977
+ set_point__ ()
9932
9978
  {
9933
9979
  this .point = this ._point .getValue ();
9934
9980
  this .length = this ._point .length;
9935
9981
  },
9936
- isEmpty: function ()
9982
+ isEmpty ()
9937
9983
  {
9938
9984
  return this .length === 0;
9939
9985
  },
9940
- getSize: function ()
9986
+ getSize ()
9941
9987
  {
9942
9988
  return this .length;
9943
9989
  },
9944
- get1Point: function (index, vector)
9990
+ get1Point (index, vector)
9945
9991
  {
9946
9992
  if (index >= 0 && index < this .length)
9947
9993
  {
@@ -9965,7 +10011,7 @@ TextureCoordinate4D .prototype = Object .assign (Object .create ((X3DSingleTextu
9965
10011
  return vector .set (0, 0, 0, 1);
9966
10012
  }
9967
10013
  },
9968
- getPoints: function (array)
10014
+ getPoints (array)
9969
10015
  {
9970
10016
  const
9971
10017
  point = this .point,
@@ -9976,7 +10022,7 @@ TextureCoordinate4D .prototype = Object .assign (Object .create ((X3DSingleTextu
9976
10022
 
9977
10023
  return array;
9978
10024
  },
9979
- addPointToChannel: function (index, array)
10025
+ addPointToChannel (index, array)
9980
10026
  {
9981
10027
  if (index >= 0 && index < this .length)
9982
10028
  {
@@ -10002,22 +10048,55 @@ TextureCoordinate4D .prototype = Object .assign (Object .create ((X3DSingleTextu
10002
10048
  },
10003
10049
  });
10004
10050
 
10051
+ Object .defineProperties (TextureCoordinate4D,
10052
+ {
10053
+ typeName:
10054
+ {
10055
+ value: "TextureCoordinate4D",
10056
+ enumerable: true,
10057
+ },
10058
+ componentName:
10059
+ {
10060
+ value: "Texturing3D",
10061
+ enumerable: true,
10062
+ },
10063
+ containerField:
10064
+ {
10065
+ value: "texCoord",
10066
+ enumerable: true,
10067
+ },
10068
+ specificationRange:
10069
+ {
10070
+ value: Object .freeze (["3.1", "Infinity"]),
10071
+ enumerable: true,
10072
+ },
10073
+ fieldDefinitions:
10074
+ {
10075
+ value: new (FieldDefinitionArray_default()) ([
10076
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
10077
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
10078
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "point", new (Fields_default()).MFVec4f ()),
10079
+ ]),
10080
+ enumerable: true,
10081
+ },
10082
+ });
10083
+
10005
10084
  const TextureCoordinate4D_default_ = TextureCoordinate4D;
10006
10085
  ;
10007
10086
 
10008
10087
  Namespace_default().set ("x_ite/Components/Texturing3D/TextureCoordinate4D", TextureCoordinate4D_default_);
10009
10088
  /* harmony default export */ const Texturing3D_TextureCoordinate4D = (TextureCoordinate4D_default_);
10010
10089
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Texturing/X3DSingleTextureTransformNode\")"
10011
- const X3DSingleTextureTransformNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("x_ite/Components/Texturing/X3DSingleTextureTransformNode");
10090
+ const X3DSingleTextureTransformNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Texturing/X3DSingleTextureTransformNode");
10012
10091
  var X3DSingleTextureTransformNode_default = /*#__PURE__*/__webpack_require__.n(X3DSingleTextureTransformNode_namespaceObject);
10013
10092
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Vector3\")"
10014
- const Vector3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("standard/Math/Numbers/Vector3");
10093
+ const Vector3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("standard/Math/Numbers/Vector3");
10015
10094
  var Vector3_default = /*#__PURE__*/__webpack_require__.n(Vector3_namespaceObject);
10016
10095
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Rotation4\")"
10017
- const Rotation4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("standard/Math/Numbers/Rotation4");
10096
+ const Rotation4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("standard/Math/Numbers/Rotation4");
10018
10097
  var Rotation4_default = /*#__PURE__*/__webpack_require__.n(Rotation4_namespaceObject);
10019
10098
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Matrix4\")"
10020
- const Matrix4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.7.8")] .require ("standard/Math/Numbers/Matrix4");
10099
+ const Matrix4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("standard/Math/Numbers/Matrix4");
10021
10100
  var Matrix4_default = /*#__PURE__*/__webpack_require__.n(Matrix4_namespaceObject);
10022
10101
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing3D/TextureTransform3D.js
10023
10102
  /*******************************************************************************
@@ -10085,42 +10164,17 @@ function TextureTransform3D (executionContext)
10085
10164
  this .matrix = new (Matrix4_default()) ();
10086
10165
  }
10087
10166
 
10088
- TextureTransform3D .prototype = Object .assign (Object .create ((X3DSingleTextureTransformNode_default()).prototype),
10167
+ Object .assign (Object .setPrototypeOf (TextureTransform3D .prototype, (X3DSingleTextureTransformNode_default()).prototype),
10089
10168
  {
10090
- constructor: TextureTransform3D,
10091
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
10092
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
10093
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
10094
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "translation", new (Fields_default()).SFVec3f ()),
10095
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "rotation", new (Fields_default()).SFRotation ()),
10096
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "scale", new (Fields_default()).SFVec3f (1, 1, 1)),
10097
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "center", new (Fields_default()).SFVec3f ()),
10098
- ]),
10099
- getTypeName: function ()
10100
- {
10101
- return "TextureTransform3D";
10102
- },
10103
- getComponentName: function ()
10104
- {
10105
- return "Texturing3D";
10106
- },
10107
- getContainerField: function ()
10169
+ initialize ()
10108
10170
  {
10109
- return "textureTransform";
10110
- },
10111
- getSpecificationRange: function ()
10112
- {
10113
- return ["3.1", "Infinity"];
10114
- },
10115
- initialize: function ()
10116
- {
10117
- X3DSingleTextureTransformNode_default().prototype.initialize.call (this);
10171
+ X3DSingleTextureTransformNode_default().prototype .initialize .call (this);
10118
10172
 
10119
10173
  this .addInterest ("eventsProcessed", this);
10120
10174
 
10121
10175
  this .eventsProcessed ();
10122
10176
  },
10123
- getMatrix: function ()
10177
+ getMatrix ()
10124
10178
  {
10125
10179
  return this .matrix;
10126
10180
  },
@@ -10159,6 +10213,42 @@ TextureTransform3D .prototype = Object .assign (Object .create ((X3DSingleTextur
10159
10213
  })(),
10160
10214
  });
10161
10215
 
10216
+ Object .defineProperties (TextureTransform3D,
10217
+ {
10218
+ typeName:
10219
+ {
10220
+ value: "TextureTransform3D",
10221
+ enumerable: true,
10222
+ },
10223
+ componentName:
10224
+ {
10225
+ value: "Texturing3D",
10226
+ enumerable: true,
10227
+ },
10228
+ containerField:
10229
+ {
10230
+ value: "textureTransform",
10231
+ enumerable: true,
10232
+ },
10233
+ specificationRange:
10234
+ {
10235
+ value: Object .freeze (["3.1", "Infinity"]),
10236
+ enumerable: true,
10237
+ },
10238
+ fieldDefinitions:
10239
+ {
10240
+ value: new (FieldDefinitionArray_default()) ([
10241
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
10242
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
10243
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "translation", new (Fields_default()).SFVec3f ()),
10244
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "rotation", new (Fields_default()).SFRotation ()),
10245
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "scale", new (Fields_default()).SFVec3f (1, 1, 1)),
10246
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "center", new (Fields_default()).SFVec3f ()),
10247
+ ]),
10248
+ enumerable: true,
10249
+ },
10250
+ });
10251
+
10162
10252
  const TextureTransform3D_default_ = TextureTransform3D;
10163
10253
  ;
10164
10254
 
@@ -10225,45 +10315,56 @@ function TextureTransformMatrix3D (executionContext)
10225
10315
  this .addType ((X3DConstants_default()).TextureTransformMatrix3D);
10226
10316
  }
10227
10317
 
10228
- TextureTransformMatrix3D .prototype = Object .assign (Object .create ((X3DSingleTextureTransformNode_default()).prototype),
10318
+ Object .assign (Object .setPrototypeOf (TextureTransformMatrix3D .prototype, (X3DSingleTextureTransformNode_default()).prototype),
10229
10319
  {
10230
- constructor: TextureTransformMatrix3D,
10231
- [Symbol .for ("X_ITE.X3DBaseNode.fieldDefinitions")]: new (FieldDefinitionArray_default()) ([
10232
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
10233
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
10234
- new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "matrix", new (Fields_default()).SFMatrix4f ()),
10235
- ]),
10236
- getTypeName: function ()
10320
+ initialize ()
10237
10321
  {
10238
- return "TextureTransformMatrix3D";
10322
+ X3DSingleTextureTransformNode_default().prototype .initialize .call (this);
10323
+
10324
+ this .addInterest ("eventsProcessed", this);
10325
+
10326
+ this .eventsProcessed ();
10239
10327
  },
10240
- getComponentName: function ()
10328
+ getMatrix ()
10241
10329
  {
10242
- return "Texturing3D";
10330
+ return this ._matrix .getValue ();
10243
10331
  },
10244
- getContainerField: function ()
10332
+ eventsProcessed ()
10245
10333
  {
10246
- return "textureTransform";
10334
+ this .setMatrix (this ._matrix .getValue ());
10247
10335
  },
10248
- getSpecificationRange: function ()
10336
+ });
10337
+
10338
+ Object .defineProperties (TextureTransformMatrix3D,
10339
+ {
10340
+ typeName:
10249
10341
  {
10250
- return ["3.1", "Infinity"];
10342
+ value: "TextureTransformMatrix3D",
10343
+ enumerable: true,
10251
10344
  },
10252
- initialize: function ()
10345
+ componentName:
10253
10346
  {
10254
- X3DSingleTextureTransformNode_default().prototype.initialize.call (this);
10255
-
10256
- this .addInterest ("eventsProcessed", this);
10257
-
10258
- this .eventsProcessed ();
10347
+ value: "Texturing3D",
10348
+ enumerable: true,
10259
10349
  },
10260
- getMatrix: function ()
10350
+ containerField:
10261
10351
  {
10262
- return this ._matrix .getValue ();
10352
+ value: "textureTransform",
10353
+ enumerable: true,
10263
10354
  },
10264
- eventsProcessed: function ()
10355
+ specificationRange:
10265
10356
  {
10266
- this .setMatrix (this ._matrix .getValue ());
10357
+ value: Object .freeze (["3.1", "Infinity"]),
10358
+ enumerable: true,
10359
+ },
10360
+ fieldDefinitions:
10361
+ {
10362
+ value: new (FieldDefinitionArray_default()) ([
10363
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
10364
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "mapping", new (Fields_default()).SFString ()),
10365
+ new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "matrix", new (Fields_default()).SFMatrix4f ()),
10366
+ ]),
10367
+ enumerable: true,
10267
10368
  },
10268
10369
  });
10269
10370
 
@@ -10331,23 +10432,23 @@ Namespace_default().set ("x_ite/Components/Texturing3D/TextureTransformMatrix3D"
10331
10432
 
10332
10433
 
10333
10434
 
10334
- Components_default().addComponent ({
10435
+ Components_default().add ({
10335
10436
  name: "Texturing3D",
10336
- types:
10337
- {
10338
- ComposedTexture3D: Texturing3D_ComposedTexture3D,
10339
- ImageTexture3D: Texturing3D_ImageTexture3D,
10340
- ImageTextureAtlas: Texturing3D_ImageTextureAtlas, // non-standard
10341
- PixelTexture3D: Texturing3D_PixelTexture3D,
10342
- TextureCoordinate3D: Texturing3D_TextureCoordinate3D,
10343
- TextureCoordinate4D: Texturing3D_TextureCoordinate4D,
10344
- TextureTransform3D: Texturing3D_TextureTransform3D,
10345
- TextureTransformMatrix3D: Texturing3D_TextureTransformMatrix3D,
10346
- },
10347
- abstractTypes:
10348
- {
10349
- X3DTexture3DNode: Texturing3D_X3DTexture3DNode, // Not implemented yet.
10350
- },
10437
+ concreteNodes:
10438
+ [
10439
+ Texturing3D_ComposedTexture3D,
10440
+ Texturing3D_ImageTexture3D,
10441
+ Texturing3D_ImageTextureAtlas, // non-standard
10442
+ Texturing3D_PixelTexture3D,
10443
+ Texturing3D_TextureCoordinate3D,
10444
+ Texturing3D_TextureCoordinate4D,
10445
+ Texturing3D_TextureTransform3D,
10446
+ Texturing3D_TextureTransformMatrix3D,
10447
+ ],
10448
+ abstractNodes:
10449
+ [
10450
+ Texturing3D_X3DTexture3DNode,
10451
+ ],
10351
10452
  });
10352
10453
 
10353
10454
  const Texturing3D_default_ = undefined;