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.
- package/Makefile +3 -0
- package/build/bin/version.pl +1 -1
- package/dist/assets/components/Annotation.js +248 -169
- package/dist/assets/components/Annotation.min.js +1 -1
- package/dist/assets/components/CADGeometry.js +296 -233
- package/dist/assets/components/CADGeometry.min.js +1 -1
- package/dist/assets/components/CubeMapTexturing.js +217 -172
- package/dist/assets/components/CubeMapTexturing.min.js +1 -1
- package/dist/assets/components/DIS.js +451 -387
- package/dist/assets/components/DIS.min.js +1 -1
- package/dist/assets/components/EventUtilities.js +309 -208
- package/dist/assets/components/EventUtilities.min.js +1 -1
- package/dist/assets/components/Geometry2D.js +397 -333
- package/dist/assets/components/Geometry2D.min.js +1 -1
- package/dist/assets/components/Geospatial.js +705 -575
- package/dist/assets/components/Geospatial.min.js +1 -1
- package/dist/assets/components/HAnim.js +319 -259
- package/dist/assets/components/HAnim.min.js +1 -1
- package/dist/assets/components/KeyDeviceSensor.js +134 -99
- package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
- package/dist/assets/components/Layout.js +305 -240
- package/dist/assets/components/Layout.min.js +1 -1
- package/dist/assets/components/NURBS.js +781 -626
- package/dist/assets/components/NURBS.min.js +1 -1
- package/dist/assets/components/ParticleSystems.js +632 -460
- package/dist/assets/components/ParticleSystems.min.js +1 -1
- package/dist/assets/components/Picking.js +376 -295
- package/dist/assets/components/Picking.min.js +1 -1
- package/dist/assets/components/RigidBodyPhysics.js +936 -749
- package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
- package/dist/assets/components/Scripting.js +173 -103
- package/dist/assets/components/Scripting.min.js +1 -1
- package/dist/assets/components/Text.js +241 -207
- package/dist/assets/components/Text.min.js +1 -1
- package/dist/assets/components/TextureProjector.js +162 -129
- package/dist/assets/components/TextureProjector.min.js +1 -1
- package/dist/assets/components/Texturing3D.js +485 -384
- package/dist/assets/components/Texturing3D.min.js +1 -1
- package/dist/assets/components/VolumeRendering.js +741 -547
- package/dist/assets/components/VolumeRendering.min.js +1 -1
- package/dist/assets/components/X_ITE.js +66 -54
- package/dist/assets/components/X_ITE.min.js +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.js +61554 -59658
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/_config.yml +2 -2
- package/package.json +4 -4
- package/src/assets/components/Annotation.js +14 -14
- package/src/assets/components/CADGeometry.js +14 -14
- package/src/assets/components/CubeMapTexturing.js +11 -11
- package/src/assets/components/DIS.js +13 -13
- package/src/assets/components/EventUtilities.js +16 -16
- package/src/assets/components/Geometry2D.js +15 -15
- package/src/assets/components/Geospatial.js +19 -19
- package/src/assets/components/HAnim.js +13 -13
- package/src/assets/components/KeyDeviceSensor.js +10 -10
- package/src/assets/components/Layout.js +13 -13
- package/src/assets/components/NURBS.js +24 -24
- package/src/assets/components/ParticleSystems.js +19 -19
- package/src/assets/components/Picking.js +14 -14
- package/src/assets/components/RigidBodyPhysics.js +24 -24
- package/src/assets/components/Scripting.js +9 -9
- package/src/assets/components/Text.js +10 -10
- package/src/assets/components/TextureProjector.js +10 -10
- package/src/assets/components/Texturing3D.js +16 -16
- package/src/assets/components/VolumeRendering.js +23 -23
- package/src/assets/components/X_ITE.js +8 -7
- package/src/assets/shaders/webgl1/include/Shadow.glsl.js +21 -25
- package/src/assets/shaders/webgl2/include/Shadow.glsl.js +23 -27
- package/src/bookmarks.js +2 -2
- package/src/lib/jquery.js +42 -30
- package/src/standard/Geospatial/Geodetic.js +8 -9
- package/src/standard/Geospatial/UniversalTransverseMercator.js +4 -5
- package/src/standard/Math/Algorithm.js +41 -56
- package/src/standard/Math/Algorithms/Bezier.js +2 -2
- package/src/standard/Math/Algorithms/MergeSort.js +6 -6
- package/src/standard/Math/Algorithms/PartialSort.js +5 -5
- package/src/standard/Math/Algorithms/QuickSort.js +5 -5
- package/src/standard/Math/Geometry/Box2.js +16 -17
- package/src/standard/Math/Geometry/Box3.js +18 -19
- package/src/standard/Math/Geometry/Camera.js +6 -5
- package/src/standard/Math/Geometry/Cylinder3.js +6 -7
- package/src/standard/Math/Geometry/Line2.js +20 -18
- package/src/standard/Math/Geometry/Line3.js +20 -18
- package/src/standard/Math/Geometry/Plane3.js +11 -12
- package/src/standard/Math/Geometry/Sphere3.js +6 -7
- package/src/standard/Math/Geometry/Spheroid3.js +6 -7
- package/src/standard/Math/Geometry/Triangle2.js +4 -3
- package/src/standard/Math/Geometry/Triangle3.js +5 -4
- package/src/standard/Math/Geometry/ViewVolume.js +6 -7
- package/src/standard/Math/Numbers/Color3.js +18 -19
- package/src/standard/Math/Numbers/Color4.js +20 -21
- package/src/standard/Math/Numbers/Complex.js +28 -29
- package/src/standard/Math/Numbers/Matrix2.js +22 -23
- package/src/standard/Math/Numbers/Matrix3.js +28 -29
- package/src/standard/Math/Numbers/Matrix4.js +29 -30
- package/src/standard/Math/Numbers/Quaternion.js +40 -41
- package/src/standard/Math/Numbers/Rotation4.js +34 -35
- package/src/standard/Math/Numbers/Vector2.js +29 -30
- package/src/standard/Math/Numbers/Vector3.js +32 -33
- package/src/standard/Math/Numbers/Vector4.js +34 -35
- package/src/standard/Math/Utility/BVH.js +14 -15
- package/src/standard/Math/Utility/MatrixStack.js +12 -12
- package/src/standard/Time/MicroTime.js +4 -3
- package/src/standard/Utility/BitSet.js +10 -11
- package/src/standard/Utility/DataStorage.js +10 -10
- package/src/standard/Utility/MapUtilities.js +2 -1
- package/src/standard/Utility/ObjectCache.js +3 -3
- package/src/tests.js +10 -0
- package/src/x_ite/Base/Events.js +3 -3
- package/src/x_ite/Base/FieldArray.js +11 -9
- package/src/x_ite/Base/FieldDefinitionArray.js +11 -9
- package/src/x_ite/Base/X3DArrayField.js +13 -14
- package/src/x_ite/Base/X3DBaseNode.js +219 -181
- package/src/x_ite/Base/X3DCast.js +1 -1
- package/src/x_ite/Base/X3DChildObject.js +162 -53
- package/src/x_ite/Base/X3DConstants.js +74 -60
- package/src/x_ite/Base/X3DEventObject.js +6 -12
- package/src/x_ite/Base/X3DField.js +45 -42
- package/src/x_ite/Base/X3DFieldDefinition.js +9 -7
- package/src/x_ite/Base/X3DInfoArray.js +75 -65
- package/src/x_ite/Base/X3DObject.js +59 -29
- package/src/x_ite/Base/X3DObjectArrayField.js +51 -117
- package/src/x_ite/Base/X3DTypedArrayField.js +48 -42
- package/src/x_ite/Browser/Core/BrowserOptions.js +55 -57
- package/src/x_ite/Browser/Core/BrowserProperties.js +18 -20
- package/src/x_ite/Browser/Core/BrowserTimings.js +29 -33
- package/src/x_ite/Browser/Core/Context.js +7 -7
- package/src/x_ite/Browser/Core/ContextMenu.js +61 -83
- package/src/x_ite/Browser/Core/Notification.js +12 -12
- package/src/x_ite/Browser/Core/RenderingProperties.js +28 -28
- package/src/x_ite/Browser/Core/X3DCoreContext.js +45 -37
- package/src/x_ite/Browser/DOMIntegration.js +4 -1
- package/src/x_ite/Browser/EnvironmentalEffects/X3DEnvironmentalEffectsContext.js +3 -3
- package/src/x_ite/Browser/Followers/X3DArrayChaserTemplate.js +1 -1
- package/src/x_ite/Browser/Followers/X3DArrayFollowerTemplate.js +12 -12
- package/src/x_ite/Browser/Geometry2D/Arc2DOptions.js +8 -14
- package/src/x_ite/Browser/Geometry2D/ArcClose2DOptions.js +8 -14
- package/src/x_ite/Browser/Geometry2D/Circle2DOptions.js +13 -17
- package/src/x_ite/Browser/Geometry2D/Disk2DOptions.js +15 -19
- package/src/x_ite/Browser/Geometry2D/Rectangle2DOptions.js +12 -16
- package/src/x_ite/Browser/Geometry2D/X3DGeometry2DContext.js +9 -9
- package/src/x_ite/Browser/Geometry3D/BoxOptions.js +12 -16
- package/src/x_ite/Browser/Geometry3D/ConeOptions.js +6 -12
- package/src/x_ite/Browser/Geometry3D/CylinderOptions.js +6 -12
- package/src/x_ite/Browser/Geometry3D/IcoSphereOptions.js +13 -17
- package/src/x_ite/Browser/Geometry3D/QuadSphereOptions.js +17 -21
- package/src/x_ite/Browser/Geometry3D/X3DGeometry3DContext.js +8 -8
- package/src/x_ite/Browser/Geospatial/Geocentric.js +5 -6
- package/src/x_ite/Browser/Geospatial/Geospatial.js +10 -10
- package/src/x_ite/Browser/Grouping/X3DGroupingContext.js +3 -3
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator.js +2 -3
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator1.js +8 -9
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolatorTemplate.js +7 -8
- package/src/x_ite/Browser/Interpolation/SquatInterpolator.js +3 -4
- package/src/x_ite/Browser/KeyDeviceSensor/X3DKeyDeviceSensorContext.js +8 -8
- package/src/x_ite/Browser/Layering/X3DLayeringContext.js +4 -4
- package/src/x_ite/Browser/Layout/ScreenText.js +7 -8
- package/src/x_ite/Browser/Layout/X3DLayoutContext.js +3 -3
- package/src/x_ite/Browser/Legacy.js +32 -12
- package/src/x_ite/Browser/Lighting/X3DLightingContext.js +5 -5
- package/src/x_ite/Browser/NURBS/NURBS.js +10 -10
- package/src/x_ite/Browser/Navigation/ExamineViewer.js +32 -20
- package/src/x_ite/Browser/Navigation/FlyViewer.js +22 -10
- package/src/x_ite/Browser/Navigation/LookAtViewer.js +29 -17
- package/src/x_ite/Browser/Navigation/NoneViewer.js +15 -5
- package/src/x_ite/Browser/Navigation/PlaneViewer.js +24 -12
- package/src/x_ite/Browser/Navigation/WalkViewer.js +22 -10
- package/src/x_ite/Browser/Navigation/X3DFlyViewer.js +17 -18
- package/src/x_ite/Browser/Navigation/X3DNavigationContext.js +19 -19
- package/src/x_ite/Browser/Navigation/X3DViewer.js +13 -19
- package/src/x_ite/Browser/Networking/URLs.js +5 -5
- package/src/x_ite/Browser/Networking/X3DNetworkingContext.js +16 -16
- package/src/x_ite/Browser/ParticleSystems/X3DParticleSystemsContext.js +3 -3
- package/src/x_ite/Browser/Picking/VolumePicker.js +8 -8
- package/src/x_ite/Browser/Picking/X3DPickingContext.js +12 -12
- package/src/x_ite/Browser/PointingDeviceSensor/PointingDevice.js +24 -20
- package/src/x_ite/Browser/PointingDeviceSensor/PointingDeviceSensorContainer.js +6 -6
- package/src/x_ite/Browser/PointingDeviceSensor/X3DPointingDeviceSensorContext.js +21 -21
- package/src/x_ite/Browser/Rendering/GeometryContext.js +4 -5
- package/src/x_ite/Browser/Rendering/X3DRenderingContext.js +18 -18
- package/src/x_ite/Browser/Scripting/X3DScriptingContext.js +4 -4
- package/src/x_ite/Browser/Shaders/ShaderCompiler.js +4 -4
- package/src/x_ite/Browser/Shaders/ShaderSource.js +1 -1
- package/src/x_ite/Browser/Shaders/X3DShadersContext.js +13 -13
- package/src/x_ite/Browser/Shape/X3DShapeContext.js +12 -12
- package/src/x_ite/Browser/Sound/X3DSoundContext.js +0 -2
- package/src/x_ite/Browser/Text/PolygonText.js +10 -11
- package/src/x_ite/Browser/Text/X3DTextContext.js +6 -6
- package/src/x_ite/Browser/Text/X3DTextGeometry.js +18 -19
- package/src/x_ite/Browser/Texturing/GifMedia.js +7 -7
- package/src/x_ite/Browser/Texturing/X3DTexturingContext.js +24 -24
- package/src/x_ite/Browser/Texturing3D/DICOMParser.js +38 -38
- package/src/x_ite/Browser/Texturing3D/NRRDParser.js +14 -14
- package/src/x_ite/Browser/Time/X3DTimeContext.js +5 -5
- package/src/x_ite/Browser/VERSION.js +1 -1
- package/src/x_ite/Browser/VolumeRendering/VolumeMaterial.js +39 -22
- package/src/x_ite/Browser/VolumeRendering/X3DVolumeRenderingContext.js +6 -6
- package/src/x_ite/Browser/X3DBrowser.js +170 -136
- package/src/x_ite/Browser/X3DBrowserContext.js +23 -24
- package/src/x_ite/Components/Annotation/AnnotationLayer.js +30 -19
- package/src/x_ite/Components/Annotation/AnnotationTarget.js +30 -19
- package/src/x_ite/Components/Annotation/GroupAnnotation.js +40 -29
- package/src/x_ite/Components/Annotation/IconAnnotation.js +38 -27
- package/src/x_ite/Components/Annotation/TextAnnotation.js +31 -20
- package/src/x_ite/Components/Annotation/URLAnnotation.js +30 -19
- package/src/x_ite/Components/Annotation/X3DAnnotationNode.js +16 -3
- package/src/x_ite/Components/CADGeometry/CADAssembly.js +32 -21
- package/src/x_ite/Components/CADGeometry/CADFace.js +48 -37
- package/src/x_ite/Components/CADGeometry/CADLayer.js +30 -21
- package/src/x_ite/Components/CADGeometry/CADPart.js +37 -26
- package/src/x_ite/Components/CADGeometry/IndexedQuadSet.js +51 -46
- package/src/x_ite/Components/CADGeometry/QuadSet.js +48 -43
- package/src/x_ite/Components/CADGeometry/X3DProductStructureChildNode.js +13 -2
- package/src/x_ite/Components/Core/MetadataBoolean.js +33 -22
- package/src/x_ite/Components/Core/MetadataDouble.js +33 -22
- package/src/x_ite/Components/Core/MetadataFloat.js +33 -22
- package/src/x_ite/Components/Core/MetadataInteger.js +33 -22
- package/src/x_ite/Components/Core/MetadataSet.js +33 -22
- package/src/x_ite/Components/Core/MetadataString.js +33 -22
- package/src/x_ite/Components/Core/WorldInfo.js +34 -23
- package/src/x_ite/Components/Core/X3DBindableNode.js +17 -4
- package/src/x_ite/Components/Core/X3DChildNode.js +19 -6
- package/src/x_ite/Components/Core/X3DInfoNode.js +13 -2
- package/src/x_ite/Components/Core/X3DMetadataObject.js +18 -5
- package/src/x_ite/Components/Core/X3DNode.js +66 -34
- package/src/x_ite/Components/Core/X3DPrototypeInstance.js +68 -77
- package/src/x_ite/Components/Core/X3DSensorNode.js +13 -2
- package/src/x_ite/Components/Core.js +22 -29
- package/src/x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture.js +46 -35
- package/src/x_ite/Components/CubeMapTexturing/GeneratedCubeMapTexture.js +39 -28
- package/src/x_ite/Components/CubeMapTexturing/ImageCubeMapTexture.js +47 -36
- package/src/x_ite/Components/CubeMapTexturing/X3DEnvironmentTextureNode.js +21 -8
- package/src/x_ite/Components/DIS/DISEntityManager.js +29 -20
- package/src/x_ite/Components/DIS/DISEntityTypeMapping.js +41 -30
- package/src/x_ite/Components/DIS/EspduTransform.js +117 -106
- package/src/x_ite/Components/DIS/ReceiverPdu.js +60 -49
- package/src/x_ite/Components/DIS/SignalPdu.js +60 -49
- package/src/x_ite/Components/DIS/TransmitterPdu.js +76 -65
- package/src/x_ite/Components/EnvironmentalEffects/Background.js +47 -36
- package/src/x_ite/Components/EnvironmentalEffects/Fog.js +42 -31
- package/src/x_ite/Components/EnvironmentalEffects/FogCoordinate.js +39 -28
- package/src/x_ite/Components/EnvironmentalEffects/LocalFog.js +40 -29
- package/src/x_ite/Components/EnvironmentalEffects/TextureBackground.js +48 -37
- package/src/x_ite/Components/EnvironmentalEffects/X3DBackgroundNode.js +28 -15
- package/src/x_ite/Components/EnvironmentalEffects/X3DFogObject.js +30 -18
- package/src/x_ite/Components/EnvironmentalEffects.js +15 -22
- package/src/x_ite/Components/EnvironmentalSensor/ProximitySensor.js +45 -34
- package/src/x_ite/Components/EnvironmentalSensor/TransformSensor.js +50 -39
- package/src/x_ite/Components/EnvironmentalSensor/VisibilitySensor.js +41 -30
- package/src/x_ite/Components/EnvironmentalSensor/X3DEnvironmentalSensorNode.js +22 -9
- package/src/x_ite/Components/EnvironmentalSensor.js +12 -19
- package/src/x_ite/Components/EventUtilities/BooleanFilter.js +38 -27
- package/src/x_ite/Components/EventUtilities/BooleanSequencer.js +38 -27
- package/src/x_ite/Components/EventUtilities/BooleanToggle.js +33 -22
- package/src/x_ite/Components/EventUtilities/BooleanTrigger.js +32 -21
- package/src/x_ite/Components/EventUtilities/IntegerSequencer.js +38 -27
- package/src/x_ite/Components/EventUtilities/IntegerTrigger.js +33 -22
- package/src/x_ite/Components/EventUtilities/TimeTrigger.js +32 -21
- package/src/x_ite/Components/EventUtilities/X3DSequencerNode.js +20 -7
- package/src/x_ite/Components/EventUtilities/X3DTriggerNode.js +13 -2
- package/src/x_ite/Components/Followers/ColorChaser.js +47 -36
- package/src/x_ite/Components/Followers/ColorDamper.js +49 -38
- package/src/x_ite/Components/Followers/CoordinateChaser.js +33 -22
- package/src/x_ite/Components/Followers/CoordinateDamper.js +35 -24
- package/src/x_ite/Components/Followers/OrientationChaser.js +43 -32
- package/src/x_ite/Components/Followers/OrientationDamper.js +41 -30
- package/src/x_ite/Components/Followers/PositionChaser.js +33 -22
- package/src/x_ite/Components/Followers/PositionChaser2D.js +33 -22
- package/src/x_ite/Components/Followers/PositionDamper.js +35 -24
- package/src/x_ite/Components/Followers/PositionDamper2D.js +35 -24
- package/src/x_ite/Components/Followers/ScalarChaser.js +47 -36
- package/src/x_ite/Components/Followers/ScalarDamper.js +43 -32
- package/src/x_ite/Components/Followers/TexCoordChaser2D.js +33 -22
- package/src/x_ite/Components/Followers/TexCoordDamper2D.js +35 -24
- package/src/x_ite/Components/Followers/X3DChaserNode.js +27 -14
- package/src/x_ite/Components/Followers/X3DDamperNode.js +22 -9
- package/src/x_ite/Components/Followers/X3DFollowerNode.js +29 -16
- package/src/x_ite/Components/Followers.js +25 -32
- package/src/x_ite/Components/Geometry2D/Arc2D.js +38 -27
- package/src/x_ite/Components/Geometry2D/ArcClose2D.js +39 -28
- package/src/x_ite/Components/Geometry2D/Circle2D.js +35 -24
- package/src/x_ite/Components/Geometry2D/Disk2D.js +40 -29
- package/src/x_ite/Components/Geometry2D/Polyline2D.js +34 -23
- package/src/x_ite/Components/Geometry2D/Polypoint2D.js +34 -23
- package/src/x_ite/Components/Geometry2D/Rectangle2D.js +34 -23
- package/src/x_ite/Components/Geometry2D/TriangleSet2D.js +36 -25
- package/src/x_ite/Components/Geometry3D/Box.js +34 -23
- package/src/x_ite/Components/Geometry3D/Cone.js +40 -29
- package/src/x_ite/Components/Geometry3D/Cylinder.js +41 -30
- package/src/x_ite/Components/Geometry3D/ElevationGrid.js +63 -52
- package/src/x_ite/Components/Geometry3D/Extrusion.js +49 -38
- package/src/x_ite/Components/Geometry3D/IndexedFaceSet.js +98 -95
- package/src/x_ite/Components/Geometry3D/Sphere.js +36 -25
- package/src/x_ite/Components/Geometry3D.js +15 -22
- package/src/x_ite/Components/Geospatial/GeoCoordinate.js +37 -26
- package/src/x_ite/Components/Geospatial/GeoElevationGrid.js +63 -52
- package/src/x_ite/Components/Geospatial/GeoLOD.js +59 -48
- package/src/x_ite/Components/Geospatial/GeoLocation.js +45 -34
- package/src/x_ite/Components/Geospatial/GeoMetadata.js +38 -27
- package/src/x_ite/Components/Geospatial/GeoOrigin.js +37 -26
- package/src/x_ite/Components/Geospatial/GeoPositionInterpolator.js +43 -32
- package/src/x_ite/Components/Geospatial/GeoProximitySensor.js +48 -37
- package/src/x_ite/Components/Geospatial/GeoTouchSensor.js +45 -34
- package/src/x_ite/Components/Geospatial/GeoTransform.js +49 -38
- package/src/x_ite/Components/Geospatial/GeoViewpoint.js +56 -45
- package/src/x_ite/Components/Geospatial/X3DGeospatialObject.js +30 -17
- package/src/x_ite/Components/Grouping/Group.js +29 -20
- package/src/x_ite/Components/Grouping/StaticGroup.js +40 -48
- package/src/x_ite/Components/Grouping/Switch.js +51 -40
- package/src/x_ite/Components/Grouping/Transform.js +34 -25
- package/src/x_ite/Components/Grouping/X3DBoundedObject.js +22 -9
- package/src/x_ite/Components/Grouping/X3DGroupingNode.js +224 -221
- package/src/x_ite/Components/Grouping/X3DTransformMatrix3DNode.js +20 -7
- package/src/x_ite/Components/Grouping/X3DTransformNode.js +17 -4
- package/src/x_ite/Components/Grouping.js +16 -23
- package/src/x_ite/Components/HAnim/HAnimDisplacer.js +27 -18
- package/src/x_ite/Components/HAnim/HAnimHumanoid.js +73 -62
- package/src/x_ite/Components/HAnim/HAnimJoint.js +61 -50
- package/src/x_ite/Components/HAnim/HAnimMotion.js +44 -33
- package/src/x_ite/Components/HAnim/HAnimSegment.js +36 -27
- package/src/x_ite/Components/HAnim/HAnimSite.js +36 -27
- package/src/x_ite/Components/Interpolation/ColorInterpolator.js +38 -27
- package/src/x_ite/Components/Interpolation/CoordinateInterpolator.js +38 -27
- package/src/x_ite/Components/Interpolation/CoordinateInterpolator2D.js +38 -27
- package/src/x_ite/Components/Interpolation/EaseInEaseOut.js +39 -28
- package/src/x_ite/Components/Interpolation/NormalInterpolator.js +38 -27
- package/src/x_ite/Components/Interpolation/OrientationInterpolator.js +38 -27
- package/src/x_ite/Components/Interpolation/PositionInterpolator.js +38 -27
- package/src/x_ite/Components/Interpolation/PositionInterpolator2D.js +38 -27
- package/src/x_ite/Components/Interpolation/ScalarInterpolator.js +39 -28
- package/src/x_ite/Components/Interpolation/SplinePositionInterpolator.js +44 -33
- package/src/x_ite/Components/Interpolation/SplinePositionInterpolator2D.js +44 -33
- package/src/x_ite/Components/Interpolation/SplineScalarInterpolator.js +44 -33
- package/src/x_ite/Components/Interpolation/SquadOrientationInterpolator.js +40 -29
- package/src/x_ite/Components/Interpolation/X3DInterpolatorNode.js +21 -8
- package/src/x_ite/Components/Interpolation.js +22 -29
- package/src/x_ite/Components/KeyDeviceSensor/KeySensor.js +44 -33
- package/src/x_ite/Components/KeyDeviceSensor/StringSensor.js +38 -27
- package/src/x_ite/Components/KeyDeviceSensor/X3DKeyDeviceSensorNode.js +23 -10
- package/src/x_ite/Components/Layering/Layer.js +40 -29
- package/src/x_ite/Components/Layering/LayerSet.js +44 -33
- package/src/x_ite/Components/Layering/Viewport.js +48 -37
- package/src/x_ite/Components/Layering/X3DLayerNode.js +45 -32
- package/src/x_ite/Components/Layering/X3DViewportNode.js +13 -2
- package/src/x_ite/Components/Layering.js +13 -20
- package/src/x_ite/Components/Layout/Layout.js +60 -49
- package/src/x_ite/Components/Layout/LayoutGroup.js +48 -37
- package/src/x_ite/Components/Layout/LayoutLayer.js +41 -30
- package/src/x_ite/Components/Layout/ScreenFontStyle.js +41 -30
- package/src/x_ite/Components/Layout/ScreenGroup.js +42 -31
- package/src/x_ite/Components/Layout/X3DLayoutNode.js +13 -2
- package/src/x_ite/Components/Lighting/DirectionalLight.js +45 -35
- package/src/x_ite/Components/Lighting/EnvironmentLight.js +51 -41
- package/src/x_ite/Components/Lighting/PointLight.js +53 -43
- package/src/x_ite/Components/Lighting/SpotLight.js +62 -52
- package/src/x_ite/Components/Lighting/X3DLightNode.js +29 -16
- package/src/x_ite/Components/Lighting.js +13 -20
- package/src/x_ite/Components/NURBS/Contour2D.js +45 -45
- package/src/x_ite/Components/NURBS/ContourPolyline2D.js +34 -23
- package/src/x_ite/Components/NURBS/CoordinateDouble.js +23 -14
- package/src/x_ite/Components/NURBS/NurbsCurve.js +47 -36
- package/src/x_ite/Components/NURBS/NurbsCurve2D.js +44 -33
- package/src/x_ite/Components/NURBS/NurbsOrientationInterpolator.js +46 -35
- package/src/x_ite/Components/NURBS/NurbsPatchSurface.js +36 -27
- package/src/x_ite/Components/NURBS/NurbsPositionInterpolator.js +46 -35
- package/src/x_ite/Components/NURBS/NurbsSet.js +52 -52
- package/src/x_ite/Components/NURBS/NurbsSurfaceInterpolator.js +44 -33
- package/src/x_ite/Components/NURBS/NurbsSweptSurface.js +40 -29
- package/src/x_ite/Components/NURBS/NurbsSwungSurface.js +40 -29
- package/src/x_ite/Components/NURBS/NurbsTextureCoordinate.js +43 -32
- package/src/x_ite/Components/NURBS/NurbsTrimmedSurface.js +59 -59
- package/src/x_ite/Components/NURBS/X3DNurbsControlCurveNode.js +13 -2
- package/src/x_ite/Components/NURBS/X3DNurbsSurfaceGeometryNode.js +30 -17
- package/src/x_ite/Components/NURBS/X3DParametricGeometryNode.js +16 -3
- package/src/x_ite/Components/Navigation/Billboard.js +43 -32
- package/src/x_ite/Components/Navigation/Collision.js +49 -38
- package/src/x_ite/Components/Navigation/LOD.js +54 -43
- package/src/x_ite/Components/Navigation/NavigationInfo.js +58 -47
- package/src/x_ite/Components/Navigation/OrthoViewpoint.js +69 -58
- package/src/x_ite/Components/Navigation/Viewpoint.js +53 -42
- package/src/x_ite/Components/Navigation/ViewpointGroup.js +44 -33
- package/src/x_ite/Components/Navigation/X3DViewpointNode.js +48 -35
- package/src/x_ite/Components/Navigation.js +16 -23
- package/src/x_ite/Components/Networking/Anchor.js +51 -40
- package/src/x_ite/Components/Networking/Inline.js +54 -43
- package/src/x_ite/Components/Networking/LoadSensor.js +49 -38
- package/src/x_ite/Components/Networking/X3DNetworkSensorNode.js +13 -2
- package/src/x_ite/Components/Networking/X3DUrlObject.js +35 -22
- package/src/x_ite/Components/Networking.js +13 -20
- package/src/x_ite/Components/ParticleSystems/BoundedPhysicsModel.js +37 -26
- package/src/x_ite/Components/ParticleSystems/ConeEmitter.js +44 -33
- package/src/x_ite/Components/ParticleSystems/ExplosionEmitter.js +41 -30
- package/src/x_ite/Components/ParticleSystems/ForcePhysicsModel.js +34 -23
- package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +83 -72
- package/src/x_ite/Components/ParticleSystems/PointEmitter.js +41 -30
- package/src/x_ite/Components/ParticleSystems/PolylineEmitter.js +42 -31
- package/src/x_ite/Components/ParticleSystems/SurfaceEmitter.js +42 -31
- package/src/x_ite/Components/ParticleSystems/VolumeEmitter.js +43 -32
- package/src/x_ite/Components/ParticleSystems/WindPhysicsModel.js +38 -27
- package/src/x_ite/Components/ParticleSystems/X3DParticleEmitterNode.js +33 -20
- package/src/x_ite/Components/ParticleSystems/X3DParticlePhysicsModelNode.js +16 -3
- package/src/x_ite/Components/Picking/LinePickSensor.js +49 -38
- package/src/x_ite/Components/Picking/PickableGroup.js +45 -34
- package/src/x_ite/Components/Picking/PointPickSensor.js +46 -35
- package/src/x_ite/Components/Picking/PrimitivePickSensor.js +46 -35
- package/src/x_ite/Components/Picking/VolumePickSensor.js +45 -34
- package/src/x_ite/Components/Picking/X3DPickSensorNode.js +31 -18
- package/src/x_ite/Components/Picking/X3DPickableObject.js +20 -7
- package/src/x_ite/Components/PointingDeviceSensor/CylinderSensor.js +50 -39
- package/src/x_ite/Components/PointingDeviceSensor/PlaneSensor.js +52 -45
- package/src/x_ite/Components/PointingDeviceSensor/SphereSensor.js +44 -33
- package/src/x_ite/Components/PointingDeviceSensor/TouchSensor.js +30 -21
- package/src/x_ite/Components/PointingDeviceSensor/X3DDragSensorNode.js +13 -2
- package/src/x_ite/Components/PointingDeviceSensor/X3DPointingDeviceSensorNode.js +22 -11
- package/src/x_ite/Components/PointingDeviceSensor/X3DTouchSensorNode.js +16 -3
- package/src/x_ite/Components/PointingDeviceSensor.js +15 -22
- package/src/x_ite/Components/Rendering/ClipPlane.js +44 -34
- package/src/x_ite/Components/Rendering/Color.js +37 -26
- package/src/x_ite/Components/Rendering/ColorRGBA.js +37 -26
- package/src/x_ite/Components/Rendering/Coordinate.js +23 -14
- package/src/x_ite/Components/Rendering/IndexedLineSet.js +52 -41
- package/src/x_ite/Components/Rendering/IndexedTriangleFanSet.js +48 -37
- package/src/x_ite/Components/Rendering/IndexedTriangleSet.js +44 -33
- package/src/x_ite/Components/Rendering/IndexedTriangleStripSet.js +48 -37
- package/src/x_ite/Components/Rendering/LineSet.js +45 -34
- package/src/x_ite/Components/Rendering/Normal.js +39 -28
- package/src/x_ite/Components/Rendering/PointSet.js +45 -34
- package/src/x_ite/Components/Rendering/TriangleFanSet.js +47 -36
- package/src/x_ite/Components/Rendering/TriangleSet.js +41 -30
- package/src/x_ite/Components/Rendering/TriangleStripSet.js +47 -36
- package/src/x_ite/Components/Rendering/X3DColorNode.js +17 -4
- package/src/x_ite/Components/Rendering/X3DComposedGeometryNode.js +33 -20
- package/src/x_ite/Components/Rendering/X3DCoordinateNode.js +23 -10
- package/src/x_ite/Components/Rendering/X3DGeometricPropertyNode.js +13 -2
- package/src/x_ite/Components/Rendering/X3DGeometryNode.js +96 -80
- package/src/x_ite/Components/Rendering/X3DLineGeometryNode.js +21 -8
- package/src/x_ite/Components/Rendering/X3DNormalNode.js +13 -2
- package/src/x_ite/Components/Rendering/X3DPointGeometryNode.js +20 -7
- package/src/x_ite/Components/Rendering.js +29 -36
- package/src/x_ite/Components/RigidBodyPhysics/BallJoint.js +43 -32
- package/src/x_ite/Components/RigidBodyPhysics/CollidableOffset.js +48 -37
- package/src/x_ite/Components/RigidBodyPhysics/CollidableShape.js +52 -41
- package/src/x_ite/Components/RigidBodyPhysics/CollisionCollection.js +47 -36
- package/src/x_ite/Components/RigidBodyPhysics/CollisionSensor.js +41 -30
- package/src/x_ite/Components/RigidBodyPhysics/CollisionSpace.js +44 -33
- package/src/x_ite/Components/RigidBodyPhysics/Contact.js +38 -29
- package/src/x_ite/Components/RigidBodyPhysics/DoubleAxisHingeJoint.js +60 -49
- package/src/x_ite/Components/RigidBodyPhysics/MotorJoint.js +48 -39
- package/src/x_ite/Components/RigidBodyPhysics/RigidBody.js +69 -58
- package/src/x_ite/Components/RigidBodyPhysics/RigidBodyCollection.js +61 -50
- package/src/x_ite/Components/RigidBodyPhysics/SingleAxisHingeJoint.js +49 -38
- package/src/x_ite/Components/RigidBodyPhysics/SliderJoint.js +47 -36
- package/src/x_ite/Components/RigidBodyPhysics/UniversalJoint.js +36 -27
- package/src/x_ite/Components/RigidBodyPhysics/X3DNBodyCollidableNode.js +24 -11
- package/src/x_ite/Components/RigidBodyPhysics/X3DNBodyCollisionSpaceNode.js +17 -4
- package/src/x_ite/Components/RigidBodyPhysics/X3DRigidJointNode.js +34 -21
- package/src/x_ite/Components/Scripting/Script.js +83 -53
- package/src/x_ite/Components/Scripting/X3DScriptNode.js +17 -4
- package/src/x_ite/Components/Shaders/ComposedShader.js +46 -35
- package/src/x_ite/Components/Shaders/FloatVertexAttribute.js +40 -29
- package/src/x_ite/Components/Shaders/Matrix3VertexAttribute.js +38 -27
- package/src/x_ite/Components/Shaders/Matrix4VertexAttribute.js +38 -27
- package/src/x_ite/Components/Shaders/PackagedShader.js +45 -34
- package/src/x_ite/Components/Shaders/ProgramShader.js +27 -18
- package/src/x_ite/Components/Shaders/ShaderPart.js +47 -36
- package/src/x_ite/Components/Shaders/ShaderProgram.js +42 -31
- package/src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js +51 -38
- package/src/x_ite/Components/Shaders/X3DShaderNode.js +19 -6
- package/src/x_ite/Components/Shaders/X3DVertexAttributeNode.js +17 -4
- package/src/x_ite/Components/Shaders.js +19 -26
- package/src/x_ite/Components/Shape/AcousticProperties.js +28 -19
- package/src/x_ite/Components/Shape/Appearance.js +79 -68
- package/src/x_ite/Components/Shape/FillProperties.js +44 -33
- package/src/x_ite/Components/Shape/LineProperties.js +44 -33
- package/src/x_ite/Components/Shape/Material.js +75 -64
- package/src/x_ite/Components/Shape/PhysicalMaterial.js +65 -54
- package/src/x_ite/Components/Shape/PointProperties.js +43 -32
- package/src/x_ite/Components/Shape/Shape.js +48 -37
- package/src/x_ite/Components/Shape/TwoSidedMaterial.js +60 -49
- package/src/x_ite/Components/Shape/UnlitMaterial.js +44 -33
- package/src/x_ite/Components/Shape/X3DAppearanceChildNode.js +13 -2
- package/src/x_ite/Components/Shape/X3DAppearanceNode.js +17 -4
- package/src/x_ite/Components/Shape/X3DMaterialNode.js +41 -33
- package/src/x_ite/Components/Shape/X3DOneSidedMaterialNode.js +29 -16
- package/src/x_ite/Components/Shape/X3DShapeNode.js +28 -15
- package/src/x_ite/Components/Shape.js +23 -30
- package/src/x_ite/Components/Sound/Analyser.js +46 -37
- package/src/x_ite/Components/Sound/AudioClip.js +61 -50
- package/src/x_ite/Components/Sound/AudioDestination.js +35 -26
- package/src/x_ite/Components/Sound/BiquadFilter.js +45 -36
- package/src/x_ite/Components/Sound/BufferAudioSource.js +61 -50
- package/src/x_ite/Components/Sound/ChannelMerger.js +32 -23
- package/src/x_ite/Components/Sound/ChannelSelector.js +33 -24
- package/src/x_ite/Components/Sound/ChannelSplitter.js +33 -24
- package/src/x_ite/Components/Sound/Convolver.js +43 -34
- package/src/x_ite/Components/Sound/Delay.js +43 -34
- package/src/x_ite/Components/Sound/DynamicsCompressor.js +47 -38
- package/src/x_ite/Components/Sound/Gain.js +41 -32
- package/src/x_ite/Components/Sound/ListenerPointSource.js +39 -30
- package/src/x_ite/Components/Sound/MicrophoneSource.js +35 -26
- package/src/x_ite/Components/Sound/OscillatorSource.js +37 -28
- package/src/x_ite/Components/Sound/PeriodicWave.js +27 -18
- package/src/x_ite/Components/Sound/Sound.js +51 -40
- package/src/x_ite/Components/Sound/SpatialSound.js +42 -33
- package/src/x_ite/Components/Sound/StreamAudioDestination.js +35 -26
- package/src/x_ite/Components/Sound/StreamAudioSource.js +35 -26
- package/src/x_ite/Components/Sound/WaveShaper.js +43 -34
- package/src/x_ite/Components/Sound/X3DSoundChannelNode.js +13 -2
- package/src/x_ite/Components/Sound/X3DSoundDestinationNode.js +13 -2
- package/src/x_ite/Components/Sound/X3DSoundNode.js +13 -2
- package/src/x_ite/Components/Sound/X3DSoundProcessingNode.js +17 -4
- package/src/x_ite/Components/Sound/X3DSoundSourceNode.js +30 -17
- package/src/x_ite/Components/Sound.js +34 -41
- package/src/x_ite/Components/Text/FontStyle.js +37 -26
- package/src/x_ite/Components/Text/Text.js +50 -39
- package/src/x_ite/Components/Text/X3DFontStyleNode.js +32 -18
- package/src/x_ite/Components/TextureProjector/TextureProjector.js +49 -39
- package/src/x_ite/Components/TextureProjector/TextureProjectorParallel.js +58 -48
- package/src/x_ite/Components/TextureProjector/X3DTextureProjectorNode.js +27 -14
- package/src/x_ite/Components/Texturing/ImageTexture.js +50 -39
- package/src/x_ite/Components/Texturing/MovieTexture.js +67 -56
- package/src/x_ite/Components/Texturing/MultiTexture.js +52 -41
- package/src/x_ite/Components/Texturing/MultiTextureCoordinate.js +44 -33
- package/src/x_ite/Components/Texturing/MultiTextureTransform.js +39 -28
- package/src/x_ite/Components/Texturing/PixelTexture.js +42 -31
- package/src/x_ite/Components/Texturing/TextureCoordinate.js +41 -30
- package/src/x_ite/Components/Texturing/TextureCoordinateGenerator.js +41 -30
- package/src/x_ite/Components/Texturing/TextureProperties.js +47 -36
- package/src/x_ite/Components/Texturing/TextureTransform.js +39 -28
- package/src/x_ite/Components/Texturing/X3DSingleTextureCoordinateNode.js +20 -7
- package/src/x_ite/Components/Texturing/X3DSingleTextureNode.js +21 -8
- package/src/x_ite/Components/Texturing/X3DSingleTextureTransformNode.js +20 -7
- package/src/x_ite/Components/Texturing/X3DTexture2DNode.js +26 -13
- package/src/x_ite/Components/Texturing/X3DTextureCoordinateNode.js +13 -2
- package/src/x_ite/Components/Texturing/X3DTextureNode.js +17 -4
- package/src/x_ite/Components/Texturing/X3DTextureTransformNode.js +13 -2
- package/src/x_ite/Components/Texturing.js +25 -32
- package/src/x_ite/Components/Texturing3D/ComposedTexture3D.js +44 -33
- package/src/x_ite/Components/Texturing3D/ImageTexture3D.js +46 -35
- package/src/x_ite/Components/Texturing3D/ImageTextureAtlas.js +54 -43
- package/src/x_ite/Components/Texturing3D/PixelTexture3D.js +40 -29
- package/src/x_ite/Components/Texturing3D/TextureCoordinate3D.js +41 -30
- package/src/x_ite/Components/Texturing3D/TextureCoordinate4D.js +41 -30
- package/src/x_ite/Components/Texturing3D/TextureTransform3D.js +39 -28
- package/src/x_ite/Components/Texturing3D/TextureTransformMatrix3D.js +36 -25
- package/src/x_ite/Components/Texturing3D/X3DTexture3DNode.js +26 -13
- package/src/x_ite/Components/Time/TimeSensor.js +55 -44
- package/src/x_ite/Components/Time/X3DTimeDependentNode.js +38 -25
- package/src/x_ite/Components/Time.js +10 -17
- package/src/x_ite/Components/VolumeRendering/BlendedVolumeStyle.js +51 -41
- package/src/x_ite/Components/VolumeRendering/BoundaryEnhancementVolumeStyle.js +39 -28
- package/src/x_ite/Components/VolumeRendering/CartoonVolumeStyle.js +42 -31
- package/src/x_ite/Components/VolumeRendering/ComposedVolumeStyle.js +41 -30
- package/src/x_ite/Components/VolumeRendering/EdgeEnhancementVolumeStyle.js +41 -30
- package/src/x_ite/Components/VolumeRendering/IsoSurfaceVolumeData.js +50 -39
- package/src/x_ite/Components/VolumeRendering/OpacityMapVolumeStyle.js +39 -28
- package/src/x_ite/Components/VolumeRendering/ProjectionVolumeStyle.js +38 -27
- package/src/x_ite/Components/VolumeRendering/SegmentedVolumeData.js +49 -38
- package/src/x_ite/Components/VolumeRendering/ShadedVolumeStyle.js +44 -33
- package/src/x_ite/Components/VolumeRendering/SilhouetteEnhancementVolumeStyle.js +42 -31
- package/src/x_ite/Components/VolumeRendering/ToneMappedVolumeStyle.js +41 -30
- package/src/x_ite/Components/VolumeRendering/VolumeData.js +45 -34
- package/src/x_ite/Components/VolumeRendering/X3DComposableVolumeRenderStyleNode.js +13 -2
- package/src/x_ite/Components/VolumeRendering/X3DVolumeDataNode.js +25 -12
- package/src/x_ite/Components/VolumeRendering/X3DVolumeRenderStyleNode.js +22 -9
- package/src/x_ite/Components/X_ITE/BlendMode.js +48 -37
- package/src/x_ite/Components.js +38 -14
- package/src/x_ite/Configuration/AbstractNodes.js +50 -0
- package/src/x_ite/{Fallback.js → Configuration/AbstractNodesArray.js} +22 -29
- package/src/x_ite/Configuration/ComponentInfo.js +14 -10
- package/src/x_ite/Configuration/ComponentInfoArray.js +14 -10
- package/src/x_ite/Configuration/ConcreteNodes.js +50 -0
- package/src/x_ite/Configuration/{SupportedNodes.js → ConcreteNodesArray.js} +26 -40
- package/src/x_ite/Configuration/ProfileInfo.js +13 -9
- package/src/x_ite/Configuration/ProfileInfoArray.js +14 -13
- package/src/x_ite/Configuration/SupportedComponents.js +40 -78
- package/src/x_ite/Configuration/SupportedProfiles.js +16 -16
- package/src/x_ite/Configuration/UnitInfo.js +14 -10
- package/src/x_ite/Configuration/UnitInfoArray.js +10 -21
- package/src/x_ite/Execution/BindableList.js +14 -10
- package/src/x_ite/Execution/BindableStack.js +14 -10
- package/src/x_ite/Execution/ExportedNodesArray.js +11 -9
- package/src/x_ite/Execution/ImportedNodesArray.js +11 -9
- package/src/x_ite/Execution/NamedNodesArray.js +11 -22
- package/src/x_ite/Execution/X3DExecutionContext.js +181 -152
- package/src/x_ite/Execution/X3DExportedNode.js +18 -10
- package/src/x_ite/Execution/X3DImportedNode.js +35 -22
- package/src/x_ite/Execution/X3DScene.js +93 -64
- package/src/x_ite/Execution/X3DWorld.js +21 -17
- package/src/x_ite/Fields/ArrayFields.js +87 -153
- package/src/x_ite/Fields/SFBool.js +21 -25
- package/src/x_ite/Fields/SFColor.js +43 -39
- package/src/x_ite/Fields/SFColorRGBA.js +39 -35
- package/src/x_ite/Fields/SFDouble.js +20 -21
- package/src/x_ite/Fields/SFFloat.js +20 -21
- package/src/x_ite/Fields/SFImage.js +50 -48
- package/src/x_ite/Fields/SFInt32.js +20 -21
- package/src/x_ite/Fields/SFMatrix3.js +23 -16
- package/src/x_ite/Fields/SFMatrix4.js +24 -17
- package/src/x_ite/Fields/SFMatrixPrototypeTemplate.js +31 -31
- package/src/x_ite/Fields/SFNode.js +57 -88
- package/src/x_ite/Fields/SFNodeCache.js +7 -11
- package/src/x_ite/Fields/SFRotation.js +73 -62
- package/src/x_ite/Fields/SFString.js +35 -36
- package/src/x_ite/Fields/SFTime.js +20 -21
- package/src/x_ite/Fields/SFVec2.js +17 -14
- package/src/x_ite/Fields/SFVec3.js +20 -17
- package/src/x_ite/Fields/SFVec4.js +21 -18
- package/src/x_ite/Fields/SFVecPrototypeTemplate.js +36 -36
- package/src/x_ite/Fields.js +6 -13
- package/src/x_ite/InputOutput/FileLoader.js +36 -40
- package/src/x_ite/InputOutput/Generator.js +50 -51
- package/src/x_ite/Parser/GLB2Parser.js +12 -13
- package/src/x_ite/Parser/GLTF2Parser.js +111 -112
- package/src/x_ite/Parser/GoldenGate.js +11 -13
- package/src/x_ite/Parser/HTMLSupport.js +15 -5
- package/src/x_ite/Parser/JSONParser.js +21 -22
- package/src/x_ite/Parser/OBJParser.js +56 -57
- package/src/x_ite/Parser/STLAParser.js +22 -23
- package/src/x_ite/Parser/STLBParser.js +12 -13
- package/src/x_ite/Parser/SVGParser.js +85 -86
- package/src/x_ite/Parser/VRMLParser.js +495 -878
- package/src/x_ite/Parser/X3DOptimizer.js +7 -7
- package/src/x_ite/Parser/X3DParser.js +17 -17
- package/src/x_ite/Parser/XMLParser.js +215 -269
- package/src/x_ite/Prototype/ExternProtoDeclarationArray.js +11 -9
- package/src/x_ite/Prototype/ProtoDeclarationArray.js +11 -9
- package/src/x_ite/Prototype/X3DExternProtoDeclaration.js +35 -27
- package/src/x_ite/Prototype/X3DProtoDeclaration.js +28 -20
- package/src/x_ite/Prototype/X3DProtoDeclarationNode.js +18 -10
- package/src/x_ite/Rendering/DependentRenderer.js +11 -12
- package/src/x_ite/Rendering/MultiSampleFrameBuffer.js +9 -10
- package/src/x_ite/Rendering/PointingBuffer.js +6 -7
- package/src/x_ite/Rendering/TextureBuffer.js +11 -12
- package/src/x_ite/Rendering/VertexArray.js +5 -5
- package/src/x_ite/Rendering/X3DRenderObject.js +51 -52
- package/src/x_ite/Routing/RouteArray.js +11 -9
- package/src/x_ite/Routing/X3DRoute.js +35 -19
- package/src/x_ite/Routing/X3DRoutingContext.js +8 -9
- package/src/x_ite/X3D.js +27 -26
- package/src/x_ite/X3DCanvasElement.js +18 -7
- package/src/x_ite.css +2 -1
- package/webpack.config.js +2 -2
- /package/src/x_ite/{DEBUG.js → DEVELOPMENT.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* X_ITE v8.
|
|
1
|
+
/* X_ITE v8.8.0 */(() => { // webpackBootstrap
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ // The require scope
|
|
4
4
|
/******/ var __webpack_require__ = {};
|
|
@@ -39,25 +39,25 @@ var __webpack_exports__ = {};
|
|
|
39
39
|
// UNUSED EXPORTS: default
|
|
40
40
|
|
|
41
41
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components\")"
|
|
42
|
-
const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
42
|
+
const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components");
|
|
43
43
|
var Components_default = /*#__PURE__*/__webpack_require__.n(Components_namespaceObject);
|
|
44
44
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Fields\")"
|
|
45
|
-
const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
45
|
+
const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Fields");
|
|
46
46
|
var Fields_default = /*#__PURE__*/__webpack_require__.n(Fields_namespaceObject);
|
|
47
47
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DFieldDefinition\")"
|
|
48
|
-
const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
48
|
+
const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Base/X3DFieldDefinition");
|
|
49
49
|
var X3DFieldDefinition_default = /*#__PURE__*/__webpack_require__.n(X3DFieldDefinition_namespaceObject);
|
|
50
50
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/FieldDefinitionArray\")"
|
|
51
|
-
const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
51
|
+
const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Base/FieldDefinitionArray");
|
|
52
52
|
var FieldDefinitionArray_default = /*#__PURE__*/__webpack_require__.n(FieldDefinitionArray_namespaceObject);
|
|
53
53
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DChildNode\")"
|
|
54
|
-
const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
54
|
+
const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Core/X3DChildNode");
|
|
55
55
|
var X3DChildNode_default = /*#__PURE__*/__webpack_require__.n(X3DChildNode_namespaceObject);
|
|
56
56
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DConstants\")"
|
|
57
|
-
const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
57
|
+
const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Base/X3DConstants");
|
|
58
58
|
var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
|
|
59
59
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Namespace\")"
|
|
60
|
-
const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
60
|
+
const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Namespace");
|
|
61
61
|
var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
|
|
62
62
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/DISEntityManager.js
|
|
63
63
|
/*******************************************************************************
|
|
@@ -123,34 +123,43 @@ function DISEntityManager (executionContext)
|
|
|
123
123
|
this .addAlias ("mapping", this ._children);
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
|
|
126
|
+
Object .setPrototypeOf (DISEntityManager .prototype, (X3DChildNode_default()).prototype);
|
|
127
|
+
|
|
128
|
+
Object .defineProperties (DISEntityManager,
|
|
127
129
|
{
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "port", new (Fields_default()).SFInt32 ()),
|
|
135
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "siteID", new (Fields_default()).SFInt32 ()),
|
|
136
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "addedEntities", new (Fields_default()).MFNode ()),
|
|
137
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "removedEntities", new (Fields_default()).MFNode ()),
|
|
138
|
-
]),
|
|
139
|
-
getTypeName: function ()
|
|
130
|
+
typeName:
|
|
131
|
+
{
|
|
132
|
+
value: "DISEntityManager",
|
|
133
|
+
enumerable: true,
|
|
134
|
+
},
|
|
135
|
+
componentName:
|
|
140
136
|
{
|
|
141
|
-
|
|
137
|
+
value: "DIS",
|
|
138
|
+
enumerable: true,
|
|
142
139
|
},
|
|
143
|
-
|
|
140
|
+
containerField:
|
|
144
141
|
{
|
|
145
|
-
|
|
142
|
+
value: "children",
|
|
143
|
+
enumerable: true,
|
|
146
144
|
},
|
|
147
|
-
|
|
145
|
+
specificationRange:
|
|
148
146
|
{
|
|
149
|
-
|
|
147
|
+
value: Object .freeze (["3.0", "Infinity"]),
|
|
148
|
+
enumerable: true,
|
|
150
149
|
},
|
|
151
|
-
|
|
150
|
+
fieldDefinitions:
|
|
152
151
|
{
|
|
153
|
-
|
|
152
|
+
value: new (FieldDefinitionArray_default()) ([
|
|
153
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
|
|
154
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "address", new (Fields_default()).SFString ("localhost")),
|
|
155
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "applicationID", new (Fields_default()).SFInt32 (1)),
|
|
156
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "children", new (Fields_default()).MFNode ()),
|
|
157
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "port", new (Fields_default()).SFInt32 ()),
|
|
158
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "siteID", new (Fields_default()).SFInt32 ()),
|
|
159
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "addedEntities", new (Fields_default()).MFNode ()),
|
|
160
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "removedEntities", new (Fields_default()).MFNode ()),
|
|
161
|
+
]),
|
|
162
|
+
enumerable: true,
|
|
154
163
|
},
|
|
155
164
|
});
|
|
156
165
|
|
|
@@ -160,10 +169,10 @@ const __default__ = DISEntityManager;
|
|
|
160
169
|
Namespace_default().set ("x_ite/Components/DIS/DISEntityManager", __default__);
|
|
161
170
|
/* harmony default export */ const DIS_DISEntityManager = (__default__);
|
|
162
171
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DInfoNode\")"
|
|
163
|
-
const X3DInfoNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
172
|
+
const X3DInfoNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Core/X3DInfoNode");
|
|
164
173
|
var X3DInfoNode_default = /*#__PURE__*/__webpack_require__.n(X3DInfoNode_namespaceObject);
|
|
165
174
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/X3DUrlObject\")"
|
|
166
|
-
const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
175
|
+
const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Networking/X3DUrlObject");
|
|
167
176
|
var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_namespaceObject);
|
|
168
177
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/DISEntityTypeMapping.js
|
|
169
178
|
/*******************************************************************************
|
|
@@ -228,49 +237,60 @@ function DISEntityTypeMapping (executionContext)
|
|
|
228
237
|
this .addType ((X3DConstants_default()).DISEntityTypeMapping);
|
|
229
238
|
}
|
|
230
239
|
|
|
231
|
-
|
|
240
|
+
Object .assign (Object .setPrototypeOf (DISEntityTypeMapping .prototype, (X3DInfoNode_default()).prototype),
|
|
232
241
|
(X3DUrlObject_default()).prototype,
|
|
233
242
|
{
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefreshTimeLimit", new (Fields_default()).SFTime (3600)),
|
|
241
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "category", new (Fields_default()).SFInt32 ()),
|
|
242
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "country", new (Fields_default()).SFInt32 ()),
|
|
243
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "domain", new (Fields_default()).SFInt32 ()),
|
|
244
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "extra", new (Fields_default()).SFInt32 ()),
|
|
245
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "kind", new (Fields_default()).SFInt32 ()),
|
|
246
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "specific", new (Fields_default()).SFInt32 ()),
|
|
247
|
-
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "subcategory", new (Fields_default()).SFInt32 ()),
|
|
248
|
-
]),
|
|
249
|
-
getTypeName: function ()
|
|
243
|
+
initialize ()
|
|
244
|
+
{
|
|
245
|
+
X3DInfoNode_default().prototype .initialize .call (this);
|
|
246
|
+
X3DUrlObject_default().prototype .initialize .call (this);
|
|
247
|
+
},
|
|
248
|
+
dispose ()
|
|
250
249
|
{
|
|
251
|
-
|
|
250
|
+
X3DUrlObject_default().prototype .dispose .call (this);
|
|
251
|
+
X3DInfoNode_default().prototype .dispose .call (this);
|
|
252
252
|
},
|
|
253
|
-
|
|
253
|
+
});
|
|
254
|
+
|
|
255
|
+
Object .defineProperties (DISEntityTypeMapping,
|
|
256
|
+
{
|
|
257
|
+
typeName:
|
|
254
258
|
{
|
|
255
|
-
|
|
259
|
+
value: "DISEntityTypeMapping",
|
|
260
|
+
enumerable: true,
|
|
256
261
|
},
|
|
257
|
-
|
|
262
|
+
componentName:
|
|
258
263
|
{
|
|
259
|
-
|
|
264
|
+
value: "DIS",
|
|
265
|
+
enumerable: true,
|
|
260
266
|
},
|
|
261
|
-
|
|
267
|
+
containerField:
|
|
262
268
|
{
|
|
263
|
-
|
|
269
|
+
value: "mapping",
|
|
270
|
+
enumerable: true,
|
|
264
271
|
},
|
|
265
|
-
|
|
272
|
+
specificationRange:
|
|
266
273
|
{
|
|
267
|
-
|
|
268
|
-
|
|
274
|
+
value: Object .freeze (["3.0", "Infinity"]),
|
|
275
|
+
enumerable: true,
|
|
269
276
|
},
|
|
270
|
-
|
|
277
|
+
fieldDefinitions:
|
|
271
278
|
{
|
|
272
|
-
|
|
273
|
-
|
|
279
|
+
value: new (FieldDefinitionArray_default()) ([
|
|
280
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
|
|
281
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "load", new (Fields_default()).SFBool (true)),
|
|
282
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "url", new (Fields_default()).MFString ()),
|
|
283
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefresh", new (Fields_default()).SFTime ()),
|
|
284
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "autoRefreshTimeLimit", new (Fields_default()).SFTime (3600)),
|
|
285
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "category", new (Fields_default()).SFInt32 ()),
|
|
286
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "country", new (Fields_default()).SFInt32 ()),
|
|
287
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "domain", new (Fields_default()).SFInt32 ()),
|
|
288
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "extra", new (Fields_default()).SFInt32 ()),
|
|
289
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "kind", new (Fields_default()).SFInt32 ()),
|
|
290
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "specific", new (Fields_default()).SFInt32 ()),
|
|
291
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "subcategory", new (Fields_default()).SFInt32 ()),
|
|
292
|
+
]),
|
|
293
|
+
enumerable: true,
|
|
274
294
|
},
|
|
275
295
|
});
|
|
276
296
|
|
|
@@ -280,10 +300,10 @@ const DISEntityTypeMapping_default_ = DISEntityTypeMapping;
|
|
|
280
300
|
Namespace_default().set ("x_ite/Components/DIS/DISEntityTypeMapping", DISEntityTypeMapping_default_);
|
|
281
301
|
/* harmony default export */ const DIS_DISEntityTypeMapping = (DISEntityTypeMapping_default_);
|
|
282
302
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DGroupingNode\")"
|
|
283
|
-
const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
303
|
+
const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
|
|
284
304
|
var X3DGroupingNode_default = /*#__PURE__*/__webpack_require__.n(X3DGroupingNode_namespaceObject);
|
|
285
305
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DSensorNode\")"
|
|
286
|
-
const X3DSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
306
|
+
const X3DSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Core/X3DSensorNode");
|
|
287
307
|
var X3DSensorNode_default = /*#__PURE__*/__webpack_require__.n(X3DSensorNode_namespaceObject);
|
|
288
308
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/EspduTransform.js
|
|
289
309
|
/*******************************************************************************
|
|
@@ -348,123 +368,134 @@ function EspduTransform (executionContext)
|
|
|
348
368
|
this .addType ((X3DConstants_default()).EspduTransform);
|
|
349
369
|
}
|
|
350
370
|
|
|
351
|
-
|
|
371
|
+
Object .assign (Object .setPrototypeOf (EspduTransform .prototype, (X3DGroupingNode_default()).prototype),
|
|
352
372
|
(X3DSensorNode_default()).prototype,
|
|
353
373
|
{
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
374
|
+
initialize ()
|
|
375
|
+
{
|
|
376
|
+
X3DGroupingNode_default().prototype .initialize .call (this);
|
|
377
|
+
X3DSensorNode_default().prototype .initialize .call (this);
|
|
378
|
+
},
|
|
379
|
+
});
|
|
380
|
+
|
|
381
|
+
Object .defineProperties (EspduTransform,
|
|
382
|
+
{
|
|
383
|
+
typeName:
|
|
384
|
+
{
|
|
385
|
+
value: "EspduTransform",
|
|
386
|
+
enumerable: true,
|
|
387
|
+
},
|
|
388
|
+
componentName:
|
|
389
|
+
{
|
|
390
|
+
value: "DIS",
|
|
391
|
+
enumerable: true,
|
|
392
|
+
},
|
|
393
|
+
containerField:
|
|
394
|
+
{
|
|
395
|
+
value: "children",
|
|
396
|
+
enumerable: true,
|
|
397
|
+
},
|
|
398
|
+
specificationRange:
|
|
399
|
+
{
|
|
400
|
+
value: Object .freeze (["3.0", "Infinity"]),
|
|
401
|
+
enumerable: true,
|
|
402
|
+
},
|
|
403
|
+
fieldDefinitions:
|
|
404
|
+
{
|
|
405
|
+
value: new (FieldDefinitionArray_default()) ([
|
|
406
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
|
|
407
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "enabled", new (Fields_default()).SFBool (true)),
|
|
408
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "visible", new (Fields_default()).SFBool (true)),
|
|
409
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "bboxDisplay", new (Fields_default()).SFBool ()),
|
|
410
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxSize", new (Fields_default()).SFVec3f (-1, -1, -1)),
|
|
411
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxCenter", new (Fields_default()).SFVec3f ()),
|
|
412
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "addChildren", new (Fields_default()).MFNode ()),
|
|
413
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "removeChildren", new (Fields_default()).MFNode ()),
|
|
414
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "children", new (Fields_default()).MFNode ()),
|
|
415
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isActive", new (Fields_default()).SFBool ()),
|
|
416
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue0", new (Fields_default()).SFFloat ()),
|
|
417
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue1", new (Fields_default()).SFFloat ()),
|
|
418
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue2", new (Fields_default()).SFFloat ()),
|
|
419
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue3", new (Fields_default()).SFFloat ()),
|
|
420
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue4", new (Fields_default()).SFFloat ()),
|
|
421
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue5", new (Fields_default()).SFFloat ()),
|
|
422
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue6", new (Fields_default()).SFFloat ()),
|
|
423
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOnly, "set_articulationParameterValue7", new (Fields_default()).SFFloat ()),
|
|
424
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "address", new (Fields_default()).SFString ("localhost")),
|
|
425
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "applicationID", new (Fields_default()).SFInt32 (1)),
|
|
426
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "articulationParameterCount", new (Fields_default()).SFInt32 ()),
|
|
427
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "articulationParameterDesignatorArray", new (Fields_default()).MFInt32 ()),
|
|
428
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "articulationParameterChangeIndicatorArray", new (Fields_default()).MFInt32 ()),
|
|
429
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "articulationParameterIdPartAttachedToArray", new (Fields_default()).MFInt32 ()),
|
|
430
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "articulationParameterTypeArray", new (Fields_default()).MFInt32 ()),
|
|
431
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "articulationParameterArray", new (Fields_default()).MFFloat ()),
|
|
432
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "center", new (Fields_default()).SFVec3f ()),
|
|
433
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "collisionType", new (Fields_default()).SFInt32 ()),
|
|
434
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "deadReckoning", new (Fields_default()).SFInt32 ()),
|
|
435
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "detonationLocation", new (Fields_default()).SFVec3f ()),
|
|
436
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "detonationRelativeLocation", new (Fields_default()).SFVec3f ()),
|
|
437
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "detonationResult", new (Fields_default()).SFInt32 ()),
|
|
438
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityCategory", new (Fields_default()).SFInt32 ()),
|
|
439
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityCountry", new (Fields_default()).SFInt32 ()),
|
|
440
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityDomain", new (Fields_default()).SFInt32 ()),
|
|
441
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityExtra", new (Fields_default()).SFInt32 ()),
|
|
442
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityID", new (Fields_default()).SFInt32 ()),
|
|
443
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityKind", new (Fields_default()).SFInt32 ()),
|
|
444
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entitySpecific", new (Fields_default()).SFInt32 ()),
|
|
445
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entitySubCategory", new (Fields_default()).SFInt32 ()),
|
|
446
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "eventApplicationID", new (Fields_default()).SFInt32 (1)),
|
|
447
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "eventEntityID", new (Fields_default()).SFInt32 ()),
|
|
448
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "eventNumber", new (Fields_default()).SFInt32 ()),
|
|
449
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "eventSiteID", new (Fields_default()).SFInt32 ()),
|
|
450
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "fired1", new (Fields_default()).SFBool ()),
|
|
451
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "fired2", new (Fields_default()).SFBool ()),
|
|
452
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "fireMissionIndex", new (Fields_default()).SFInt32 ()),
|
|
453
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "firingRange", new (Fields_default()).SFFloat ()),
|
|
454
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "firingRate", new (Fields_default()).SFInt32 ()),
|
|
455
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "forceID", new (Fields_default()).SFInt32 ()),
|
|
456
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "fuse", new (Fields_default()).SFInt32 ()),
|
|
457
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "linearVelocity", new (Fields_default()).SFVec3f ()),
|
|
458
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "linearAcceleration", new (Fields_default()).SFVec3f ()),
|
|
459
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "marking", new (Fields_default()).SFString ()),
|
|
460
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayHost", new (Fields_default()).SFString ()),
|
|
461
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayPort", new (Fields_default()).SFInt32 ()),
|
|
462
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "munitionApplicationID", new (Fields_default()).SFInt32 (1)),
|
|
463
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "munitionEndPoint", new (Fields_default()).SFVec3f ()),
|
|
464
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "munitionEntityID", new (Fields_default()).SFInt32 ()),
|
|
465
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "munitionQuantity", new (Fields_default()).SFInt32 ()),
|
|
466
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "munitionSiteID", new (Fields_default()).SFInt32 ()),
|
|
467
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "munitionStartPoint", new (Fields_default()).SFVec3f ()),
|
|
468
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "networkMode", new (Fields_default()).SFString ("standAlone")),
|
|
469
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "port", new (Fields_default()).SFInt32 ()),
|
|
470
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "readInterval", new (Fields_default()).SFTime (0.1)),
|
|
471
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "rotation", new (Fields_default()).SFRotation ()),
|
|
472
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "scale", new (Fields_default()).SFVec3f (1, 1, 1)),
|
|
473
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "scaleOrientation", new (Fields_default()).SFRotation ()),
|
|
474
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "siteID", new (Fields_default()).SFInt32 ()),
|
|
475
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "translation", new (Fields_default()).SFVec3f ()),
|
|
476
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "warhead", new (Fields_default()).SFInt32 ()),
|
|
477
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "writeInterval", new (Fields_default()).SFTime (1)),
|
|
478
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue0_changed", new (Fields_default()).SFFloat ()),
|
|
479
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue1_changed", new (Fields_default()).SFFloat ()),
|
|
480
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue2_changed", new (Fields_default()).SFFloat ()),
|
|
481
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue3_changed", new (Fields_default()).SFFloat ()),
|
|
482
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue4_changed", new (Fields_default()).SFFloat ()),
|
|
483
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue5_changed", new (Fields_default()).SFFloat ()),
|
|
484
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue6_changed", new (Fields_default()).SFFloat ()),
|
|
485
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "articulationParameterValue7_changed", new (Fields_default()).SFFloat ()),
|
|
486
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "collideTime", new (Fields_default()).SFTime ()),
|
|
487
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "detonateTime", new (Fields_default()).SFTime ()),
|
|
488
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "firedTime", new (Fields_default()).SFTime ()),
|
|
489
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isCollided", new (Fields_default()).SFBool ()),
|
|
490
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isDetonated", new (Fields_default()).SFBool ()),
|
|
491
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkReader", new (Fields_default()).SFBool ()),
|
|
492
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkWriter", new (Fields_default()).SFBool ()),
|
|
493
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isRtpHeaderHeard", new (Fields_default()).SFBool ()),
|
|
494
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isStandAlone", new (Fields_default()).SFBool ()),
|
|
495
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "timestamp", new (Fields_default()).SFTime ()),
|
|
496
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "rtpHeaderExpected", new (Fields_default()).SFBool ()),
|
|
497
|
+
]),
|
|
498
|
+
enumerable: true,
|
|
468
499
|
},
|
|
469
500
|
});
|
|
470
501
|
|
|
@@ -474,7 +505,7 @@ const EspduTransform_default_ = EspduTransform;
|
|
|
474
505
|
Namespace_default().set ("x_ite/Components/DIS/EspduTransform", EspduTransform_default_);
|
|
475
506
|
/* harmony default export */ const DIS_EspduTransform = (EspduTransform_default_);
|
|
476
507
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DBoundedObject\")"
|
|
477
|
-
const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
508
|
+
const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.8.0")] .require ("x_ite/Components/Grouping/X3DBoundedObject");
|
|
478
509
|
var X3DBoundedObject_default = /*#__PURE__*/__webpack_require__.n(X3DBoundedObject_namespaceObject);
|
|
479
510
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/ReceiverPdu.js
|
|
480
511
|
/*******************************************************************************
|
|
@@ -539,68 +570,79 @@ function ReceiverPdu (executionContext)
|
|
|
539
570
|
this .addType ((X3DConstants_default()).ReceiverPdu);
|
|
540
571
|
}
|
|
541
572
|
|
|
542
|
-
|
|
573
|
+
Object .assign (Object .setPrototypeOf (ReceiverPdu .prototype, (X3DSensorNode_default()).prototype),
|
|
543
574
|
(X3DBoundedObject_default()).prototype,
|
|
544
575
|
{
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
{
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
576
|
+
initialize ()
|
|
577
|
+
{
|
|
578
|
+
X3DSensorNode_default().prototype .initialize .call (this);
|
|
579
|
+
X3DBoundedObject_default().prototype .initialize .call (this);
|
|
580
|
+
},
|
|
581
|
+
dispose ()
|
|
582
|
+
{
|
|
583
|
+
X3DBoundedObject_default().prototype .dispose .call (this);
|
|
584
|
+
X3DSensorNode_default().prototype .dispose .call (this);
|
|
585
|
+
},
|
|
586
|
+
});
|
|
587
|
+
|
|
588
|
+
Object .defineProperties (ReceiverPdu,
|
|
589
|
+
{
|
|
590
|
+
typeName:
|
|
591
|
+
{
|
|
592
|
+
value: "ReceiverPdu",
|
|
593
|
+
enumerable: true,
|
|
594
|
+
},
|
|
595
|
+
componentName:
|
|
596
|
+
{
|
|
597
|
+
value: "DIS",
|
|
598
|
+
enumerable: true,
|
|
599
|
+
},
|
|
600
|
+
containerField:
|
|
601
|
+
{
|
|
602
|
+
value: "children",
|
|
603
|
+
enumerable: true,
|
|
604
|
+
},
|
|
605
|
+
specificationRange:
|
|
606
|
+
{
|
|
607
|
+
value: Object .freeze (["3.0", "Infinity"]),
|
|
608
|
+
enumerable: true,
|
|
609
|
+
},
|
|
610
|
+
fieldDefinitions:
|
|
611
|
+
{
|
|
612
|
+
value: new (FieldDefinitionArray_default()) ([
|
|
613
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
|
|
614
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "visible", new (Fields_default()).SFBool (true)),
|
|
615
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "bboxDisplay", new (Fields_default()).SFBool ()),
|
|
616
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxSize", new (Fields_default()).SFVec3f (-1, -1, -1)),
|
|
617
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxCenter", new (Fields_default()).SFVec3f ()),
|
|
618
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "enabled", new (Fields_default()).SFBool (true)),
|
|
619
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isActive", new (Fields_default()).SFBool ()),
|
|
620
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "address", new (Fields_default()).SFString ("localhost")),
|
|
621
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "applicationID", new (Fields_default()).SFInt32 (1)),
|
|
622
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityID", new (Fields_default()).SFInt32 ()),
|
|
623
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayHost", new (Fields_default()).SFString ()),
|
|
624
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayPort", new (Fields_default()).SFInt32 ()),
|
|
625
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "networkMode", new (Fields_default()).SFString ("standAlone")),
|
|
626
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "port", new (Fields_default()).SFInt32 ()),
|
|
627
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioID", new (Fields_default()).SFInt32 ()),
|
|
628
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "readInterval", new (Fields_default()).SFFloat (0.1)),
|
|
629
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "receivedPower", new (Fields_default()).SFFloat ()),
|
|
630
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "receiverState", new (Fields_default()).SFInt32 ()),
|
|
631
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "rtpHeaderExpected", new (Fields_default()).SFBool ()),
|
|
632
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "siteID", new (Fields_default()).SFInt32 ()),
|
|
633
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "transmitterApplicationID", new (Fields_default()).SFInt32 (1)),
|
|
634
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "transmitterEntityID", new (Fields_default()).SFInt32 ()),
|
|
635
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "transmitterRadioID", new (Fields_default()).SFInt32 ()),
|
|
636
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "transmitterSiteID", new (Fields_default()).SFInt32 ()),
|
|
637
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "whichGeometry", new (Fields_default()).SFInt32 (1)),
|
|
638
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "writeInterval", new (Fields_default()).SFFloat (1)),
|
|
639
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkReader", new (Fields_default()).SFBool ()),
|
|
640
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkWriter", new (Fields_default()).SFBool ()),
|
|
641
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isRtpHeaderHeard", new (Fields_default()).SFBool ()),
|
|
642
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isStandAlone", new (Fields_default()).SFBool ()),
|
|
643
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "timestamp", new (Fields_default()).SFTime ()),
|
|
644
|
+
]),
|
|
645
|
+
enumerable: true,
|
|
604
646
|
},
|
|
605
647
|
});
|
|
606
648
|
|
|
@@ -672,68 +714,79 @@ function SignalPdu (executionContext)
|
|
|
672
714
|
this .addType ((X3DConstants_default()).SignalPdu);
|
|
673
715
|
}
|
|
674
716
|
|
|
675
|
-
|
|
717
|
+
Object .assign (Object .setPrototypeOf (SignalPdu .prototype, (X3DSensorNode_default()).prototype),
|
|
676
718
|
(X3DBoundedObject_default()).prototype,
|
|
677
719
|
{
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
{
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
720
|
+
initialize ()
|
|
721
|
+
{
|
|
722
|
+
X3DSensorNode_default().prototype .initialize .call (this);
|
|
723
|
+
X3DBoundedObject_default().prototype .initialize .call (this);
|
|
724
|
+
},
|
|
725
|
+
dispose ()
|
|
726
|
+
{
|
|
727
|
+
X3DBoundedObject_default().prototype .dispose .call (this);
|
|
728
|
+
X3DSensorNode_default().prototype .dispose .call (this);
|
|
729
|
+
},
|
|
730
|
+
});
|
|
731
|
+
|
|
732
|
+
Object .defineProperties (SignalPdu,
|
|
733
|
+
{
|
|
734
|
+
typeName:
|
|
735
|
+
{
|
|
736
|
+
value: "SignalPdu",
|
|
737
|
+
enumerable: true,
|
|
738
|
+
},
|
|
739
|
+
componentName:
|
|
740
|
+
{
|
|
741
|
+
value: "DIS",
|
|
742
|
+
enumerable: true,
|
|
743
|
+
},
|
|
744
|
+
containerField:
|
|
745
|
+
{
|
|
746
|
+
value: "children",
|
|
747
|
+
enumerable: true,
|
|
748
|
+
},
|
|
749
|
+
specificationRange:
|
|
750
|
+
{
|
|
751
|
+
value: Object .freeze (["3.0", "Infinity"]),
|
|
752
|
+
enumerable: true,
|
|
753
|
+
},
|
|
754
|
+
fieldDefinitions:
|
|
755
|
+
{
|
|
756
|
+
value: new (FieldDefinitionArray_default()) ([
|
|
757
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
|
|
758
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "visible", new (Fields_default()).SFBool (true)),
|
|
759
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "bboxDisplay", new (Fields_default()).SFBool ()),
|
|
760
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxSize", new (Fields_default()).SFVec3f (-1, -1, -1)),
|
|
761
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxCenter", new (Fields_default()).SFVec3f ()),
|
|
762
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "enabled", new (Fields_default()).SFBool (true)),
|
|
763
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isActive", new (Fields_default()).SFBool ()),
|
|
764
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "address", new (Fields_default()).SFString ("localhost")),
|
|
765
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "applicationID", new (Fields_default()).SFInt32 (1)),
|
|
766
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "data", new (Fields_default()).MFInt32 ()),
|
|
767
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "dataLength", new (Fields_default()).SFInt32 ()),
|
|
768
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "encodingScheme", new (Fields_default()).SFInt32 ()),
|
|
769
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityID", new (Fields_default()).SFInt32 ()),
|
|
770
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayHost", new (Fields_default()).SFString ()),
|
|
771
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayPort", new (Fields_default()).SFInt32 ()),
|
|
772
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "networkMode", new (Fields_default()).SFString ("standAlone")),
|
|
773
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "port", new (Fields_default()).SFInt32 ()),
|
|
774
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioID", new (Fields_default()).SFInt32 ()),
|
|
775
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "readInterval", new (Fields_default()).SFFloat (0.1)),
|
|
776
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "rtpHeaderExpected", new (Fields_default()).SFBool ()),
|
|
777
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "sampleRate", new (Fields_default()).SFInt32 ()),
|
|
778
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "samples", new (Fields_default()).SFInt32 ()),
|
|
779
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "siteID", new (Fields_default()).SFInt32 ()),
|
|
780
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "tdlType", new (Fields_default()).SFInt32 ()),
|
|
781
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "whichGeometry", new (Fields_default()).SFInt32 (1)),
|
|
782
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "writeInterval", new (Fields_default()).SFFloat (1)),
|
|
783
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkReader", new (Fields_default()).SFBool ()),
|
|
784
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkWriter", new (Fields_default()).SFBool ()),
|
|
785
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isRtpHeaderHeard", new (Fields_default()).SFBool ()),
|
|
786
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isStandAlone", new (Fields_default()).SFBool ()),
|
|
787
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "timestamp", new (Fields_default()).SFTime ()),
|
|
788
|
+
]),
|
|
789
|
+
enumerable: true,
|
|
737
790
|
},
|
|
738
791
|
});
|
|
739
792
|
|
|
@@ -805,84 +858,95 @@ function TransmitterPdu (executionContext)
|
|
|
805
858
|
this .addType ((X3DConstants_default()).TransmitterPdu);
|
|
806
859
|
}
|
|
807
860
|
|
|
808
|
-
|
|
861
|
+
Object .assign (Object .setPrototypeOf (TransmitterPdu .prototype, (X3DSensorNode_default()).prototype),
|
|
809
862
|
(X3DBoundedObject_default()).prototype,
|
|
810
863
|
{
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
864
|
+
initialize ()
|
|
865
|
+
{
|
|
866
|
+
X3DSensorNode_default().prototype .initialize .call (this);
|
|
867
|
+
X3DBoundedObject_default().prototype .initialize .call (this);
|
|
868
|
+
},
|
|
869
|
+
dispose ()
|
|
870
|
+
{
|
|
871
|
+
X3DBoundedObject_default().prototype .dispose .call (this);
|
|
872
|
+
X3DSensorNode_default().prototype .dispose .call (this);
|
|
873
|
+
},
|
|
874
|
+
});
|
|
875
|
+
|
|
876
|
+
Object .defineProperties (TransmitterPdu,
|
|
877
|
+
{
|
|
878
|
+
typeName:
|
|
879
|
+
{
|
|
880
|
+
value: "TransmitterPdu",
|
|
881
|
+
enumerable: true,
|
|
882
|
+
},
|
|
883
|
+
componentName:
|
|
884
|
+
{
|
|
885
|
+
value: "DIS",
|
|
886
|
+
enumerable: true,
|
|
887
|
+
},
|
|
888
|
+
containerField:
|
|
889
|
+
{
|
|
890
|
+
value: "children",
|
|
891
|
+
enumerable: true,
|
|
892
|
+
},
|
|
893
|
+
specificationRange:
|
|
894
|
+
{
|
|
895
|
+
value: Object .freeze (["3.0", "Infinity"]),
|
|
896
|
+
enumerable: true,
|
|
897
|
+
},
|
|
898
|
+
fieldDefinitions:
|
|
899
|
+
{
|
|
900
|
+
value: new (FieldDefinitionArray_default()) ([
|
|
901
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "metadata", new (Fields_default()).SFNode ()),
|
|
902
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "visible", new (Fields_default()).SFBool (true)),
|
|
903
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "bboxDisplay", new (Fields_default()).SFBool ()),
|
|
904
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxSize", new (Fields_default()).SFVec3f (-1, -1, -1)),
|
|
905
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "bboxCenter", new (Fields_default()).SFVec3f ()),
|
|
906
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "enabled", new (Fields_default()).SFBool (true)),
|
|
907
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isActive", new (Fields_default()).SFBool ()),
|
|
908
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "address", new (Fields_default()).SFString ("localhost")),
|
|
909
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "antennaLocation", new (Fields_default()).SFVec3f ()),
|
|
910
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "antennaPatternLength", new (Fields_default()).SFInt32 ()),
|
|
911
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "antennaPatternType", new (Fields_default()).SFInt32 ()),
|
|
912
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "applicationID", new (Fields_default()).SFInt32 (1)),
|
|
913
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "cryptoKeyID", new (Fields_default()).SFInt32 ()),
|
|
914
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "cryptoSystem", new (Fields_default()).SFInt32 ()),
|
|
915
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "entityID", new (Fields_default()).SFInt32 ()),
|
|
916
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "frequency", new (Fields_default()).SFInt32 ()),
|
|
917
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "inputSource", new (Fields_default()).SFInt32 ()),
|
|
918
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "lengthOfModulationParameters", new (Fields_default()).SFInt32 ()),
|
|
919
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "modulationTypeDetail", new (Fields_default()).SFInt32 ()),
|
|
920
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "modulationTypeMajor", new (Fields_default()).SFInt32 ()),
|
|
921
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "modulationTypeSpreadSpectrum", new (Fields_default()).SFInt32 ()),
|
|
922
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "modulationTypeSystem", new (Fields_default()).SFInt32 ()),
|
|
923
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayHost", new (Fields_default()).SFString ()),
|
|
924
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "multicastRelayPort", new (Fields_default()).SFInt32 ()),
|
|
925
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "networkMode", new (Fields_default()).SFString ("standAlone")),
|
|
926
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "port", new (Fields_default()).SFInt32 ()),
|
|
927
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "power", new (Fields_default()).SFFloat ()),
|
|
928
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioEntityTypeCategory", new (Fields_default()).SFInt32 ()),
|
|
929
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioEntityTypeCountry", new (Fields_default()).SFInt32 ()),
|
|
930
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioEntityTypeDomain", new (Fields_default()).SFInt32 ()),
|
|
931
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioEntityTypeKind", new (Fields_default()).SFInt32 ()),
|
|
932
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioEntityTypeNomenclature", new (Fields_default()).SFInt32 ()),
|
|
933
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioEntityTypeNomenclatureVersion", new (Fields_default()).SFInt32 ()),
|
|
934
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "radioID", new (Fields_default()).SFInt32 ()),
|
|
935
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "readInterval", new (Fields_default()).SFFloat (0.1)),
|
|
936
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "relativeAntennaLocation", new (Fields_default()).SFVec3f ()),
|
|
937
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "rtpHeaderExpected", new (Fields_default()).SFBool ()),
|
|
938
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "siteID", new (Fields_default()).SFInt32 ()),
|
|
939
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "transmitFrequencyBandwidth", new (Fields_default()).SFFloat ()),
|
|
940
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "transmitState", new (Fields_default()).SFInt32 ()),
|
|
941
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "whichGeometry", new (Fields_default()).SFInt32 (1)),
|
|
942
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "writeInterval", new (Fields_default()).SFFloat (1)),
|
|
943
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkReader", new (Fields_default()).SFBool ()),
|
|
944
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isNetworkWriter", new (Fields_default()).SFBool ()),
|
|
945
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isRtpHeaderHeard", new (Fields_default()).SFBool ()),
|
|
946
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isStandAlone", new (Fields_default()).SFBool ()),
|
|
947
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "timestamp", new (Fields_default()).SFTime ()),
|
|
948
|
+
]),
|
|
949
|
+
enumerable: true,
|
|
886
950
|
},
|
|
887
951
|
});
|
|
888
952
|
|
|
@@ -947,20 +1011,20 @@ Namespace_default().set ("x_ite/Components/DIS/TransmitterPdu", TransmitterPdu_d
|
|
|
947
1011
|
|
|
948
1012
|
|
|
949
1013
|
|
|
950
|
-
Components_default().
|
|
1014
|
+
Components_default().add ({
|
|
951
1015
|
name: "DIS",
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
1016
|
+
concreteNodes:
|
|
1017
|
+
[
|
|
1018
|
+
DIS_DISEntityManager,
|
|
1019
|
+
DIS_DISEntityTypeMapping,
|
|
1020
|
+
DIS_EspduTransform,
|
|
1021
|
+
DIS_ReceiverPdu,
|
|
1022
|
+
DIS_SignalPdu,
|
|
1023
|
+
DIS_TransmitterPdu,
|
|
1024
|
+
],
|
|
1025
|
+
abstractNodes:
|
|
1026
|
+
[
|
|
1027
|
+
],
|
|
964
1028
|
});
|
|
965
1029
|
|
|
966
1030
|
const DIS_default_ = undefined;
|