x_ite 8.0.0 → 8.3.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/.github/workflows/pages-deploy.yml +64 -0
- package/.gitmodules +3 -0
- package/.vscode/settings.json +3 -2
- package/Makefile +9 -4
- package/README.md +6 -6
- package/build/bin/version.pl +3 -11
- package/dist/LICENSE.md +0 -2
- package/dist/assets/components/Annotation.js +55 -28
- package/dist/assets/components/Annotation.min.js +1 -1
- package/dist/assets/components/CADGeometry.js +55 -28
- package/dist/assets/components/CADGeometry.min.js +1 -1
- package/dist/assets/components/CubeMapTexturing.js +197 -38
- package/dist/assets/components/CubeMapTexturing.min.js +1 -1
- package/dist/assets/components/DIS.js +50 -26
- package/dist/assets/components/DIS.min.js +1 -1
- package/dist/assets/components/EventUtilities.js +61 -28
- package/dist/assets/components/EventUtilities.min.js +1 -1
- package/dist/assets/components/Geometry2D.js +96 -48
- package/dist/assets/components/Geometry2D.min.js +1 -1
- package/dist/assets/components/Geospatial.js +186 -193
- package/dist/assets/components/Geospatial.min.js +1 -1
- package/dist/assets/components/HAnim.js +92 -53
- package/dist/assets/components/HAnim.min.js +1 -1
- package/dist/assets/components/KeyDeviceSensor.js +35 -17
- package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
- package/dist/assets/components/Layout.js +77 -45
- package/dist/assets/components/Layout.min.js +1 -1
- package/dist/assets/components/NURBS.js +209 -96
- package/dist/assets/components/NURBS.min.js +1 -1
- package/dist/assets/components/ParticleSystems.js +125 -62
- package/dist/assets/components/ParticleSystems.min.js +1 -1
- package/dist/assets/components/Picking.js +105 -70
- package/dist/assets/components/Picking.min.js +1 -1
- package/dist/assets/components/ProjectiveTextureMapping.js +69 -46
- package/dist/assets/components/ProjectiveTextureMapping.min.js +1 -1
- package/dist/assets/components/RigidBodyPhysics.js +125 -63
- package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
- package/dist/assets/components/Scripting.js +56 -38
- package/dist/assets/components/Scripting.min.js +1 -1
- package/dist/assets/components/Text.js +16857 -0
- package/dist/assets/components/Text.min.js +1 -0
- package/dist/assets/components/Texturing3D.js +114 -77
- package/dist/assets/components/Texturing3D.min.js +1 -1
- package/dist/assets/components/VolumeRendering.js +126 -60
- package/dist/assets/components/VolumeRendering.min.js +1 -1
- package/dist/assets/components/X_ITE.js +21 -12
- package/dist/assets/components/X_ITE.min.js +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.js +17800 -31195
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/Gemfile +11 -33
- package/docs/Gemfile.lock +53 -59
- package/docs/LICENSE +21 -0
- package/docs/README.md +46 -0
- package/docs/_config.yml +320 -127
- package/docs/_data/assets/cross_origin.yml +62 -0
- package/docs/_data/assets/self_host.yml +51 -0
- package/docs/_data/contact.yml +30 -0
- package/docs/_data/locales/bg-BG.yml +83 -0
- package/docs/_data/locales/de-DE.yml +82 -0
- package/docs/_data/locales/en.yml +93 -0
- package/docs/_data/locales/es-ES.yml +79 -0
- package/docs/_data/locales/fr-FR.yml +79 -0
- package/docs/_data/locales/hu-HU.yml +81 -0
- package/docs/_data/locales/id-ID.yml +79 -0
- package/docs/_data/locales/ko-KR.yml +86 -0
- package/docs/_data/locales/my-MM.yml +79 -0
- package/docs/_data/locales/pt-BR.yml +79 -0
- package/docs/_data/locales/ru-RU.yml +79 -0
- package/docs/_data/locales/tr-TR.yml +79 -0
- package/docs/_data/locales/uk-UA.yml +79 -0
- package/docs/_data/locales/vi-VN.yml +77 -0
- package/docs/_data/locales/zh-CN.yml +85 -0
- package/docs/_data/share.yml +27 -0
- package/docs/_includes/nav.html +19 -0
- package/docs/_includes/scripts.html +15 -0
- package/docs/_layouts/compress.html +11 -0
- package/docs/_layouts/redirect-page.html +6 -0
- package/docs/_layouts/wide.html +52 -0
- package/docs/_layouts/wrap.html +4 -0
- package/docs/_layouts/x_ite.html +8 -0
- package/docs/_plugins/no_date.rb +11 -0
- package/docs/_plugins/posts-lastmod-hook.rb +14 -0
- package/docs/{Accessing-the-External-Browser.md → _posts/accessing-the-external-browser.md} +26 -25
- package/docs/_posts/browser-support.md +53 -0
- package/docs/{Custom-Shaders.md → _posts/custom-shaders.md} +18 -14
- package/docs/{DOM-Integration.md → _posts/dom-integration.md} +29 -22
- package/docs/{Features.md → _posts/features.md} +11 -12
- package/docs/{index.md → _posts/getting-started.md} +203 -245
- package/docs/{Glossary.md → _posts/glossary.md} +5 -6
- package/docs/{How-To-Configure-Your-Web-Server.md → _posts/how-to-configure-your-web-server.md} +5 -6
- package/docs/{reference/Browser-Services.md → _posts/reference/browser-services.md} +8 -9
- package/docs/{reference/Constants-Services.md → _posts/reference/constants-services.md} +14 -15
- package/docs/{reference/ECMAScript-Object-and-Function-Definitions.md → _posts/reference/ecmascript-object-and-function-definitions.md} +14 -15
- package/docs/_posts/reference/field-services-and-objects.md +1127 -0
- package/docs/{reference/Prototype-Services.md → _posts/reference/prototype-services.md} +8 -14
- package/docs/{reference/Route-Services.md → _posts/reference/route-services.md} +6 -10
- package/docs/{reference/Scene-Services.md → _posts/reference/scene-services.md} +11 -21
- package/docs/{reference/Script-Node-Authoring-Interface.md → _posts/reference/script-node-authoring-interface.md} +10 -11
- package/docs/_posts/report-a-bug.md +15 -0
- package/docs/_posts/setup-a-localhost-server.md +42 -0
- package/docs/_posts/supported-nodes.md +377 -0
- package/docs/{tutorials/Adding-backgrounds.md → _posts/tutorials/adding-backgrounds.md} +13 -14
- package/docs/{tutorials/Adding-fog.md → _posts/tutorials/adding-fog.md} +6 -7
- package/docs/{tutorials/Adding-sound.md → _posts/tutorials/adding-sound.md} +27 -26
- package/docs/{tutorials/Animating-transforms.md → _posts/tutorials/animating-transforms.md} +36 -37
- package/docs/{tutorials/Basic-Nodes.md → _posts/tutorials/basic-nodes.md} +38 -49
- package/docs/{tutorials/Building-a-X3D-world.md → _posts/tutorials/building-a-x3d-world.md} +16 -16
- package/docs/{tutorials/Building-elevation-grids.md → _posts/tutorials/building-elevation-grids.md} +15 -14
- package/docs/{tutorials/Building-extruded-shapes.md → _posts/tutorials/building-extruded-shapes.md} +11 -12
- package/docs/{tutorials/Building-primitive-shapes.md → _posts/tutorials/building-primitive-shapes.md} +29 -28
- package/docs/{tutorials/Building-shapes-out-of-points,-lines,-and-faces.md → _posts/tutorials/building-shapes-out-of-points-lines-and-faces.md} +25 -27
- package/docs/{tutorials/Controlling-appearance-with-materials.md → _posts/tutorials/controlling-appearance-with-materials.md} +20 -19
- package/docs/{tutorials/Controlling-color-on-coordinate-based-geometry.md → _posts/tutorials/controlling-color-on-coordinate-based-geometry.md} +15 -16
- package/docs/{tutorials/Controlling-detail.md → _posts/tutorials/controlling-detail.md} +12 -11
- package/docs/{tutorials/Controlling-how-textures-are-mapped.md → _posts/tutorials/controlling-how-textures-are-mapped.md} +11 -12
- package/docs/{tutorials/Controlling-navigation.md → _posts/tutorials/controlling-navigation.md} +7 -8
- package/docs/{tutorials/Controlling-shading-on-coordinate-based-geometry.md → _posts/tutorials/controlling-shading-on-coordinate-based-geometry.md} +19 -20
- package/docs/{tutorials/Controlling-the-viewpoint.md → _posts/tutorials/controlling-the-viewpoint.md} +7 -8
- package/docs/{tutorials/Creating-new-node-types.md → _posts/tutorials/creating-new-node-types.md} +8 -9
- package/docs/{tutorials/Grouping-nodes.md → _posts/tutorials/grouping-nodes.md} +17 -18
- package/docs/{tutorials/Hello,-World!.md → _posts/tutorials/hello-world.md} +16 -28
- package/docs/{tutorials/Improving-Performance.md → _posts/tutorials/improving-performance.md} +7 -11
- package/docs/{tutorials/Increasing-Rendering-Speed.md → _posts/tutorials/increasing-rendering-speed.md} +5 -6
- package/docs/{tutorials/Introducing-animation.md → _posts/tutorials/introducing-animation.md} +14 -15
- package/docs/{tutorials/Introducing-script-use.md → _posts/tutorials/introducing-script-use.md} +7 -8
- package/docs/{tutorials/Introducing-X3D.md → _posts/tutorials/introducing-x3d.md} +7 -7
- package/docs/{tutorials/Lighting-your-world.md → _posts/tutorials/lighting-your-world.md} +8 -9
- package/docs/{tutorials/Mapping-textures.md → _posts/tutorials/mapping-textures.md} +11 -12
- package/docs/{tutorials/Naming-nodes.md → _posts/tutorials/naming-nodes.md} +9 -8
- package/docs/_posts/tutorials/overview.md +83 -0
- package/docs/{tutorials/Providing-information-about-your-world.md → _posts/tutorials/providing-information-about-your-world.md} +6 -7
- package/docs/{tutorials/Sensing-the-viewer.md → _posts/tutorials/sensing-the-viewer.md} +19 -20
- package/docs/{tutorials/Sensing-viewer-actions.md → _posts/tutorials/sensing-viewer-actions.md} +14 -15
- package/docs/{tutorials/Transforming-Shapes.md → _posts/tutorials/transforming-shapes.md} +8 -9
- package/docs/{tutorials/Writing-program-scripts-with-ECMAScript.md → _posts/tutorials/writing-program-scripts-with-ecmascript.md} +15 -15
- package/docs/{What's-New.md → _posts/what's-new.md} +152 -530
- package/docs/_tabs/imprint.md +52 -0
- package/docs/_tabs/laboratory.md +14 -0
- package/docs/_tabs/playground.html +246 -0
- package/docs/_tabs/reference.md +7 -0
- package/docs/_tabs/tags.md +5 -0
- package/docs/_tabs/tutorials.md +7 -0
- package/docs/assets/css/style.scss +194 -0
- package/docs/assets/img/favicons/android-chrome-192x192.png +0 -0
- package/docs/assets/img/favicons/android-chrome-512x512.png +0 -0
- package/docs/assets/img/favicons/apple-touch-icon.png +0 -0
- package/docs/assets/img/favicons/favicon-16x16.png +0 -0
- package/docs/assets/img/favicons/favicon-32x32.png +0 -0
- package/docs/assets/img/favicons/favicon.ico +0 -0
- package/docs/assets/img/favicons/mstile-150x150.png +0 -0
- package/docs/assets/img/favicons/safari-pinned-tab.svg +71 -0
- package/docs/assets/{images → img}/logo.png +0 -0
- package/docs/assets/js/example.js +34 -0
- package/docs/laboratory/3d-l-system-generator.html +169 -0
- package/docs/laboratory/online-dicom-and-nrrd-file-viewer.html +72 -0
- package/docs/laboratory/real-time-earth-quake-information.html +50 -0
- package/docs/laboratory/x3d-visual-blend-mode-editor.html +227 -0
- package/package.json +4 -4
- package/src/LICENSE.txt +1 -1
- package/src/assets/components/Annotation.js +1 -1
- package/src/assets/components/CADGeometry.js +1 -1
- package/src/assets/components/CubeMapTexturing.js +1 -1
- package/src/assets/components/DIS.js +1 -1
- package/src/assets/components/EventUtilities.js +1 -1
- package/src/assets/components/Geometry2D.js +1 -1
- package/src/assets/components/Geospatial.js +1 -1
- package/src/assets/components/HAnim.js +1 -1
- package/src/assets/components/KeyDeviceSensor.js +1 -1
- package/src/assets/components/Layout.js +1 -1
- package/src/assets/components/NURBS.js +1 -1
- package/src/assets/components/ParticleSystems.js +1 -1
- package/src/assets/components/Picking.js +1 -1
- package/src/assets/components/ProjectiveTextureMapping.js +6 -6
- package/src/assets/components/RigidBodyPhysics.js +1 -6
- package/src/assets/components/Scripting.js +1 -1
- package/src/{x_ite/Components → assets/components}/Text.js +19 -21
- package/src/assets/components/Texturing3D.js +1 -1
- package/src/assets/components/VolumeRendering.js +1 -1
- package/src/assets/components/X_ITE.js +1 -1
- package/src/assets/shaders/Types.glsl.js +1 -1
- package/src/assets/shaders/webgl1/include/Fragment.glsl.js +1 -1
- package/src/assets/shaders/webgl1/include/PointSize.glsl.js +6 -6
- package/src/assets/shaders/webgl1/include/Vertex.glsl.js +4 -4
- package/src/assets/shaders/webgl2/LineTransform.vs.js +11 -11
- package/src/assets/shaders/webgl2/include/Fragment.glsl.js +1 -1
- package/src/assets/shaders/webgl2/include/PointSize.glsl.js +6 -6
- package/src/assets/shaders/webgl2/include/Vertex.glsl.js +4 -4
- package/src/bookmarks.js +1 -1
- package/src/examples.js +3 -3
- package/src/lib/ammojs/AmmoClass.js +1 -1
- package/src/lib/jquery.js +1 -1
- package/src/locale/gettext.js +1 -1
- package/src/shim.js +1 -2
- package/src/standard/Geospatial/Geodetic.js +1 -1
- package/src/standard/Geospatial/ReferenceEllipsoids.js +3 -3
- package/src/standard/Geospatial/UniversalTransverseMercator.js +1 -1
- package/src/standard/Math/Algorithm.js +55 -45
- package/src/standard/Math/Algorithms/Bezier.js +1 -1
- package/src/standard/Math/Algorithms/MergeSort.js +1 -1
- package/src/standard/Math/Algorithms/PartialSort.js +1 -1
- package/src/standard/Math/Algorithms/QuickSort.js +1 -1
- package/src/standard/Math/Algorithms/SAT.js +2 -2
- package/src/standard/Math/Algorithms/eigen_decomposition.js +5 -3
- package/src/standard/Math/Geometry/Box2.js +1 -1
- package/src/standard/Math/Geometry/Box3.js +1 -1
- package/src/standard/Math/Geometry/Camera.js +4 -2
- package/src/standard/Math/Geometry/Cylinder3.js +1 -1
- package/src/standard/Math/Geometry/Line2.js +1 -1
- package/src/standard/Math/Geometry/Line3.js +1 -1
- package/src/standard/Math/Geometry/Plane3.js +1 -1
- package/src/standard/Math/Geometry/Sphere3.js +1 -1
- package/src/standard/Math/Geometry/Spheroid3.js +1 -1
- package/src/standard/Math/Geometry/Triangle2.js +4 -2
- package/src/standard/Math/Geometry/Triangle3.js +4 -2
- package/src/standard/Math/Geometry/ViewVolume.js +1 -1
- package/src/standard/Math/Numbers/Color3.js +3 -1
- package/src/standard/Math/Numbers/Color4.js +4 -1
- package/src/standard/Math/Numbers/Complex.js +1 -1
- package/src/standard/Math/Numbers/Matrix2.js +1 -1
- package/src/standard/Math/Numbers/Matrix3.js +1 -1
- package/src/standard/Math/Numbers/Matrix4.js +1 -1
- package/src/standard/Math/Numbers/Quaternion.js +1 -1
- package/src/standard/Math/Numbers/Rotation4.js +1 -1
- package/src/standard/Math/Numbers/Vector2.js +1 -1
- package/src/standard/Math/Numbers/Vector3.js +1 -1
- package/src/standard/Math/Numbers/Vector4.js +1 -1
- package/src/standard/Math/Utility/BVH.js +1 -1
- package/src/standard/Math/Utility/MatrixStack.js +1 -1
- package/src/standard/Networking/BinaryTransport.js +5 -3
- package/src/standard/Time/MicroTime.js +1 -1
- package/src/standard/Utility/BitSet.js +1 -1
- package/src/standard/Utility/DataStorage.js +1 -1
- package/src/standard/Utility/MapUtilities.js +1 -1
- package/src/standard/Utility/ObjectCache.js +5 -3
- package/src/standard/Utility/Shuffle.js +5 -3
- package/src/tests.js +3 -0
- package/src/x_ite/Base/Events.js +4 -2
- package/src/x_ite/Base/FieldArray.js +1 -1
- package/src/x_ite/Base/FieldDefinitionArray.js +1 -1
- package/src/x_ite/Base/X3DArrayField.js +8 -4
- package/src/x_ite/Base/X3DBaseNode.js +1 -1
- package/src/x_ite/Base/X3DCast.js +5 -3
- package/src/x_ite/Base/X3DChildObject.js +1 -1
- package/src/x_ite/Base/X3DConstants.js +1 -1
- package/src/x_ite/Base/X3DEventObject.js +1 -1
- package/src/x_ite/Base/X3DField.js +2 -13
- package/src/x_ite/Base/X3DFieldDefinition.js +1 -1
- package/src/x_ite/Base/X3DInfoArray.js +1 -1
- package/src/x_ite/Base/X3DObject.js +1 -1
- package/src/x_ite/Base/X3DObjectArrayField.js +1 -1
- package/src/x_ite/Base/X3DTypedArrayField.js +59 -33
- package/src/x_ite/Browser/Core/BrowserOptions.js +22 -30
- package/src/x_ite/Browser/Core/BrowserProperties.js +1 -1
- package/src/x_ite/Browser/Core/BrowserTimings.js +1 -1
- package/src/x_ite/Browser/Core/Context.js +1 -1
- package/src/x_ite/Browser/Core/ContextMenu.js +1 -1
- package/src/x_ite/Browser/Core/Notification.js +1 -1
- package/src/x_ite/Browser/Core/PrimitiveQuality.js +1 -1
- package/src/x_ite/Browser/Core/RenderingProperties.js +1 -1
- package/src/x_ite/Browser/Core/Shading.js +1 -1
- package/src/x_ite/Browser/Core/TextureQuality.js +1 -1
- package/src/x_ite/Browser/Core/X3DCoreContext.js +11 -8
- package/src/x_ite/Browser/DOMIntegration.js +25 -26
- package/src/x_ite/Browser/EnvironmentalEffects/X3DEnvironmentalEffectsContext.js +1 -1
- package/src/x_ite/Browser/Followers/X3DArrayChaserTemplate.js +5 -3
- package/src/x_ite/Browser/Followers/X3DArrayFollowerTemplate.js +5 -3
- package/src/x_ite/Browser/Geometry2D/Arc2DOptions.js +1 -1
- package/src/x_ite/Browser/Geometry2D/ArcClose2DOptions.js +1 -1
- package/src/x_ite/Browser/Geometry2D/Circle2DOptions.js +1 -1
- package/src/x_ite/Browser/Geometry2D/Disk2DOptions.js +1 -1
- package/src/x_ite/Browser/Geometry2D/Rectangle2DOptions.js +1 -1
- package/src/x_ite/Browser/Geometry2D/X3DGeometry2DContext.js +1 -1
- package/src/x_ite/Browser/Geometry3D/BoxOptions.js +1 -1
- package/src/x_ite/Browser/Geometry3D/ConeOptions.js +1 -1
- package/src/x_ite/Browser/Geometry3D/CylinderOptions.js +1 -1
- package/src/x_ite/Browser/Geometry3D/IcoSphere.js +1 -1
- package/src/x_ite/Browser/Geometry3D/IcoSphereOptions.js +1 -1
- package/src/x_ite/Browser/Geometry3D/QuadSphereOptions.js +1 -1
- package/src/x_ite/Browser/Geometry3D/X3DGeometry3DContext.js +1 -1
- package/src/x_ite/Browser/Geospatial/Geocentric.js +1 -2
- package/src/x_ite/Browser/Geospatial/Geospatial.js +1 -1
- package/src/x_ite/Browser/Grouping/X3DGroupingContext.js +1 -1
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator.js +1 -1
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator1.js +1 -1
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator2.js +4 -2
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolator3.js +4 -2
- package/src/x_ite/Browser/Interpolation/CatmullRomSplineInterpolatorTemplate.js +5 -3
- package/src/x_ite/Browser/Interpolation/SquatInterpolator.js +1 -1
- package/src/x_ite/Browser/KeyDeviceSensor/X3DKeyDeviceSensorContext.js +1 -1
- package/src/x_ite/Browser/Layering/X3DLayeringContext.js +1 -1
- package/src/x_ite/Browser/Layout/ScreenText.js +1 -1
- package/src/x_ite/Browser/Layout/X3DLayoutContext.js +1 -1
- package/src/x_ite/Browser/Legacy.js +64 -0
- package/src/x_ite/Browser/Lighting/X3DLightingContext.js +1 -1
- package/src/x_ite/Browser/NURBS/NURBS.js +1 -1
- package/src/x_ite/Browser/Navigation/ExamineViewer.js +6 -39
- package/src/x_ite/Browser/Navigation/FlyViewer.js +1 -1
- package/src/x_ite/Browser/Navigation/LookAtViewer.js +1 -1
- package/src/x_ite/Browser/Navigation/NoneViewer.js +1 -1
- package/src/x_ite/Browser/Navigation/PlaneViewer.js +1 -4
- package/src/x_ite/Browser/Navigation/WalkViewer.js +1 -1
- package/src/x_ite/Browser/Navigation/X3DFlyViewer.js +1 -1
- package/src/x_ite/Browser/Navigation/X3DNavigationContext.js +3 -2
- package/src/x_ite/Browser/Navigation/X3DViewer.js +3 -3
- package/src/x_ite/Browser/Networking/Features.js +52 -0
- package/src/x_ite/Browser/Networking/URLs.js +11 -12
- package/src/x_ite/Browser/Networking/X3DNetworkingContext.js +9 -22
- package/src/x_ite/Browser/ParticleSystems/GeometryTypes.js +1 -1
- package/src/x_ite/Browser/ParticleSystems/X3DParticleSystemsContext.js +1 -1
- package/src/x_ite/Browser/Picking/IntersectionType.js +1 -1
- package/src/x_ite/Browser/Picking/MatchCriterion.js +1 -1
- package/src/x_ite/Browser/Picking/SortOrder.js +1 -1
- package/src/x_ite/Browser/Picking/VolumePicker.js +2 -4
- package/src/x_ite/Browser/Picking/X3DPickingContext.js +1 -1
- package/src/x_ite/Browser/PointingDeviceSensor/PointingDevice.js +1 -1
- package/src/x_ite/Browser/PointingDeviceSensor/PointingDeviceSensorContainer.js +1 -1
- package/src/x_ite/Browser/PointingDeviceSensor/X3DPointingDeviceSensorContext.js +1 -1
- package/src/x_ite/Browser/Rendering/GeometryContext.js +1 -1
- package/src/x_ite/Browser/Rendering/X3DRenderingContext.js +1 -1
- package/src/x_ite/Browser/RigidBodyPhysics/AppliedParametersType.js +1 -1
- package/src/x_ite/Browser/Scripting/X3DScriptingContext.js +1 -1
- package/src/x_ite/Browser/Scripting/evaluate.js +5 -3
- package/src/x_ite/Browser/Shaders/ShaderCompiler.js +1 -1
- package/src/x_ite/Browser/Shaders/ShaderSource.js +5 -5
- package/src/x_ite/Browser/Shaders/Shaders.js +1 -1
- package/src/x_ite/Browser/Shaders/X3DShadersContext.js +1 -1
- package/src/x_ite/Browser/Shape/AlphaMode.js +1 -1
- package/src/x_ite/Browser/Shape/X3DShapeContext.js +4 -4
- package/src/x_ite/Browser/Sound/X3DSoundContext.js +1 -1
- package/src/x_ite/Browser/Text/PolygonText.js +1 -1
- package/src/x_ite/Browser/Text/TextAlignment.js +1 -1
- package/src/x_ite/Browser/Text/X3DTextContext.js +1 -1
- package/src/x_ite/Browser/Text/X3DTextGeometry.js +1 -1
- package/src/x_ite/Browser/Texturing/FunctionType.js +1 -1
- package/src/x_ite/Browser/Texturing/ModeType.js +1 -1
- package/src/x_ite/Browser/Texturing/SourceType.js +1 -1
- package/src/x_ite/Browser/Texturing/TextureCoordinateGeneratorModeType.js +1 -1
- package/src/x_ite/Browser/Texturing/X3DTexturingContext.js +1 -1
- package/src/x_ite/Browser/Texturing3D/DICOMParser.js +3 -3
- package/src/x_ite/Browser/Texturing3D/NRRDParser.js +2 -2
- package/src/x_ite/Browser/Time/X3DTimeContext.js +1 -1
- package/src/x_ite/Browser/VERSION.js +2 -2
- package/src/x_ite/Browser/VolumeRendering/VolumeMaterial.js +1 -1
- package/src/x_ite/Browser/VolumeRendering/X3DVolumeRenderingContext.js +1 -1
- package/src/x_ite/Browser/X3DBrowser.js +43 -52
- package/src/x_ite/Browser/X3DBrowserContext.js +1 -5
- package/src/x_ite/Components/Annotation/AnnotationLayer.js +1 -1
- package/src/x_ite/Components/Annotation/AnnotationTarget.js +1 -1
- package/src/x_ite/Components/Annotation/GroupAnnotation.js +1 -1
- package/src/x_ite/Components/Annotation/IconAnnotation.js +1 -1
- package/src/x_ite/Components/Annotation/TextAnnotation.js +1 -1
- package/src/x_ite/Components/Annotation/URLAnnotation.js +1 -1
- package/src/x_ite/Components/Annotation/X3DAnnotationNode.js +1 -1
- package/src/x_ite/Components/CADGeometry/CADAssembly.js +1 -1
- package/src/x_ite/Components/CADGeometry/CADFace.js +1 -1
- package/src/x_ite/Components/CADGeometry/CADLayer.js +1 -1
- package/src/x_ite/Components/CADGeometry/CADPart.js +1 -1
- package/src/x_ite/Components/CADGeometry/IndexedQuadSet.js +1 -1
- package/src/x_ite/Components/CADGeometry/QuadSet.js +1 -1
- package/src/x_ite/Components/CADGeometry/X3DProductStructureChildNode.js +1 -1
- package/src/x_ite/Components/Core/MetadataBoolean.js +1 -1
- package/src/x_ite/Components/Core/MetadataDouble.js +1 -1
- package/src/x_ite/Components/Core/MetadataFloat.js +1 -1
- package/src/x_ite/Components/Core/MetadataInteger.js +1 -1
- package/src/x_ite/Components/Core/MetadataSet.js +1 -1
- package/src/x_ite/Components/Core/MetadataString.js +1 -1
- package/src/x_ite/Components/Core/WorldInfo.js +1 -1
- package/src/x_ite/Components/Core/X3DBindableNode.js +1 -1
- package/src/x_ite/Components/Core/X3DChildNode.js +1 -1
- package/src/x_ite/Components/Core/X3DInfoNode.js +1 -1
- package/src/x_ite/Components/Core/X3DMetadataObject.js +1 -1
- package/src/x_ite/Components/Core/X3DNode.js +5 -5
- package/src/x_ite/Components/Core/X3DPrototypeInstance.js +2 -2
- package/src/x_ite/Components/Core/X3DSensorNode.js +1 -1
- package/src/x_ite/Components/Core.js +1 -1
- package/src/x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture.js +1 -1
- package/src/x_ite/Components/CubeMapTexturing/GeneratedCubeMapTexture.js +1 -1
- package/src/x_ite/Components/CubeMapTexturing/ImageCubeMapTexture.js +1 -1
- package/src/x_ite/Components/CubeMapTexturing/X3DEnvironmentTextureNode.js +1 -1
- package/src/x_ite/Components/DIS/DISEntityManager.js +1 -1
- package/src/x_ite/Components/DIS/DISEntityTypeMapping.js +1 -1
- package/src/x_ite/Components/DIS/EspduTransform.js +1 -1
- package/src/x_ite/Components/DIS/ReceiverPdu.js +1 -1
- package/src/x_ite/Components/DIS/SignalPdu.js +1 -1
- package/src/x_ite/Components/DIS/TransmitterPdu.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects/Background.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects/Fog.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects/FogCoordinate.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects/LocalFog.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects/TextureBackground.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects/X3DBackgroundNode.js +6 -12
- package/src/x_ite/Components/EnvironmentalEffects/X3DFogObject.js +1 -1
- package/src/x_ite/Components/EnvironmentalEffects.js +1 -1
- package/src/x_ite/Components/EnvironmentalSensor/ProximitySensor.js +1 -1
- package/src/x_ite/Components/EnvironmentalSensor/TransformSensor.js +1 -1
- package/src/x_ite/Components/EnvironmentalSensor/VisibilitySensor.js +1 -1
- package/src/x_ite/Components/EnvironmentalSensor/X3DEnvironmentalSensorNode.js +1 -1
- package/src/x_ite/Components/EnvironmentalSensor.js +1 -1
- package/src/x_ite/Components/EventUtilities/BooleanFilter.js +1 -1
- package/src/x_ite/Components/EventUtilities/BooleanSequencer.js +1 -1
- package/src/x_ite/Components/EventUtilities/BooleanToggle.js +1 -1
- package/src/x_ite/Components/EventUtilities/BooleanTrigger.js +1 -1
- package/src/x_ite/Components/EventUtilities/IntegerSequencer.js +1 -1
- package/src/x_ite/Components/EventUtilities/IntegerTrigger.js +1 -1
- package/src/x_ite/Components/EventUtilities/TimeTrigger.js +1 -1
- package/src/x_ite/Components/EventUtilities/X3DSequencerNode.js +1 -1
- package/src/x_ite/Components/EventUtilities/X3DTriggerNode.js +1 -1
- package/src/x_ite/Components/Followers/ColorChaser.js +1 -1
- package/src/x_ite/Components/Followers/ColorDamper.js +1 -1
- package/src/x_ite/Components/Followers/CoordinateChaser.js +1 -1
- package/src/x_ite/Components/Followers/CoordinateDamper.js +1 -1
- package/src/x_ite/Components/Followers/OrientationChaser.js +1 -1
- package/src/x_ite/Components/Followers/OrientationDamper.js +1 -1
- package/src/x_ite/Components/Followers/PositionChaser.js +1 -1
- package/src/x_ite/Components/Followers/PositionChaser2D.js +1 -1
- package/src/x_ite/Components/Followers/PositionDamper.js +1 -1
- package/src/x_ite/Components/Followers/PositionDamper2D.js +1 -1
- package/src/x_ite/Components/Followers/ScalarChaser.js +1 -1
- package/src/x_ite/Components/Followers/ScalarDamper.js +1 -1
- package/src/x_ite/Components/Followers/TexCoordChaser2D.js +1 -1
- package/src/x_ite/Components/Followers/TexCoordDamper2D.js +1 -1
- package/src/x_ite/Components/Followers/X3DChaserNode.js +1 -1
- package/src/x_ite/Components/Followers/X3DDamperNode.js +1 -1
- package/src/x_ite/Components/Followers/X3DFollowerNode.js +1 -1
- package/src/x_ite/Components/Followers.js +1 -1
- package/src/x_ite/Components/Geometry2D/Arc2D.js +1 -1
- package/src/x_ite/Components/Geometry2D/ArcClose2D.js +1 -1
- package/src/x_ite/Components/Geometry2D/Circle2D.js +1 -1
- package/src/x_ite/Components/Geometry2D/Disk2D.js +1 -1
- package/src/x_ite/Components/Geometry2D/Polyline2D.js +1 -1
- package/src/x_ite/Components/Geometry2D/Polypoint2D.js +1 -1
- package/src/x_ite/Components/Geometry2D/Rectangle2D.js +1 -1
- package/src/x_ite/Components/Geometry2D/TriangleSet2D.js +1 -1
- package/src/x_ite/Components/Geometry3D/Box.js +1 -1
- package/src/x_ite/Components/Geometry3D/Cone.js +3 -3
- package/src/x_ite/Components/Geometry3D/Cylinder.js +4 -4
- package/src/x_ite/Components/Geometry3D/ElevationGrid.js +1 -1
- package/src/x_ite/Components/Geometry3D/Extrusion.js +1 -1
- package/src/x_ite/Components/Geometry3D/IndexedFaceSet.js +1 -1
- package/src/x_ite/Components/Geometry3D/Sphere.js +1 -1
- package/src/x_ite/Components/Geometry3D.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoCoordinate.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoElevationGrid.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoLOD.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoLocation.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoMetadata.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoOrigin.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoPositionInterpolator.js +17 -13
- package/src/x_ite/Components/Geospatial/GeoProximitySensor.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoTouchSensor.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoTransform.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoViewpoint.js +39 -106
- package/src/x_ite/Components/Geospatial/X3DGeospatialObject.js +1 -1
- package/src/x_ite/Components/Grouping/Group.js +1 -1
- package/src/x_ite/Components/Grouping/StaticGroup.js +1 -1
- package/src/x_ite/Components/Grouping/Switch.js +1 -1
- package/src/x_ite/Components/Grouping/Transform.js +1 -1
- package/src/x_ite/Components/Grouping/X3DBoundedObject.js +1 -1
- package/src/x_ite/Components/Grouping/X3DGroupingNode.js +1 -1
- package/src/x_ite/Components/Grouping/X3DTransformMatrix3DNode.js +1 -1
- package/src/x_ite/Components/Grouping/X3DTransformNode.js +1 -1
- package/src/x_ite/Components/Grouping.js +1 -1
- package/src/x_ite/Components/HAnim/HAnimDisplacer.js +2 -1
- package/src/x_ite/Components/HAnim/HAnimHumanoid.js +32 -23
- package/src/x_ite/Components/HAnim/HAnimJoint.js +2 -1
- package/src/x_ite/Components/HAnim/HAnimMotion.js +3 -1
- package/src/x_ite/Components/HAnim/HAnimSegment.js +2 -1
- package/src/x_ite/Components/HAnim/HAnimSite.js +2 -1
- package/src/x_ite/Components/Interpolation/ColorInterpolator.js +2 -2
- package/src/x_ite/Components/Interpolation/CoordinateInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/CoordinateInterpolator2D.js +1 -1
- package/src/x_ite/Components/Interpolation/EaseInEaseOut.js +1 -1
- package/src/x_ite/Components/Interpolation/NormalInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/OrientationInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/PositionInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/PositionInterpolator2D.js +1 -1
- package/src/x_ite/Components/Interpolation/ScalarInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/SplinePositionInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/SplinePositionInterpolator2D.js +1 -1
- package/src/x_ite/Components/Interpolation/SplineScalarInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/SquadOrientationInterpolator.js +1 -1
- package/src/x_ite/Components/Interpolation/X3DInterpolatorNode.js +1 -1
- package/src/x_ite/Components/Interpolation.js +1 -1
- package/src/x_ite/Components/KeyDeviceSensor/KeySensor.js +1 -1
- package/src/x_ite/Components/KeyDeviceSensor/StringSensor.js +1 -1
- package/src/x_ite/Components/KeyDeviceSensor/X3DKeyDeviceSensorNode.js +1 -1
- package/src/x_ite/Components/Layering/Layer.js +4 -2
- package/src/x_ite/Components/Layering/LayerSet.js +1 -1
- package/src/x_ite/Components/Layering/Viewport.js +4 -4
- package/src/x_ite/Components/Layering/X3DLayerNode.js +66 -49
- package/src/x_ite/Components/Layering/X3DViewportNode.js +1 -1
- package/src/x_ite/Components/Layering.js +1 -1
- package/src/x_ite/Components/Layout/Layout.js +1 -1
- package/src/x_ite/Components/Layout/LayoutGroup.js +1 -1
- package/src/x_ite/Components/Layout/LayoutLayer.js +4 -2
- package/src/x_ite/Components/Layout/ScreenFontStyle.js +1 -1
- package/src/x_ite/Components/Layout/ScreenGroup.js +1 -1
- package/src/x_ite/Components/Layout/X3DLayoutNode.js +1 -1
- package/src/x_ite/Components/Lighting/DirectionalLight.js +9 -5
- package/src/x_ite/Components/Lighting/EnvironmentLight.js +143 -0
- package/src/x_ite/Components/Lighting/PointLight.js +9 -5
- package/src/x_ite/Components/Lighting/SpotLight.js +9 -5
- package/src/x_ite/Components/Lighting/X3DLightNode.js +1 -1
- package/src/x_ite/Components/Lighting.js +3 -1
- package/src/x_ite/Components/NURBS/Contour2D.js +1 -1
- package/src/x_ite/Components/NURBS/ContourPolyline2D.js +1 -1
- package/src/x_ite/Components/NURBS/CoordinateDouble.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsCurve.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsCurve2D.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsOrientationInterpolator.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsPatchSurface.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsPositionInterpolator.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsSet.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsSurfaceInterpolator.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsSweptSurface.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsSwungSurface.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsTextureCoordinate.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsTrimmedSurface.js +1 -1
- package/src/x_ite/Components/NURBS/X3DNurbsControlCurveNode.js +1 -1
- package/src/x_ite/Components/NURBS/X3DNurbsSurfaceGeometryNode.js +1 -1
- package/src/x_ite/Components/NURBS/X3DParametricGeometryNode.js +1 -1
- package/src/x_ite/Components/Navigation/Billboard.js +1 -1
- package/src/x_ite/Components/Navigation/Collision.js +1 -1
- package/src/x_ite/Components/Navigation/LOD.js +1 -1
- package/src/x_ite/Components/Navigation/NavigationInfo.js +2 -1
- package/src/x_ite/Components/Navigation/OrthoViewpoint.js +100 -68
- package/src/x_ite/Components/Navigation/Viewpoint.js +16 -16
- package/src/x_ite/Components/Navigation/ViewpointGroup.js +1 -1
- package/src/x_ite/Components/Navigation/X3DViewpointNode.js +219 -111
- package/src/x_ite/Components/Navigation.js +1 -1
- package/src/x_ite/Components/Networking/Anchor.js +1 -1
- package/src/x_ite/Components/Networking/Inline.js +99 -14
- package/src/x_ite/Components/Networking/LoadSensor.js +9 -9
- package/src/x_ite/Components/Networking/X3DNetworkSensorNode.js +1 -1
- package/src/x_ite/Components/Networking/X3DUrlObject.js +3 -3
- package/src/x_ite/Components/Networking.js +1 -1
- package/src/x_ite/Components/ParticleSystems/BoundedPhysicsModel.js +1 -1
- package/src/x_ite/Components/ParticleSystems/ConeEmitter.js +1 -1
- package/src/x_ite/Components/ParticleSystems/ExplosionEmitter.js +1 -1
- package/src/x_ite/Components/ParticleSystems/ForcePhysicsModel.js +1 -1
- package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +1 -1
- package/src/x_ite/Components/ParticleSystems/PointEmitter.js +1 -1
- package/src/x_ite/Components/ParticleSystems/PolylineEmitter.js +1 -1
- package/src/x_ite/Components/ParticleSystems/SurfaceEmitter.js +1 -1
- package/src/x_ite/Components/ParticleSystems/VolumeEmitter.js +1 -1
- package/src/x_ite/Components/ParticleSystems/WindPhysicsModel.js +1 -1
- package/src/x_ite/Components/ParticleSystems/X3DParticleEmitterNode.js +1 -1
- package/src/x_ite/Components/ParticleSystems/X3DParticlePhysicsModelNode.js +1 -1
- package/src/x_ite/Components/Picking/LinePickSensor.js +1 -1
- package/src/x_ite/Components/Picking/PickableGroup.js +1 -1
- package/src/x_ite/Components/Picking/PointPickSensor.js +2 -4
- package/src/x_ite/Components/Picking/PrimitivePickSensor.js +1 -1
- package/src/x_ite/Components/Picking/VolumePickSensor.js +1 -1
- package/src/x_ite/Components/Picking/X3DPickSensorNode.js +1 -1
- package/src/x_ite/Components/Picking/X3DPickableObject.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor/CylinderSensor.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor/PlaneSensor.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor/SphereSensor.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor/TouchSensor.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor/X3DDragSensorNode.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor/X3DPointingDeviceSensorNode.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor/X3DTouchSensorNode.js +1 -1
- package/src/x_ite/Components/PointingDeviceSensor.js +1 -1
- package/src/x_ite/Components/ProjectiveTextureMapping/{TextureProjectorPerspective.js → TextureProjector.js} +17 -13
- package/src/x_ite/Components/ProjectiveTextureMapping/TextureProjectorParallel.js +17 -13
- package/src/x_ite/Components/ProjectiveTextureMapping/X3DTextureProjectorNode.js +1 -1
- package/src/x_ite/Components/Rendering/ClipPlane.js +1 -1
- package/src/x_ite/Components/Rendering/Color.js +1 -1
- package/src/x_ite/Components/Rendering/ColorRGBA.js +1 -1
- package/src/x_ite/Components/Rendering/Coordinate.js +1 -1
- package/src/x_ite/Components/Rendering/IndexedLineSet.js +6 -1
- package/src/x_ite/Components/Rendering/IndexedTriangleFanSet.js +1 -1
- package/src/x_ite/Components/Rendering/IndexedTriangleSet.js +1 -1
- package/src/x_ite/Components/Rendering/IndexedTriangleStripSet.js +1 -1
- package/src/x_ite/Components/Rendering/LineSet.js +6 -1
- package/src/x_ite/Components/Rendering/Normal.js +31 -1
- package/src/x_ite/Components/Rendering/PointSet.js +6 -1
- package/src/x_ite/Components/Rendering/TriangleFanSet.js +1 -1
- package/src/x_ite/Components/Rendering/TriangleSet.js +1 -1
- package/src/x_ite/Components/Rendering/TriangleStripSet.js +1 -1
- package/src/x_ite/Components/Rendering/X3DColorNode.js +1 -1
- package/src/x_ite/Components/Rendering/X3DComposedGeometryNode.js +1 -1
- package/src/x_ite/Components/Rendering/X3DCoordinateNode.js +1 -1
- package/src/x_ite/Components/Rendering/X3DGeometricPropertyNode.js +1 -1
- package/src/x_ite/Components/Rendering/X3DGeometryNode.js +40 -35
- package/src/x_ite/Components/Rendering/X3DLineGeometryNode.js +24 -6
- package/src/x_ite/Components/Rendering/X3DNormalNode.js +1 -1
- package/src/x_ite/Components/Rendering/X3DPointGeometryNode.js +7 -1
- package/src/x_ite/Components/Rendering.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/BallJoint.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/CollidableOffset.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/CollidableShape.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/CollisionCollection.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/CollisionSensor.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/CollisionSpace.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/Contact.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/DoubleAxisHingeJoint.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/MotorJoint.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/RigidBody.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/RigidBodyCollection.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/SingleAxisHingeJoint.js +3 -2
- package/src/x_ite/Components/RigidBodyPhysics/SliderJoint.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/UniversalJoint.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/X3DNBodyCollidableNode.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/X3DNBodyCollisionSpaceNode.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/X3DRigidJointNode.js +1 -1
- package/src/x_ite/Components/Scripting/Script.js +2 -1
- package/src/x_ite/Components/Scripting/X3DScriptNode.js +1 -1
- package/src/x_ite/Components/Shaders/ComposedShader.js +1 -1
- package/src/x_ite/Components/Shaders/FloatVertexAttribute.js +1 -1
- package/src/x_ite/Components/Shaders/Matrix3VertexAttribute.js +1 -1
- package/src/x_ite/Components/Shaders/Matrix4VertexAttribute.js +1 -1
- package/src/x_ite/Components/Shaders/PackagedShader.js +2 -1
- package/src/x_ite/Components/Shaders/ProgramShader.js +1 -1
- package/src/x_ite/Components/Shaders/ShaderPart.js +2 -1
- package/src/x_ite/Components/Shaders/ShaderProgram.js +2 -1
- package/src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js +13 -10
- package/src/x_ite/Components/Shaders/X3DShaderNode.js +1 -1
- package/src/x_ite/Components/Shaders/X3DVertexAttributeNode.js +1 -1
- package/src/x_ite/Components/Shaders.js +1 -1
- package/src/x_ite/Components/Shape/AcousticProperties.js +1 -1
- package/src/x_ite/Components/Shape/Appearance.js +2 -2
- package/src/x_ite/Components/Shape/FillProperties.js +4 -1
- package/src/x_ite/Components/Shape/LineProperties.js +4 -1
- package/src/x_ite/Components/Shape/Material.js +24 -16
- package/src/x_ite/Components/Shape/PhysicalMaterial.js +1 -1
- package/src/x_ite/Components/Shape/PointProperties.js +14 -20
- package/src/x_ite/Components/Shape/Shape.js +1 -1
- package/src/x_ite/Components/Shape/TwoSidedMaterial.js +1 -1
- package/src/x_ite/Components/Shape/UnlitMaterial.js +1 -1
- package/src/x_ite/Components/Shape/X3DAppearanceChildNode.js +1 -1
- package/src/x_ite/Components/Shape/X3DAppearanceNode.js +1 -1
- package/src/x_ite/Components/Shape/X3DMaterialNode.js +1 -1
- package/src/x_ite/Components/Shape/X3DOneSidedMaterialNode.js +2 -2
- package/src/x_ite/Components/Shape/X3DShapeNode.js +1 -1
- package/src/x_ite/Components/Shape.js +1 -1
- package/src/x_ite/Components/Sound/Analyser.js +105 -0
- package/src/x_ite/Components/Sound/AudioClip.js +1 -1
- package/src/x_ite/Components/Sound/AudioDestination.js +94 -0
- package/src/x_ite/Components/Sound/BiquadFilter.js +104 -0
- package/src/x_ite/Components/Sound/BufferAudioSource.js +127 -0
- package/src/x_ite/Components/Sound/ChannelMerger.js +91 -0
- package/src/x_ite/Components/Sound/ChannelSelector.js +92 -0
- package/src/x_ite/Components/Sound/ChannelSplitter.js +92 -0
- package/src/x_ite/Components/Sound/Convolver.js +102 -0
- package/src/x_ite/Components/Sound/Delay.js +102 -0
- package/src/x_ite/Components/Sound/DynamicsCompressor.js +106 -0
- package/src/x_ite/Components/Sound/Gain.js +100 -0
- package/src/x_ite/Components/Sound/ListenerPointSource.js +102 -0
- package/src/x_ite/Components/Sound/MicrophoneSource.js +96 -0
- package/src/x_ite/Components/Sound/OscillatorSource.js +98 -0
- package/src/x_ite/Components/Sound/PeriodicWave.js +86 -0
- package/src/x_ite/Components/Sound/Sound.js +16 -13
- package/src/x_ite/Components/Sound/SpatialSound.js +103 -0
- package/src/x_ite/Components/Sound/StreamAudioDestination.js +94 -0
- package/src/x_ite/Components/Sound/StreamAudioSource.js +96 -0
- package/src/x_ite/Components/Sound/WaveShaper.js +102 -0
- package/src/x_ite/Components/Sound/X3DSoundChannelNode.js +63 -0
- package/src/x_ite/Components/Sound/X3DSoundDestinationNode.js +63 -0
- package/src/x_ite/Components/Sound/X3DSoundNode.js +1 -1
- package/src/x_ite/Components/Sound/X3DSoundProcessingNode.js +63 -0
- package/src/x_ite/Components/Sound/X3DSoundSourceNode.js +1 -1
- package/src/x_ite/Components/Sound.js +54 -10
- package/src/x_ite/Components/Text/FontStyle.js +1 -1
- package/src/x_ite/Components/Text/Text.js +1 -1
- package/src/x_ite/Components/Text/X3DFontStyleNode.js +1 -1
- package/src/x_ite/Components/Texturing/ImageTexture.js +1 -1
- package/src/x_ite/Components/Texturing/MovieTexture.js +1 -1
- package/src/x_ite/Components/Texturing/MultiTexture.js +1 -1
- package/src/x_ite/Components/Texturing/MultiTextureCoordinate.js +1 -1
- package/src/x_ite/Components/Texturing/MultiTextureTransform.js +1 -1
- package/src/x_ite/Components/Texturing/PixelTexture.js +1 -1
- package/src/x_ite/Components/Texturing/TextureCoordinate.js +1 -1
- package/src/x_ite/Components/Texturing/TextureCoordinateGenerator.js +1 -1
- package/src/x_ite/Components/Texturing/TextureProperties.js +8 -1
- package/src/x_ite/Components/Texturing/TextureTransform.js +1 -1
- package/src/x_ite/Components/Texturing/X3DSingleTextureCoordinateNode.js +1 -1
- package/src/x_ite/Components/Texturing/X3DSingleTextureNode.js +1 -1
- package/src/x_ite/Components/Texturing/X3DSingleTextureTransformNode.js +1 -1
- package/src/x_ite/Components/Texturing/X3DTexture2DNode.js +1 -1
- package/src/x_ite/Components/Texturing/X3DTextureCoordinateNode.js +1 -1
- package/src/x_ite/Components/Texturing/X3DTextureNode.js +1 -1
- package/src/x_ite/Components/Texturing/X3DTextureTransformNode.js +1 -1
- package/src/x_ite/Components/Texturing.js +1 -1
- package/src/x_ite/Components/Texturing3D/ComposedTexture3D.js +1 -1
- package/src/x_ite/Components/Texturing3D/ImageTexture3D.js +1 -1
- package/src/x_ite/Components/Texturing3D/PixelTexture3D.js +1 -1
- package/src/x_ite/Components/Texturing3D/TextureCoordinate3D.js +1 -1
- package/src/x_ite/Components/Texturing3D/TextureCoordinate4D.js +1 -1
- package/src/x_ite/Components/Texturing3D/TextureTransform3D.js +1 -1
- package/src/x_ite/Components/Texturing3D/TextureTransformMatrix3D.js +1 -1
- package/src/x_ite/Components/Texturing3D/X3DTexture3DNode.js +1 -1
- package/src/x_ite/Components/Time/TimeSensor.js +2 -1
- package/src/x_ite/Components/Time/X3DTimeDependentNode.js +1 -1
- package/src/x_ite/Components/Time.js +1 -1
- package/src/x_ite/Components/VolumeRendering/BlendedVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/BoundaryEnhancementVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/CartoonVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/ComposedVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/EdgeEnhancementVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/IsoSurfaceVolumeData.js +1 -1
- package/src/x_ite/Components/VolumeRendering/OpacityMapVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/ProjectionVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/SegmentedVolumeData.js +1 -1
- package/src/x_ite/Components/VolumeRendering/ShadedVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/SilhouetteEnhancementVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/ToneMappedVolumeStyle.js +1 -1
- package/src/x_ite/Components/VolumeRendering/VolumeData.js +1 -1
- package/src/x_ite/Components/VolumeRendering/X3DComposableVolumeRenderStyleNode.js +1 -1
- package/src/x_ite/Components/VolumeRendering/X3DVolumeDataNode.js +1 -1
- package/src/x_ite/Components/VolumeRendering/X3DVolumeRenderStyleNode.js +1 -1
- package/src/x_ite/Components/X_ITE/BlendMode.js +1 -1
- package/src/x_ite/Components.js +6 -28
- package/src/x_ite/Configuration/ComponentInfo.js +10 -7
- package/src/x_ite/Configuration/ComponentInfoArray.js +2 -6
- package/src/x_ite/Configuration/ProfileInfo.js +1 -1
- package/src/x_ite/Configuration/ProfileInfoArray.js +1 -1
- package/src/x_ite/Configuration/SupportedComponents.js +136 -154
- package/src/x_ite/Configuration/SupportedNodes.js +7 -10
- package/src/x_ite/Configuration/SupportedProfiles.js +1 -1
- package/src/x_ite/Configuration/UnitInfo.js +1 -1
- package/src/x_ite/Configuration/UnitInfoArray.js +1 -1
- package/src/x_ite/DEBUG.js +1 -1
- package/src/x_ite/Execution/BindableList.js +1 -1
- package/src/x_ite/Execution/BindableStack.js +12 -12
- package/src/x_ite/Execution/ExportedNodesArray.js +1 -1
- package/src/x_ite/Execution/ImportedNodesArray.js +1 -1
- package/src/x_ite/Execution/NamedNodesArray.js +1 -1
- package/src/x_ite/Execution/Scene.js +13 -13
- package/src/x_ite/Execution/X3DExecutionContext.js +882 -882
- package/src/x_ite/Execution/X3DExportedNode.js +1 -1
- package/src/x_ite/Execution/X3DImportedNode.js +1 -1
- package/src/x_ite/Execution/X3DScene.js +14 -22
- package/src/x_ite/Execution/X3DWorld.js +1 -1
- package/src/x_ite/Fallback.js +1 -6
- package/src/x_ite/Fields/ArrayFields.js +1 -1
- package/src/x_ite/Fields/SFBool.js +1 -1
- package/src/x_ite/Fields/SFColor.js +2 -5
- package/src/x_ite/Fields/SFColorRGBA.js +2 -6
- package/src/x_ite/Fields/SFDouble.js +1 -1
- package/src/x_ite/Fields/SFFloat.js +1 -1
- package/src/x_ite/Fields/SFImage.js +1 -1
- package/src/x_ite/Fields/SFInt32.js +1 -1
- package/src/x_ite/Fields/SFMatrix3.js +16 -11
- package/src/x_ite/Fields/SFMatrix4.js +18 -11
- package/src/x_ite/Fields/SFMatrixPrototypeTemplate.js +15 -4
- package/src/x_ite/Fields/SFNode.js +1 -1
- package/src/x_ite/Fields/SFNodeCache.js +3 -5
- package/src/x_ite/Fields/SFRotation.js +27 -6
- package/src/x_ite/Fields/SFString.js +1 -1
- package/src/x_ite/Fields/SFTime.js +1 -1
- package/src/x_ite/Fields/SFVec2.js +5 -11
- package/src/x_ite/Fields/SFVec3.js +5 -11
- package/src/x_ite/Fields/SFVec4.js +5 -11
- package/src/x_ite/Fields/SFVecPrototypeTemplate.js +27 -17
- package/src/x_ite/Fields.js +1 -1
- package/src/x_ite/InputOutput/FileLoader.js +3 -3
- package/src/x_ite/InputOutput/Generator.js +1 -1
- package/src/x_ite/Namespace.js +2 -758
- package/src/x_ite/Parser/GoldenGate.js +1 -1
- package/src/x_ite/Parser/HTMLSupport.js +1 -1
- package/src/x_ite/Parser/JSONParser.js +4 -4
- package/src/x_ite/Parser/VRMLParser.js +15 -1
- package/src/x_ite/Parser/X3DParser.js +1 -1
- package/src/x_ite/Parser/XMLParser.js +1 -1
- package/src/x_ite/Prototype/ExternProtoDeclarationArray.js +1 -1
- package/src/x_ite/Prototype/ProtoDeclarationArray.js +1 -1
- package/src/x_ite/Prototype/X3DExternProtoDeclaration.js +1 -1
- package/src/x_ite/Prototype/X3DProtoDeclaration.js +1 -1
- package/src/x_ite/Prototype/X3DProtoDeclarationNode.js +1 -1
- package/src/x_ite/Rendering/DependentRenderer.js +1 -1
- package/src/x_ite/Rendering/TextureBuffer.js +1 -1
- package/src/x_ite/Rendering/TraverseType.js +1 -1
- package/src/x_ite/Rendering/VertexArray.js +2 -2
- package/src/x_ite/Rendering/X3DRenderObject.js +10 -7
- package/src/x_ite/Routing/RouteArray.js +1 -1
- package/src/x_ite/Routing/X3DRoute.js +1 -1
- package/src/x_ite/Routing/X3DRoutingContext.js +1 -1
- package/src/x_ite/X3D.js +25 -37
- package/src/x_ite/X3DCanvas.js +10 -12
- package/src/x_ite.css +20 -0
- package/src/x_ite.html +80 -77
- package/src/x_ite.js +1 -1
- package/webpack.config.js +79 -8
- package/x_ite.min.html +78 -76
- package/build/bin/namespace.mjs +0 -86
- package/docs/404.md +0 -11
- package/docs/Browser-Support.md +0 -53
- package/docs/Supported-Nodes.md +0 -378
- package/docs/_data/navigation.yml +0 -137
- package/docs/assets/css/main.scss +0 -126
- package/docs/reference/Field-Services-and-Objects.md +0 -1110
- package/docs/tutorials/index.md +0 -84
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* X_ITE v8.
|
|
1
|
+
/* X_ITE v8.3.0 */(() => { // webpackBootstrap
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ // The require scope
|
|
4
4
|
/******/ var __webpack_require__ = {};
|
|
@@ -39,23 +39,26 @@ 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.3.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.3.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.3.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.3.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.3.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.3.0")] .require ("x_ite/Base/X3DConstants");
|
|
58
58
|
var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
|
|
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.3.0")] .require ("x_ite/Namespace");
|
|
61
|
+
var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
|
|
59
62
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/DISEntityManager.js
|
|
60
63
|
/*******************************************************************************
|
|
61
64
|
*
|
|
@@ -97,7 +100,7 @@ var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_names
|
|
|
97
100
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
98
101
|
*
|
|
99
102
|
* You should have received a copy of the GNU General Public License version 3
|
|
100
|
-
* along with X_ITE. If not, see <
|
|
103
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
101
104
|
* copy of the GPLv3 License.
|
|
102
105
|
*
|
|
103
106
|
* For Silvio, Joy and Adi.
|
|
@@ -144,13 +147,16 @@ DISEntityManager .prototype = Object .assign (Object .create ((X3DChildNode_defa
|
|
|
144
147
|
},
|
|
145
148
|
});
|
|
146
149
|
|
|
147
|
-
|
|
150
|
+
const __default__ = DISEntityManager;
|
|
151
|
+
;
|
|
148
152
|
|
|
153
|
+
Namespace_default().set ("x_ite/Components/DIS/DISEntityManager", __default__);
|
|
154
|
+
/* harmony default export */ const DIS_DISEntityManager = (__default__);
|
|
149
155
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DInfoNode\")"
|
|
150
|
-
const X3DInfoNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
156
|
+
const X3DInfoNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Core/X3DInfoNode");
|
|
151
157
|
var X3DInfoNode_default = /*#__PURE__*/__webpack_require__.n(X3DInfoNode_namespaceObject);
|
|
152
158
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/X3DUrlObject\")"
|
|
153
|
-
const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
159
|
+
const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Networking/X3DUrlObject");
|
|
154
160
|
var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_namespaceObject);
|
|
155
161
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/DISEntityTypeMapping.js
|
|
156
162
|
/*******************************************************************************
|
|
@@ -193,7 +199,7 @@ var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_names
|
|
|
193
199
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
194
200
|
*
|
|
195
201
|
* You should have received a copy of the GNU General Public License version 3
|
|
196
|
-
* along with X_ITE. If not, see <
|
|
202
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
197
203
|
* copy of the GPLv3 License.
|
|
198
204
|
*
|
|
199
205
|
* For Silvio, Joy and Adi.
|
|
@@ -265,13 +271,16 @@ DISEntityTypeMapping .prototype = Object .assign (Object .create ((X3DInfoNode_d
|
|
|
265
271
|
},
|
|
266
272
|
});
|
|
267
273
|
|
|
268
|
-
|
|
274
|
+
const DISEntityTypeMapping_default_ = DISEntityTypeMapping;
|
|
275
|
+
;
|
|
269
276
|
|
|
277
|
+
Namespace_default().set ("x_ite/Components/DIS/DISEntityTypeMapping", DISEntityTypeMapping_default_);
|
|
278
|
+
/* harmony default export */ const DIS_DISEntityTypeMapping = (DISEntityTypeMapping_default_);
|
|
270
279
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DGroupingNode\")"
|
|
271
|
-
const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
280
|
+
const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
|
|
272
281
|
var X3DGroupingNode_default = /*#__PURE__*/__webpack_require__.n(X3DGroupingNode_namespaceObject);
|
|
273
282
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DSensorNode\")"
|
|
274
|
-
const X3DSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
283
|
+
const X3DSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Core/X3DSensorNode");
|
|
275
284
|
var X3DSensorNode_default = /*#__PURE__*/__webpack_require__.n(X3DSensorNode_namespaceObject);
|
|
276
285
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/EspduTransform.js
|
|
277
286
|
/*******************************************************************************
|
|
@@ -314,7 +323,7 @@ var X3DSensorNode_default = /*#__PURE__*/__webpack_require__.n(X3DSensorNode_nam
|
|
|
314
323
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
315
324
|
*
|
|
316
325
|
* You should have received a copy of the GNU General Public License version 3
|
|
317
|
-
* along with X_ITE. If not, see <
|
|
326
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
318
327
|
* copy of the GPLv3 License.
|
|
319
328
|
*
|
|
320
329
|
* For Silvio, Joy and Adi.
|
|
@@ -452,10 +461,13 @@ EspduTransform .prototype = Object .assign (Object .create ((X3DGroupingNode_def
|
|
|
452
461
|
},
|
|
453
462
|
});
|
|
454
463
|
|
|
455
|
-
|
|
464
|
+
const EspduTransform_default_ = EspduTransform;
|
|
465
|
+
;
|
|
456
466
|
|
|
467
|
+
Namespace_default().set ("x_ite/Components/DIS/EspduTransform", EspduTransform_default_);
|
|
468
|
+
/* harmony default export */ const DIS_EspduTransform = (EspduTransform_default_);
|
|
457
469
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DBoundedObject\")"
|
|
458
|
-
const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
470
|
+
const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Grouping/X3DBoundedObject");
|
|
459
471
|
var X3DBoundedObject_default = /*#__PURE__*/__webpack_require__.n(X3DBoundedObject_namespaceObject);
|
|
460
472
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/ReceiverPdu.js
|
|
461
473
|
/*******************************************************************************
|
|
@@ -498,7 +510,7 @@ var X3DBoundedObject_default = /*#__PURE__*/__webpack_require__.n(X3DBoundedObje
|
|
|
498
510
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
499
511
|
*
|
|
500
512
|
* You should have received a copy of the GNU General Public License version 3
|
|
501
|
-
* along with X_ITE. If not, see <
|
|
513
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
502
514
|
* copy of the GPLv3 License.
|
|
503
515
|
*
|
|
504
516
|
* For Silvio, Joy and Adi.
|
|
@@ -581,8 +593,11 @@ ReceiverPdu .prototype = Object .assign (Object .create ((X3DSensorNode_default(
|
|
|
581
593
|
},
|
|
582
594
|
});
|
|
583
595
|
|
|
584
|
-
|
|
596
|
+
const ReceiverPdu_default_ = ReceiverPdu;
|
|
597
|
+
;
|
|
585
598
|
|
|
599
|
+
Namespace_default().set ("x_ite/Components/DIS/ReceiverPdu", ReceiverPdu_default_);
|
|
600
|
+
/* harmony default export */ const DIS_ReceiverPdu = (ReceiverPdu_default_);
|
|
586
601
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/SignalPdu.js
|
|
587
602
|
/*******************************************************************************
|
|
588
603
|
*
|
|
@@ -624,7 +639,7 @@ ReceiverPdu .prototype = Object .assign (Object .create ((X3DSensorNode_default(
|
|
|
624
639
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
625
640
|
*
|
|
626
641
|
* You should have received a copy of the GNU General Public License version 3
|
|
627
|
-
* along with X_ITE. If not, see <
|
|
642
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
628
643
|
* copy of the GPLv3 License.
|
|
629
644
|
*
|
|
630
645
|
* For Silvio, Joy and Adi.
|
|
@@ -707,8 +722,11 @@ SignalPdu .prototype = Object .assign (Object .create ((X3DSensorNode_default())
|
|
|
707
722
|
},
|
|
708
723
|
});
|
|
709
724
|
|
|
710
|
-
|
|
725
|
+
const SignalPdu_default_ = SignalPdu;
|
|
726
|
+
;
|
|
711
727
|
|
|
728
|
+
Namespace_default().set ("x_ite/Components/DIS/SignalPdu", SignalPdu_default_);
|
|
729
|
+
/* harmony default export */ const DIS_SignalPdu = (SignalPdu_default_);
|
|
712
730
|
;// CONCATENATED MODULE: ./src/x_ite/Components/DIS/TransmitterPdu.js
|
|
713
731
|
/*******************************************************************************
|
|
714
732
|
*
|
|
@@ -750,7 +768,7 @@ SignalPdu .prototype = Object .assign (Object .create ((X3DSensorNode_default())
|
|
|
750
768
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
751
769
|
*
|
|
752
770
|
* You should have received a copy of the GNU General Public License version 3
|
|
753
|
-
* along with X_ITE. If not, see <
|
|
771
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
754
772
|
* copy of the GPLv3 License.
|
|
755
773
|
*
|
|
756
774
|
* For Silvio, Joy and Adi.
|
|
@@ -849,8 +867,11 @@ TransmitterPdu .prototype = Object .assign (Object .create ((X3DSensorNode_defau
|
|
|
849
867
|
},
|
|
850
868
|
});
|
|
851
869
|
|
|
852
|
-
|
|
870
|
+
const TransmitterPdu_default_ = TransmitterPdu;
|
|
871
|
+
;
|
|
853
872
|
|
|
873
|
+
Namespace_default().set ("x_ite/Components/DIS/TransmitterPdu", TransmitterPdu_default_);
|
|
874
|
+
/* harmony default export */ const DIS_TransmitterPdu = (TransmitterPdu_default_);
|
|
854
875
|
;// CONCATENATED MODULE: ./src/assets/components/DIS.js
|
|
855
876
|
/*******************************************************************************
|
|
856
877
|
*
|
|
@@ -892,7 +913,7 @@ TransmitterPdu .prototype = Object .assign (Object .create ((X3DSensorNode_defau
|
|
|
892
913
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
893
914
|
*
|
|
894
915
|
* You should have received a copy of the GNU General Public License version 3
|
|
895
|
-
* along with X_ITE. If not, see <
|
|
916
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
896
917
|
* copy of the GPLv3 License.
|
|
897
918
|
*
|
|
898
919
|
* For Silvio, Joy and Adi.
|
|
@@ -923,7 +944,10 @@ Components_default().addComponent ({
|
|
|
923
944
|
},
|
|
924
945
|
});
|
|
925
946
|
|
|
926
|
-
|
|
947
|
+
const DIS_default_ = undefined;
|
|
948
|
+
;
|
|
927
949
|
|
|
950
|
+
Namespace_default().set ("assets/components/DIS", DIS_default_);
|
|
951
|
+
/* harmony default export */ const DIS = ((/* unused pure expression or super */ null && (DIS_default_)));
|
|
928
952
|
/******/ })()
|
|
929
953
|
;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* X_ITE v8.0.0 */(()=>{"use strict";var t={n:n=>{var e=n&&n.__esModule?()=>n.default:()=>n;return t.d(e,{a:e}),e},d:(n,e)=>{for(var i in e)t.o(e,i)&&!t.o(n,i)&&Object.defineProperty(n,i,{enumerable:!0,get:e[i]})},o:(t,n)=>Object.prototype.hasOwnProperty.call(t,n)};const n=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Components");var e=t.n(n);const i=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Fields");var u=t.n(i);const o=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Base/X3DFieldDefinition");var p=t.n(o);const a=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Base/FieldDefinitionArray");var w=t.n(a);const r=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Components/Core/X3DChildNode");var l=t.n(r);const S=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Base/X3DConstants");var F=t.n(S);function s(t){l().call(this,t),this.addType(F().DISEntityManager)}s.prototype=Object.assign(Object.create(l().prototype),{constructor:s,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(F().inputOutput,"metadata",new(u().SFNode)),new(p())(F().inputOutput,"address",new(u().SFString)("localhost")),new(p())(F().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"mapping",new(u().MFNode)),new(p())(F().inputOutput,"port",new(u().SFInt32)),new(p())(F().inputOutput,"siteID",new(u().SFInt32)),new(p())(F().outputOnly,"addedEntities",new(u().MFNode)),new(p())(F().outputOnly,"removedEntities",new(u().MFNode))]),getTypeName:function(){return"DISEntityManager"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"}});const c=s,O=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Components/Core/X3DInfoNode");var d=t.n(O);const y=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Components/Networking/X3DUrlObject");var I=t.n(y);function m(t){d().call(this,t),I().call(this,t),this.addType(F().DISEntityTypeMapping)}m.prototype=Object.assign(Object.create(d().prototype),I().prototype,{constructor:m,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(F().inputOutput,"metadata",new(u().SFNode)),new(p())(F().inputOutput,"load",new(u().SFBool)(!0)),new(p())(F().inputOutput,"url",new(u().MFString)),new(p())(F().inputOutput,"autoRefresh",new(u().SFTime)),new(p())(F().inputOutput,"autoRefreshTimeLimit",new(u().SFTime)(3600)),new(p())(F().initializeOnly,"category",new(u().SFInt32)),new(p())(F().initializeOnly,"country",new(u().SFInt32)),new(p())(F().initializeOnly,"domain",new(u().SFInt32)),new(p())(F().initializeOnly,"extra",new(u().SFInt32)),new(p())(F().initializeOnly,"kind",new(u().SFInt32)),new(p())(F().initializeOnly,"specific",new(u().SFInt32)),new(p())(F().initializeOnly,"subcategory",new(u().SFInt32))]),getTypeName:function(){return"DISEntityTypeMapping"},getComponentName:function(){return"DIS"},getContainerField:function(){return"mapping"},initialize:function(){d().prototype.initialize.call(this),I().prototype.initialize.call(this)},requestImmediateLoad:function(t=!0){},requestUnload:function(){},set_load__:function(){},set_url__:function(){},dispose:function(){I().prototype.dispose.call(this),d().prototype.dispose.call(this)}});const f=m,D=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Components/Grouping/X3DGroupingNode");var g=t.n(D);const h=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Components/Core/X3DSensorNode");var b=t.n(h);function T(t){g().call(this,t),b().call(this,t),this.addType(F().EspduTransform)}T.prototype=Object.assign(Object.create(g().prototype),b().prototype,{constructor:T,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(F().inputOutput,"metadata",new(u().SFNode)),new(p())(F().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(F().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(F().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(F().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(F().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(F().inputOnly,"addChildren",new(u().MFNode)),new(p())(F().inputOnly,"removeChildren",new(u().MFNode)),new(p())(F().inputOutput,"children",new(u().MFNode)),new(p())(F().outputOnly,"isActive",new(u().SFBool)),new(p())(F().inputOnly,"set_articulationParameterValue0",new(u().SFFloat)),new(p())(F().inputOnly,"set_articulationParameterValue1",new(u().SFFloat)),new(p())(F().inputOnly,"set_articulationParameterValue2",new(u().SFFloat)),new(p())(F().inputOnly,"set_articulationParameterValue3",new(u().SFFloat)),new(p())(F().inputOnly,"set_articulationParameterValue4",new(u().SFFloat)),new(p())(F().inputOnly,"set_articulationParameterValue5",new(u().SFFloat)),new(p())(F().inputOnly,"set_articulationParameterValue6",new(u().SFFloat)),new(p())(F().inputOnly,"set_articulationParameterValue7",new(u().SFFloat)),new(p())(F().inputOutput,"address",new(u().SFString)("localhost")),new(p())(F().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"articulationParameterCount",new(u().SFInt32)),new(p())(F().inputOutput,"articulationParameterDesignatorArray",new(u().MFInt32)),new(p())(F().inputOutput,"articulationParameterChangeIndicatorArray",new(u().MFInt32)),new(p())(F().inputOutput,"articulationParameterIdPartAttachedToArray",new(u().MFInt32)),new(p())(F().inputOutput,"articulationParameterTypeArray",new(u().MFInt32)),new(p())(F().inputOutput,"articulationParameterArray",new(u().MFFloat)),new(p())(F().inputOutput,"center",new(u().SFVec3f)),new(p())(F().inputOutput,"collisionType",new(u().SFInt32)),new(p())(F().inputOutput,"deadReckoning",new(u().SFInt32)),new(p())(F().inputOutput,"detonationLocation",new(u().SFVec3f)),new(p())(F().inputOutput,"detonationRelativeLocation",new(u().SFVec3f)),new(p())(F().inputOutput,"detonationResult",new(u().SFInt32)),new(p())(F().inputOutput,"entityCategory",new(u().SFInt32)),new(p())(F().inputOutput,"entityCountry",new(u().SFInt32)),new(p())(F().inputOutput,"entityDomain",new(u().SFInt32)),new(p())(F().inputOutput,"entityExtra",new(u().SFInt32)),new(p())(F().inputOutput,"entityID",new(u().SFInt32)),new(p())(F().inputOutput,"entityKind",new(u().SFInt32)),new(p())(F().inputOutput,"entitySpecific",new(u().SFInt32)),new(p())(F().inputOutput,"entitySubCategory",new(u().SFInt32)),new(p())(F().inputOutput,"eventApplicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"eventEntityID",new(u().SFInt32)),new(p())(F().inputOutput,"eventNumber",new(u().SFInt32)),new(p())(F().inputOutput,"eventSiteID",new(u().SFInt32)),new(p())(F().inputOutput,"fired1",new(u().SFBool)),new(p())(F().inputOutput,"fired2",new(u().SFBool)),new(p())(F().inputOutput,"fireMissionIndex",new(u().SFInt32)),new(p())(F().inputOutput,"firingRange",new(u().SFFloat)),new(p())(F().inputOutput,"firingRate",new(u().SFInt32)),new(p())(F().inputOutput,"forceID",new(u().SFInt32)),new(p())(F().inputOutput,"fuse",new(u().SFInt32)),new(p())(F().inputOutput,"linearVelocity",new(u().SFVec3f)),new(p())(F().inputOutput,"linearAcceleration",new(u().SFVec3f)),new(p())(F().inputOutput,"marking",new(u().SFString)),new(p())(F().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(F().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(F().inputOutput,"munitionApplicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"munitionEndPoint",new(u().SFVec3f)),new(p())(F().inputOutput,"munitionEntityID",new(u().SFInt32)),new(p())(F().inputOutput,"munitionQuantity",new(u().SFInt32)),new(p())(F().inputOutput,"munitionSiteID",new(u().SFInt32)),new(p())(F().inputOutput,"munitionStartPoint",new(u().SFVec3f)),new(p())(F().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(F().inputOutput,"port",new(u().SFInt32)),new(p())(F().inputOutput,"readInterval",new(u().SFTime)(.1)),new(p())(F().inputOutput,"rotation",new(u().SFRotation)),new(p())(F().inputOutput,"scale",new(u().SFVec3f)(1,1,1)),new(p())(F().inputOutput,"scaleOrientation",new(u().SFRotation)),new(p())(F().inputOutput,"siteID",new(u().SFInt32)),new(p())(F().inputOutput,"translation",new(u().SFVec3f)),new(p())(F().inputOutput,"warhead",new(u().SFInt32)),new(p())(F().inputOutput,"writeInterval",new(u().SFTime)(1)),new(p())(F().outputOnly,"articulationParameterValue0_changed",new(u().SFFloat)),new(p())(F().outputOnly,"articulationParameterValue1_changed",new(u().SFFloat)),new(p())(F().outputOnly,"articulationParameterValue2_changed",new(u().SFFloat)),new(p())(F().outputOnly,"articulationParameterValue3_changed",new(u().SFFloat)),new(p())(F().outputOnly,"articulationParameterValue4_changed",new(u().SFFloat)),new(p())(F().outputOnly,"articulationParameterValue5_changed",new(u().SFFloat)),new(p())(F().outputOnly,"articulationParameterValue6_changed",new(u().SFFloat)),new(p())(F().outputOnly,"articulationParameterValue7_changed",new(u().SFFloat)),new(p())(F().outputOnly,"collideTime",new(u().SFTime)),new(p())(F().outputOnly,"detonateTime",new(u().SFTime)),new(p())(F().outputOnly,"firedTime",new(u().SFTime)),new(p())(F().outputOnly,"isCollided",new(u().SFBool)),new(p())(F().outputOnly,"isDetonated",new(u().SFBool)),new(p())(F().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(F().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(F().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(F().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(F().outputOnly,"timestamp",new(u().SFTime)),new(p())(F().initializeOnly,"rtpHeaderExpected",new(u().SFBool))]),getTypeName:function(){return"EspduTransform"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){g().prototype.initialize.call(this),b().prototype.initialize.call(this)}});const B=T,_=window[Symbol.for("X_ITE.X3D-8.0.0")].require("x_ite/Components/Grouping/X3DBoundedObject");var N=t.n(_);function P(t){b().call(this,t),N().call(this,t),this.addType(F().ReceiverPdu)}P.prototype=Object.assign(Object.create(b().prototype),N().prototype,{constructor:P,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(F().inputOutput,"metadata",new(u().SFNode)),new(p())(F().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(F().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(F().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(F().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(F().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(F().outputOnly,"isActive",new(u().SFBool)),new(p())(F().inputOutput,"address",new(u().SFString)("localhost")),new(p())(F().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"entityID",new(u().SFInt32)),new(p())(F().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(F().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(F().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(F().inputOutput,"port",new(u().SFInt32)),new(p())(F().inputOutput,"radioID",new(u().SFInt32)),new(p())(F().inputOutput,"readInterval",new(u().SFFloat)(.1)),new(p())(F().inputOutput,"receivedPower",new(u().SFFloat)),new(p())(F().inputOutput,"receiverState",new(u().SFInt32)),new(p())(F().inputOutput,"rtpHeaderExpected",new(u().SFBool)),new(p())(F().inputOutput,"siteID",new(u().SFInt32)),new(p())(F().inputOutput,"transmitterApplicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"transmitterEntityID",new(u().SFInt32)),new(p())(F().inputOutput,"transmitterRadioID",new(u().SFInt32)),new(p())(F().inputOutput,"transmitterSiteID",new(u().SFInt32)),new(p())(F().inputOutput,"whichGeometry",new(u().SFInt32)(1)),new(p())(F().inputOutput,"writeInterval",new(u().SFFloat)(1)),new(p())(F().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(F().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(F().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(F().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(F().outputOnly,"timestamp",new(u().SFTime))]),getTypeName:function(){return"ReceiverPdu"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){b().prototype.initialize.call(this),N().prototype.initialize.call(this)},dispose:function(){N().prototype.dispose.call(this),b().prototype.dispose.call(this)}});const v=P;function E(t){b().call(this,t),N().call(this,t),this.addType(F().SignalPdu)}E.prototype=Object.assign(Object.create(b().prototype),N().prototype,{constructor:E,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(F().inputOutput,"metadata",new(u().SFNode)),new(p())(F().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(F().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(F().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(F().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(F().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(F().outputOnly,"isActive",new(u().SFBool)),new(p())(F().inputOutput,"address",new(u().SFString)("localhost")),new(p())(F().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"data",new(u().MFInt32)),new(p())(F().inputOutput,"dataLength",new(u().SFInt32)),new(p())(F().inputOutput,"encodingScheme",new(u().SFInt32)),new(p())(F().inputOutput,"entityID",new(u().SFInt32)),new(p())(F().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(F().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(F().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(F().inputOutput,"port",new(u().SFInt32)),new(p())(F().inputOutput,"radioID",new(u().SFInt32)),new(p())(F().inputOutput,"readInterval",new(u().SFFloat)(.1)),new(p())(F().inputOutput,"rtpHeaderExpected",new(u().SFBool)),new(p())(F().inputOutput,"sampleRate",new(u().SFInt32)),new(p())(F().inputOutput,"samples",new(u().SFInt32)),new(p())(F().inputOutput,"siteID",new(u().SFInt32)),new(p())(F().inputOutput,"tdlType",new(u().SFInt32)),new(p())(F().inputOutput,"whichGeometry",new(u().SFInt32)(1)),new(p())(F().inputOutput,"writeInterval",new(u().SFFloat)(1)),new(p())(F().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(F().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(F().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(F().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(F().outputOnly,"timestamp",new(u().SFTime))]),getTypeName:function(){return"SignalPdu"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){b().prototype.initialize.call(this),N().prototype.initialize.call(this)},dispose:function(){N().prototype.dispose.call(this),b().prototype.dispose.call(this)}});const X=E;function C(t){b().call(this,t),N().call(this,t),this.addType(F().TransmitterPdu)}C.prototype=Object.assign(Object.create(b().prototype),N().prototype,{constructor:C,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(F().inputOutput,"metadata",new(u().SFNode)),new(p())(F().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(F().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(F().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(F().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(F().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(F().outputOnly,"isActive",new(u().SFBool)),new(p())(F().inputOutput,"address",new(u().SFString)("localhost")),new(p())(F().inputOutput,"antennaLocation",new(u().SFVec3f)),new(p())(F().inputOutput,"antennaPatternLength",new(u().SFInt32)),new(p())(F().inputOutput,"antennaPatternType",new(u().SFInt32)),new(p())(F().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(F().inputOutput,"cryptoKeyID",new(u().SFInt32)),new(p())(F().inputOutput,"cryptoSystem",new(u().SFInt32)),new(p())(F().inputOutput,"entityID",new(u().SFInt32)),new(p())(F().inputOutput,"frequency",new(u().SFInt32)),new(p())(F().inputOutput,"inputSource",new(u().SFInt32)),new(p())(F().inputOutput,"lengthOfModulationParameters",new(u().SFInt32)),new(p())(F().inputOutput,"modulationTypeDetail",new(u().SFInt32)),new(p())(F().inputOutput,"modulationTypeMajor",new(u().SFInt32)),new(p())(F().inputOutput,"modulationTypeSpreadSpectrum",new(u().SFInt32)),new(p())(F().inputOutput,"modulationTypeSystem",new(u().SFInt32)),new(p())(F().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(F().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(F().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(F().inputOutput,"port",new(u().SFInt32)),new(p())(F().inputOutput,"power",new(u().SFFloat)),new(p())(F().inputOutput,"radioEntityTypeCategory",new(u().SFInt32)),new(p())(F().inputOutput,"radioEntityTypeCountry",new(u().SFInt32)),new(p())(F().inputOutput,"radioEntityTypeDomain",new(u().SFInt32)),new(p())(F().inputOutput,"radioEntityTypeKind",new(u().SFInt32)),new(p())(F().inputOutput,"radioEntityTypeNomenclature",new(u().SFInt32)),new(p())(F().inputOutput,"radioEntityTypeNomenclatureVersion",new(u().SFInt32)),new(p())(F().inputOutput,"radioID",new(u().SFInt32)),new(p())(F().inputOutput,"readInterval",new(u().SFFloat)(.1)),new(p())(F().inputOutput,"relativeAntennaLocation",new(u().SFVec3f)),new(p())(F().inputOutput,"rtpHeaderExpected",new(u().SFBool)),new(p())(F().inputOutput,"siteID",new(u().SFInt32)),new(p())(F().inputOutput,"transmitFrequencyBandwidth",new(u().SFFloat)),new(p())(F().inputOutput,"transmitState",new(u().SFInt32)),new(p())(F().inputOutput,"whichGeometry",new(u().SFInt32)(1)),new(p())(F().inputOutput,"writeInterval",new(u().SFFloat)(1)),new(p())(F().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(F().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(F().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(F().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(F().outputOnly,"timestamp",new(u().SFTime))]),getTypeName:function(){return"TransmitterPdu"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){b().prototype.initialize.call(this),N().prototype.initialize.call(this)},dispose:function(){N().prototype.dispose.call(this),b().prototype.dispose.call(this)}});const V=C;e().addComponent({name:"DIS",types:{DISEntityManager:c,DISEntityTypeMapping:f,EspduTransform:B,ReceiverPdu:v,SignalPdu:X,TransmitterPdu:V},abstractTypes:{}})})();
|
|
1
|
+
/* X_ITE v8.3.0 */(()=>{"use strict";var t={n:n=>{var e=n&&n.__esModule?()=>n.default:()=>n;return t.d(e,{a:e}),e},d:(n,e)=>{for(var i in e)t.o(e,i)&&!t.o(n,i)&&Object.defineProperty(n,i,{enumerable:!0,get:e[i]})},o:(t,n)=>Object.prototype.hasOwnProperty.call(t,n)};const n=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components");var e=t.n(n);const i=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Fields");var u=t.n(i);const o=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Base/X3DFieldDefinition");var p=t.n(o);const a=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Base/FieldDefinitionArray");var w=t.n(a);const r=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components/Core/X3DChildNode");var l=t.n(r);const S=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Base/X3DConstants");var s=t.n(S);const F=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Namespace");var c=t.n(F);function O(t){l().call(this,t),this.addType(s().DISEntityManager)}O.prototype=Object.assign(Object.create(l().prototype),{constructor:O,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(s().inputOutput,"metadata",new(u().SFNode)),new(p())(s().inputOutput,"address",new(u().SFString)("localhost")),new(p())(s().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"mapping",new(u().MFNode)),new(p())(s().inputOutput,"port",new(u().SFInt32)),new(p())(s().inputOutput,"siteID",new(u().SFInt32)),new(p())(s().outputOnly,"addedEntities",new(u().MFNode)),new(p())(s().outputOnly,"removedEntities",new(u().MFNode))]),getTypeName:function(){return"DISEntityManager"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"}});const d=O;c().set("x_ite/Components/DIS/DISEntityManager",d);const y=d,I=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components/Core/X3DInfoNode");var m=t.n(I);const f=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components/Networking/X3DUrlObject");var D=t.n(f);function g(t){m().call(this,t),D().call(this,t),this.addType(s().DISEntityTypeMapping)}g.prototype=Object.assign(Object.create(m().prototype),D().prototype,{constructor:g,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(s().inputOutput,"metadata",new(u().SFNode)),new(p())(s().inputOutput,"load",new(u().SFBool)(!0)),new(p())(s().inputOutput,"url",new(u().MFString)),new(p())(s().inputOutput,"autoRefresh",new(u().SFTime)),new(p())(s().inputOutput,"autoRefreshTimeLimit",new(u().SFTime)(3600)),new(p())(s().initializeOnly,"category",new(u().SFInt32)),new(p())(s().initializeOnly,"country",new(u().SFInt32)),new(p())(s().initializeOnly,"domain",new(u().SFInt32)),new(p())(s().initializeOnly,"extra",new(u().SFInt32)),new(p())(s().initializeOnly,"kind",new(u().SFInt32)),new(p())(s().initializeOnly,"specific",new(u().SFInt32)),new(p())(s().initializeOnly,"subcategory",new(u().SFInt32))]),getTypeName:function(){return"DISEntityTypeMapping"},getComponentName:function(){return"DIS"},getContainerField:function(){return"mapping"},initialize:function(){m().prototype.initialize.call(this),D().prototype.initialize.call(this)},requestImmediateLoad:function(t=!0){},requestUnload:function(){},set_load__:function(){},set_url__:function(){},dispose:function(){D().prototype.dispose.call(this),m().prototype.dispose.call(this)}});const h=g;c().set("x_ite/Components/DIS/DISEntityTypeMapping",h);const T=h,b=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components/Grouping/X3DGroupingNode");var _=t.n(b);const B=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components/Core/X3DSensorNode");var E=t.n(B);function N(t){_().call(this,t),E().call(this,t),this.addType(s().EspduTransform)}N.prototype=Object.assign(Object.create(_().prototype),E().prototype,{constructor:N,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(s().inputOutput,"metadata",new(u().SFNode)),new(p())(s().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(s().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(s().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(s().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(s().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(s().inputOnly,"addChildren",new(u().MFNode)),new(p())(s().inputOnly,"removeChildren",new(u().MFNode)),new(p())(s().inputOutput,"children",new(u().MFNode)),new(p())(s().outputOnly,"isActive",new(u().SFBool)),new(p())(s().inputOnly,"set_articulationParameterValue0",new(u().SFFloat)),new(p())(s().inputOnly,"set_articulationParameterValue1",new(u().SFFloat)),new(p())(s().inputOnly,"set_articulationParameterValue2",new(u().SFFloat)),new(p())(s().inputOnly,"set_articulationParameterValue3",new(u().SFFloat)),new(p())(s().inputOnly,"set_articulationParameterValue4",new(u().SFFloat)),new(p())(s().inputOnly,"set_articulationParameterValue5",new(u().SFFloat)),new(p())(s().inputOnly,"set_articulationParameterValue6",new(u().SFFloat)),new(p())(s().inputOnly,"set_articulationParameterValue7",new(u().SFFloat)),new(p())(s().inputOutput,"address",new(u().SFString)("localhost")),new(p())(s().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"articulationParameterCount",new(u().SFInt32)),new(p())(s().inputOutput,"articulationParameterDesignatorArray",new(u().MFInt32)),new(p())(s().inputOutput,"articulationParameterChangeIndicatorArray",new(u().MFInt32)),new(p())(s().inputOutput,"articulationParameterIdPartAttachedToArray",new(u().MFInt32)),new(p())(s().inputOutput,"articulationParameterTypeArray",new(u().MFInt32)),new(p())(s().inputOutput,"articulationParameterArray",new(u().MFFloat)),new(p())(s().inputOutput,"center",new(u().SFVec3f)),new(p())(s().inputOutput,"collisionType",new(u().SFInt32)),new(p())(s().inputOutput,"deadReckoning",new(u().SFInt32)),new(p())(s().inputOutput,"detonationLocation",new(u().SFVec3f)),new(p())(s().inputOutput,"detonationRelativeLocation",new(u().SFVec3f)),new(p())(s().inputOutput,"detonationResult",new(u().SFInt32)),new(p())(s().inputOutput,"entityCategory",new(u().SFInt32)),new(p())(s().inputOutput,"entityCountry",new(u().SFInt32)),new(p())(s().inputOutput,"entityDomain",new(u().SFInt32)),new(p())(s().inputOutput,"entityExtra",new(u().SFInt32)),new(p())(s().inputOutput,"entityID",new(u().SFInt32)),new(p())(s().inputOutput,"entityKind",new(u().SFInt32)),new(p())(s().inputOutput,"entitySpecific",new(u().SFInt32)),new(p())(s().inputOutput,"entitySubCategory",new(u().SFInt32)),new(p())(s().inputOutput,"eventApplicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"eventEntityID",new(u().SFInt32)),new(p())(s().inputOutput,"eventNumber",new(u().SFInt32)),new(p())(s().inputOutput,"eventSiteID",new(u().SFInt32)),new(p())(s().inputOutput,"fired1",new(u().SFBool)),new(p())(s().inputOutput,"fired2",new(u().SFBool)),new(p())(s().inputOutput,"fireMissionIndex",new(u().SFInt32)),new(p())(s().inputOutput,"firingRange",new(u().SFFloat)),new(p())(s().inputOutput,"firingRate",new(u().SFInt32)),new(p())(s().inputOutput,"forceID",new(u().SFInt32)),new(p())(s().inputOutput,"fuse",new(u().SFInt32)),new(p())(s().inputOutput,"linearVelocity",new(u().SFVec3f)),new(p())(s().inputOutput,"linearAcceleration",new(u().SFVec3f)),new(p())(s().inputOutput,"marking",new(u().SFString)),new(p())(s().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(s().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(s().inputOutput,"munitionApplicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"munitionEndPoint",new(u().SFVec3f)),new(p())(s().inputOutput,"munitionEntityID",new(u().SFInt32)),new(p())(s().inputOutput,"munitionQuantity",new(u().SFInt32)),new(p())(s().inputOutput,"munitionSiteID",new(u().SFInt32)),new(p())(s().inputOutput,"munitionStartPoint",new(u().SFVec3f)),new(p())(s().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(s().inputOutput,"port",new(u().SFInt32)),new(p())(s().inputOutput,"readInterval",new(u().SFTime)(.1)),new(p())(s().inputOutput,"rotation",new(u().SFRotation)),new(p())(s().inputOutput,"scale",new(u().SFVec3f)(1,1,1)),new(p())(s().inputOutput,"scaleOrientation",new(u().SFRotation)),new(p())(s().inputOutput,"siteID",new(u().SFInt32)),new(p())(s().inputOutput,"translation",new(u().SFVec3f)),new(p())(s().inputOutput,"warhead",new(u().SFInt32)),new(p())(s().inputOutput,"writeInterval",new(u().SFTime)(1)),new(p())(s().outputOnly,"articulationParameterValue0_changed",new(u().SFFloat)),new(p())(s().outputOnly,"articulationParameterValue1_changed",new(u().SFFloat)),new(p())(s().outputOnly,"articulationParameterValue2_changed",new(u().SFFloat)),new(p())(s().outputOnly,"articulationParameterValue3_changed",new(u().SFFloat)),new(p())(s().outputOnly,"articulationParameterValue4_changed",new(u().SFFloat)),new(p())(s().outputOnly,"articulationParameterValue5_changed",new(u().SFFloat)),new(p())(s().outputOnly,"articulationParameterValue6_changed",new(u().SFFloat)),new(p())(s().outputOnly,"articulationParameterValue7_changed",new(u().SFFloat)),new(p())(s().outputOnly,"collideTime",new(u().SFTime)),new(p())(s().outputOnly,"detonateTime",new(u().SFTime)),new(p())(s().outputOnly,"firedTime",new(u().SFTime)),new(p())(s().outputOnly,"isCollided",new(u().SFBool)),new(p())(s().outputOnly,"isDetonated",new(u().SFBool)),new(p())(s().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(s().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(s().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(s().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(s().outputOnly,"timestamp",new(u().SFTime)),new(p())(s().initializeOnly,"rtpHeaderExpected",new(u().SFBool))]),getTypeName:function(){return"EspduTransform"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){_().prototype.initialize.call(this),E().prototype.initialize.call(this)}});const P=N;c().set("x_ite/Components/DIS/EspduTransform",P);const v=P,C=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components/Grouping/X3DBoundedObject");var X=t.n(C);function x(t){E().call(this,t),X().call(this,t),this.addType(s().ReceiverPdu)}x.prototype=Object.assign(Object.create(E().prototype),X().prototype,{constructor:x,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(s().inputOutput,"metadata",new(u().SFNode)),new(p())(s().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(s().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(s().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(s().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(s().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(s().outputOnly,"isActive",new(u().SFBool)),new(p())(s().inputOutput,"address",new(u().SFString)("localhost")),new(p())(s().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"entityID",new(u().SFInt32)),new(p())(s().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(s().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(s().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(s().inputOutput,"port",new(u().SFInt32)),new(p())(s().inputOutput,"radioID",new(u().SFInt32)),new(p())(s().inputOutput,"readInterval",new(u().SFFloat)(.1)),new(p())(s().inputOutput,"receivedPower",new(u().SFFloat)),new(p())(s().inputOutput,"receiverState",new(u().SFInt32)),new(p())(s().inputOutput,"rtpHeaderExpected",new(u().SFBool)),new(p())(s().inputOutput,"siteID",new(u().SFInt32)),new(p())(s().inputOutput,"transmitterApplicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"transmitterEntityID",new(u().SFInt32)),new(p())(s().inputOutput,"transmitterRadioID",new(u().SFInt32)),new(p())(s().inputOutput,"transmitterSiteID",new(u().SFInt32)),new(p())(s().inputOutput,"whichGeometry",new(u().SFInt32)(1)),new(p())(s().inputOutput,"writeInterval",new(u().SFFloat)(1)),new(p())(s().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(s().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(s().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(s().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(s().outputOnly,"timestamp",new(u().SFTime))]),getTypeName:function(){return"ReceiverPdu"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){E().prototype.initialize.call(this),X().prototype.initialize.call(this)},dispose:function(){X().prototype.dispose.call(this),E().prototype.dispose.call(this)}});const V=x;c().set("x_ite/Components/DIS/ReceiverPdu",V);const z=V;function R(t){E().call(this,t),X().call(this,t),this.addType(s().SignalPdu)}R.prototype=Object.assign(Object.create(E().prototype),X().prototype,{constructor:R,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(s().inputOutput,"metadata",new(u().SFNode)),new(p())(s().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(s().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(s().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(s().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(s().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(s().outputOnly,"isActive",new(u().SFBool)),new(p())(s().inputOutput,"address",new(u().SFString)("localhost")),new(p())(s().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"data",new(u().MFInt32)),new(p())(s().inputOutput,"dataLength",new(u().SFInt32)),new(p())(s().inputOutput,"encodingScheme",new(u().SFInt32)),new(p())(s().inputOutput,"entityID",new(u().SFInt32)),new(p())(s().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(s().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(s().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(s().inputOutput,"port",new(u().SFInt32)),new(p())(s().inputOutput,"radioID",new(u().SFInt32)),new(p())(s().inputOutput,"readInterval",new(u().SFFloat)(.1)),new(p())(s().inputOutput,"rtpHeaderExpected",new(u().SFBool)),new(p())(s().inputOutput,"sampleRate",new(u().SFInt32)),new(p())(s().inputOutput,"samples",new(u().SFInt32)),new(p())(s().inputOutput,"siteID",new(u().SFInt32)),new(p())(s().inputOutput,"tdlType",new(u().SFInt32)),new(p())(s().inputOutput,"whichGeometry",new(u().SFInt32)(1)),new(p())(s().inputOutput,"writeInterval",new(u().SFFloat)(1)),new(p())(s().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(s().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(s().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(s().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(s().outputOnly,"timestamp",new(u().SFTime))]),getTypeName:function(){return"SignalPdu"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){E().prototype.initialize.call(this),X().prototype.initialize.call(this)},dispose:function(){X().prototype.dispose.call(this),E().prototype.dispose.call(this)}});const M=R;c().set("x_ite/Components/DIS/SignalPdu",M);const A=M;function j(t){E().call(this,t),X().call(this,t),this.addType(s().TransmitterPdu)}j.prototype=Object.assign(Object.create(E().prototype),X().prototype,{constructor:j,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(w())([new(p())(s().inputOutput,"metadata",new(u().SFNode)),new(p())(s().inputOutput,"visible",new(u().SFBool)(!0)),new(p())(s().inputOutput,"bboxDisplay",new(u().SFBool)),new(p())(s().initializeOnly,"bboxSize",new(u().SFVec3f)(-1,-1,-1)),new(p())(s().initializeOnly,"bboxCenter",new(u().SFVec3f)),new(p())(s().inputOutput,"enabled",new(u().SFBool)(!0)),new(p())(s().outputOnly,"isActive",new(u().SFBool)),new(p())(s().inputOutput,"address",new(u().SFString)("localhost")),new(p())(s().inputOutput,"antennaLocation",new(u().SFVec3f)),new(p())(s().inputOutput,"antennaPatternLength",new(u().SFInt32)),new(p())(s().inputOutput,"antennaPatternType",new(u().SFInt32)),new(p())(s().inputOutput,"applicationID",new(u().SFInt32)(1)),new(p())(s().inputOutput,"cryptoKeyID",new(u().SFInt32)),new(p())(s().inputOutput,"cryptoSystem",new(u().SFInt32)),new(p())(s().inputOutput,"entityID",new(u().SFInt32)),new(p())(s().inputOutput,"frequency",new(u().SFInt32)),new(p())(s().inputOutput,"inputSource",new(u().SFInt32)),new(p())(s().inputOutput,"lengthOfModulationParameters",new(u().SFInt32)),new(p())(s().inputOutput,"modulationTypeDetail",new(u().SFInt32)),new(p())(s().inputOutput,"modulationTypeMajor",new(u().SFInt32)),new(p())(s().inputOutput,"modulationTypeSpreadSpectrum",new(u().SFInt32)),new(p())(s().inputOutput,"modulationTypeSystem",new(u().SFInt32)),new(p())(s().inputOutput,"multicastRelayHost",new(u().SFString)),new(p())(s().inputOutput,"multicastRelayPort",new(u().SFInt32)),new(p())(s().inputOutput,"networkMode",new(u().SFString)("standAlone")),new(p())(s().inputOutput,"port",new(u().SFInt32)),new(p())(s().inputOutput,"power",new(u().SFFloat)),new(p())(s().inputOutput,"radioEntityTypeCategory",new(u().SFInt32)),new(p())(s().inputOutput,"radioEntityTypeCountry",new(u().SFInt32)),new(p())(s().inputOutput,"radioEntityTypeDomain",new(u().SFInt32)),new(p())(s().inputOutput,"radioEntityTypeKind",new(u().SFInt32)),new(p())(s().inputOutput,"radioEntityTypeNomenclature",new(u().SFInt32)),new(p())(s().inputOutput,"radioEntityTypeNomenclatureVersion",new(u().SFInt32)),new(p())(s().inputOutput,"radioID",new(u().SFInt32)),new(p())(s().inputOutput,"readInterval",new(u().SFFloat)(.1)),new(p())(s().inputOutput,"relativeAntennaLocation",new(u().SFVec3f)),new(p())(s().inputOutput,"rtpHeaderExpected",new(u().SFBool)),new(p())(s().inputOutput,"siteID",new(u().SFInt32)),new(p())(s().inputOutput,"transmitFrequencyBandwidth",new(u().SFFloat)),new(p())(s().inputOutput,"transmitState",new(u().SFInt32)),new(p())(s().inputOutput,"whichGeometry",new(u().SFInt32)(1)),new(p())(s().inputOutput,"writeInterval",new(u().SFFloat)(1)),new(p())(s().outputOnly,"isNetworkReader",new(u().SFBool)),new(p())(s().outputOnly,"isNetworkWriter",new(u().SFBool)),new(p())(s().outputOnly,"isRtpHeaderHeard",new(u().SFBool)),new(p())(s().outputOnly,"isStandAlone",new(u().SFBool)),new(p())(s().outputOnly,"timestamp",new(u().SFTime))]),getTypeName:function(){return"TransmitterPdu"},getComponentName:function(){return"DIS"},getContainerField:function(){return"children"},initialize:function(){E().prototype.initialize.call(this),X().prototype.initialize.call(this)},dispose:function(){X().prototype.dispose.call(this),E().prototype.dispose.call(this)}});const k=j;c().set("x_ite/Components/DIS/TransmitterPdu",k);const q=k;e().addComponent({name:"DIS",types:{DISEntityManager:y,DISEntityTypeMapping:T,EspduTransform:v,ReceiverPdu:z,SignalPdu:A,TransmitterPdu:q},abstractTypes:{}});const H=void 0;c().set("assets/components/DIS",H)})();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* X_ITE v8.
|
|
1
|
+
/* X_ITE v8.3.0 */(() => { // webpackBootstrap
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ // The require scope
|
|
4
4
|
/******/ var __webpack_require__ = {};
|
|
@@ -39,23 +39,26 @@ 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.3.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.3.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.3.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.3.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.3.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.3.0")] .require ("x_ite/Base/X3DConstants");
|
|
58
58
|
var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
|
|
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.3.0")] .require ("x_ite/Namespace");
|
|
61
|
+
var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
|
|
59
62
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/BooleanFilter.js
|
|
60
63
|
/*******************************************************************************
|
|
61
64
|
*
|
|
@@ -97,7 +100,7 @@ var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_names
|
|
|
97
100
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
98
101
|
*
|
|
99
102
|
* You should have received a copy of the GNU General Public License version 3
|
|
100
|
-
* along with X_ITE. If not, see <
|
|
103
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
101
104
|
* copy of the GPLv3 License.
|
|
102
105
|
*
|
|
103
106
|
* For Silvio, Joy and Adi.
|
|
@@ -159,10 +162,13 @@ BooleanFilter .prototype = Object .assign (Object .create ((X3DChildNode_default
|
|
|
159
162
|
},
|
|
160
163
|
});
|
|
161
164
|
|
|
162
|
-
|
|
165
|
+
const __default__ = BooleanFilter;
|
|
166
|
+
;
|
|
163
167
|
|
|
168
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/BooleanFilter", __default__);
|
|
169
|
+
/* harmony default export */ const EventUtilities_BooleanFilter = (__default__);
|
|
164
170
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Algorithm\")"
|
|
165
|
-
const Algorithm_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
171
|
+
const Algorithm_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Algorithm");
|
|
166
172
|
var Algorithm_default = /*#__PURE__*/__webpack_require__.n(Algorithm_namespaceObject);
|
|
167
173
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/X3DSequencerNode.js
|
|
168
174
|
/*******************************************************************************
|
|
@@ -205,7 +211,7 @@ var Algorithm_default = /*#__PURE__*/__webpack_require__.n(Algorithm_namespaceOb
|
|
|
205
211
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
206
212
|
*
|
|
207
213
|
* You should have received a copy of the GNU General Public License version 3
|
|
208
|
-
* along with X_ITE. If not, see <
|
|
214
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
209
215
|
* copy of the GPLv3 License.
|
|
210
216
|
*
|
|
211
217
|
* For Silvio, Joy and Adi.
|
|
@@ -304,8 +310,11 @@ X3DSequencerNode .prototype = Object .assign (Object .create ((X3DChildNode_defa
|
|
|
304
310
|
},
|
|
305
311
|
});
|
|
306
312
|
|
|
307
|
-
|
|
313
|
+
const X3DSequencerNode_default_ = X3DSequencerNode;
|
|
314
|
+
;
|
|
308
315
|
|
|
316
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/X3DSequencerNode", X3DSequencerNode_default_);
|
|
317
|
+
/* harmony default export */ const EventUtilities_X3DSequencerNode = (X3DSequencerNode_default_);
|
|
309
318
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/BooleanSequencer.js
|
|
310
319
|
/*******************************************************************************
|
|
311
320
|
*
|
|
@@ -347,7 +356,7 @@ X3DSequencerNode .prototype = Object .assign (Object .create ((X3DChildNode_defa
|
|
|
347
356
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
348
357
|
*
|
|
349
358
|
* You should have received a copy of the GNU General Public License version 3
|
|
350
|
-
* along with X_ITE. If not, see <
|
|
359
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
351
360
|
* copy of the GPLv3 License.
|
|
352
361
|
*
|
|
353
362
|
* For Silvio, Joy and Adi.
|
|
@@ -407,8 +416,11 @@ BooleanSequencer .prototype = Object .assign (Object .create (EventUtilities_X3D
|
|
|
407
416
|
},
|
|
408
417
|
});
|
|
409
418
|
|
|
410
|
-
|
|
419
|
+
const BooleanSequencer_default_ = BooleanSequencer;
|
|
420
|
+
;
|
|
411
421
|
|
|
422
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/BooleanSequencer", BooleanSequencer_default_);
|
|
423
|
+
/* harmony default export */ const EventUtilities_BooleanSequencer = (BooleanSequencer_default_);
|
|
412
424
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/BooleanToggle.js
|
|
413
425
|
/*******************************************************************************
|
|
414
426
|
*
|
|
@@ -450,7 +462,7 @@ BooleanSequencer .prototype = Object .assign (Object .create (EventUtilities_X3D
|
|
|
450
462
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
451
463
|
*
|
|
452
464
|
* You should have received a copy of the GNU General Public License version 3
|
|
453
|
-
* along with X_ITE. If not, see <
|
|
465
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
454
466
|
* copy of the GPLv3 License.
|
|
455
467
|
*
|
|
456
468
|
* For Silvio, Joy and Adi.
|
|
@@ -503,8 +515,11 @@ BooleanToggle .prototype = Object .assign (Object .create ((X3DChildNode_default
|
|
|
503
515
|
},
|
|
504
516
|
});
|
|
505
517
|
|
|
506
|
-
|
|
518
|
+
const BooleanToggle_default_ = BooleanToggle;
|
|
519
|
+
;
|
|
507
520
|
|
|
521
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/BooleanToggle", BooleanToggle_default_);
|
|
522
|
+
/* harmony default export */ const EventUtilities_BooleanToggle = (BooleanToggle_default_);
|
|
508
523
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/X3DTriggerNode.js
|
|
509
524
|
/*******************************************************************************
|
|
510
525
|
*
|
|
@@ -546,7 +561,7 @@ BooleanToggle .prototype = Object .assign (Object .create ((X3DChildNode_default
|
|
|
546
561
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
547
562
|
*
|
|
548
563
|
* You should have received a copy of the GNU General Public License version 3
|
|
549
|
-
* along with X_ITE. If not, see <
|
|
564
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
550
565
|
* copy of the GPLv3 License.
|
|
551
566
|
*
|
|
552
567
|
* For Silvio, Joy and Adi.
|
|
@@ -568,8 +583,11 @@ X3DTriggerNode .prototype = Object .assign (Object .create ((X3DChildNode_defaul
|
|
|
568
583
|
constructor: X3DTriggerNode,
|
|
569
584
|
});
|
|
570
585
|
|
|
571
|
-
|
|
586
|
+
const X3DTriggerNode_default_ = X3DTriggerNode;
|
|
587
|
+
;
|
|
572
588
|
|
|
589
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/X3DTriggerNode", X3DTriggerNode_default_);
|
|
590
|
+
/* harmony default export */ const EventUtilities_X3DTriggerNode = (X3DTriggerNode_default_);
|
|
573
591
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/BooleanTrigger.js
|
|
574
592
|
/*******************************************************************************
|
|
575
593
|
*
|
|
@@ -611,7 +629,7 @@ X3DTriggerNode .prototype = Object .assign (Object .create ((X3DChildNode_defaul
|
|
|
611
629
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
612
630
|
*
|
|
613
631
|
* You should have received a copy of the GNU General Public License version 3
|
|
614
|
-
* along with X_ITE. If not, see <
|
|
632
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
615
633
|
* copy of the GPLv3 License.
|
|
616
634
|
*
|
|
617
635
|
* For Silvio, Joy and Adi.
|
|
@@ -663,8 +681,11 @@ BooleanTrigger .prototype = Object .assign (Object .create (EventUtilities_X3DTr
|
|
|
663
681
|
},
|
|
664
682
|
});
|
|
665
683
|
|
|
666
|
-
|
|
684
|
+
const BooleanTrigger_default_ = BooleanTrigger;
|
|
685
|
+
;
|
|
667
686
|
|
|
687
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/BooleanTrigger", BooleanTrigger_default_);
|
|
688
|
+
/* harmony default export */ const EventUtilities_BooleanTrigger = (BooleanTrigger_default_);
|
|
668
689
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/IntegerSequencer.js
|
|
669
690
|
/*******************************************************************************
|
|
670
691
|
*
|
|
@@ -706,7 +727,7 @@ BooleanTrigger .prototype = Object .assign (Object .create (EventUtilities_X3DTr
|
|
|
706
727
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
707
728
|
*
|
|
708
729
|
* You should have received a copy of the GNU General Public License version 3
|
|
709
|
-
* along with X_ITE. If not, see <
|
|
730
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
710
731
|
* copy of the GPLv3 License.
|
|
711
732
|
*
|
|
712
733
|
* For Silvio, Joy and Adi.
|
|
@@ -766,8 +787,11 @@ IntegerSequencer .prototype = Object .assign (Object .create (EventUtilities_X3D
|
|
|
766
787
|
},
|
|
767
788
|
});
|
|
768
789
|
|
|
769
|
-
|
|
790
|
+
const IntegerSequencer_default_ = IntegerSequencer;
|
|
791
|
+
;
|
|
770
792
|
|
|
793
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/IntegerSequencer", IntegerSequencer_default_);
|
|
794
|
+
/* harmony default export */ const EventUtilities_IntegerSequencer = (IntegerSequencer_default_);
|
|
771
795
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/IntegerTrigger.js
|
|
772
796
|
/*******************************************************************************
|
|
773
797
|
*
|
|
@@ -809,7 +833,7 @@ IntegerSequencer .prototype = Object .assign (Object .create (EventUtilities_X3D
|
|
|
809
833
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
810
834
|
*
|
|
811
835
|
* You should have received a copy of the GNU General Public License version 3
|
|
812
|
-
* along with X_ITE. If not, see <
|
|
836
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
813
837
|
* copy of the GPLv3 License.
|
|
814
838
|
*
|
|
815
839
|
* For Silvio, Joy and Adi.
|
|
@@ -862,8 +886,11 @@ IntegerTrigger .prototype = Object .assign (Object .create (EventUtilities_X3DTr
|
|
|
862
886
|
},
|
|
863
887
|
});
|
|
864
888
|
|
|
865
|
-
|
|
889
|
+
const IntegerTrigger_default_ = IntegerTrigger;
|
|
890
|
+
;
|
|
866
891
|
|
|
892
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/IntegerTrigger", IntegerTrigger_default_);
|
|
893
|
+
/* harmony default export */ const EventUtilities_IntegerTrigger = (IntegerTrigger_default_);
|
|
867
894
|
;// CONCATENATED MODULE: ./src/x_ite/Components/EventUtilities/TimeTrigger.js
|
|
868
895
|
/*******************************************************************************
|
|
869
896
|
*
|
|
@@ -905,7 +932,7 @@ IntegerTrigger .prototype = Object .assign (Object .create (EventUtilities_X3DTr
|
|
|
905
932
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
906
933
|
*
|
|
907
934
|
* You should have received a copy of the GNU General Public License version 3
|
|
908
|
-
* along with X_ITE. If not, see <
|
|
935
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
909
936
|
* copy of the GPLv3 License.
|
|
910
937
|
*
|
|
911
938
|
* For Silvio, Joy and Adi.
|
|
@@ -957,8 +984,11 @@ TimeTrigger .prototype = Object .assign (Object .create (EventUtilities_X3DTrigg
|
|
|
957
984
|
},
|
|
958
985
|
});
|
|
959
986
|
|
|
960
|
-
|
|
987
|
+
const TimeTrigger_default_ = TimeTrigger;
|
|
988
|
+
;
|
|
961
989
|
|
|
990
|
+
Namespace_default().set ("x_ite/Components/EventUtilities/TimeTrigger", TimeTrigger_default_);
|
|
991
|
+
/* harmony default export */ const EventUtilities_TimeTrigger = (TimeTrigger_default_);
|
|
962
992
|
;// CONCATENATED MODULE: ./src/assets/components/EventUtilities.js
|
|
963
993
|
/*******************************************************************************
|
|
964
994
|
*
|
|
@@ -1000,7 +1030,7 @@ TimeTrigger .prototype = Object .assign (Object .create (EventUtilities_X3DTrigg
|
|
|
1000
1030
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
1001
1031
|
*
|
|
1002
1032
|
* You should have received a copy of the GNU General Public License version 3
|
|
1003
|
-
* along with X_ITE. If not, see <
|
|
1033
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
1004
1034
|
* copy of the GPLv3 License.
|
|
1005
1035
|
*
|
|
1006
1036
|
* For Silvio, Joy and Adi.
|
|
@@ -1037,7 +1067,10 @@ Components_default().addComponent ({
|
|
|
1037
1067
|
},
|
|
1038
1068
|
});
|
|
1039
1069
|
|
|
1040
|
-
|
|
1070
|
+
const EventUtilities_default_ = undefined;
|
|
1071
|
+
;
|
|
1041
1072
|
|
|
1073
|
+
Namespace_default().set ("assets/components/EventUtilities", EventUtilities_default_);
|
|
1074
|
+
/* harmony default export */ const EventUtilities = ((/* unused pure expression or super */ null && (EventUtilities_default_)));
|
|
1042
1075
|
/******/ })()
|
|
1043
1076
|
;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/* X_ITE v8.
|
|
1
|
+
/* X_ITE v8.3.0 */(()=>{"use strict";var e={n:t=>{var n=t&&t.__esModule?()=>t.default:()=>t;return e.d(n,{a:n}),n},d:(t,n)=>{for(var i in n)e.o(n,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:n[i]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components");var n=e.n(t);const i=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Fields");var o=e.n(i);const s=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Base/X3DFieldDefinition");var r=e.n(s);const l=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Base/FieldDefinitionArray");var a=e.n(l);const u=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Components/Core/X3DChildNode");var c=e.n(u);const p=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Base/X3DConstants");var _=e.n(p);const d=window[Symbol.for("X_ITE.X3D-8.3.0")].require("x_ite/Namespace");var g=e.n(d);function h(e){c().call(this,e),this.addType(_().BooleanFilter)}h.prototype=Object.assign(Object.create(c().prototype),{constructor:h,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(a())([new(r())(_().inputOutput,"metadata",new(o().SFNode)),new(r())(_().inputOnly,"set_boolean",new(o().SFBool)),new(r())(_().outputOnly,"inputTrue",new(o().SFBool)),new(r())(_().outputOnly,"inputFalse",new(o().SFBool)),new(r())(_().outputOnly,"inputNegate",new(o().SFBool))]),getTypeName:function(){return"BooleanFilter"},getComponentName:function(){return"EventUtilities"},getContainerField:function(){return"children"},initialize:function(){c().prototype.initialize.call(this),this._set_boolean.addInterest("set_boolean__",this)},set_boolean__:function(){const e=this._set_boolean.getValue();e?this._inputTrue=!0:this._inputFalse=!1,this._inputNegate=!e}});const y=h;g().set("x_ite/Components/EventUtilities/BooleanFilter",y);const f=y,w=window[Symbol.for("X_ITE.X3D-8.3.0")].require("standard/Math/Algorithm");var m=e.n(w);function T(e){c().call(this,e),this.addType(_().X3DSequencerNode),this.index=-1}T.prototype=Object.assign(Object.create(c().prototype),{constructor:T,initialize:function(){c().prototype.initialize.call(this),this._set_fraction.addInterest("set_fraction__",this),this._previous.addInterest("set_previous__",this),this._next.addInterest("set_next__",this),this._key.addInterest("set_index__",this)},set_fraction__:function(){const e=this._set_fraction.getValue(),t=this._key,n=t.length;if(0===n)return;let i=0;if(1===n||e<=t[0])i=0;else if(e>=t[n-1])i=this.getSize()-1;else{i=m().upperBound(t,0,n,e)-1}i!==this.index&&i<this.getSize()&&this.sequence(this.index=i)},set_previous__:function(){this._previous.getValue()&&(this.index<=0?this.index=this.getSize()-1:--this.index,this.index<this.getSize()&&this.sequence(this.index))},set_next__:function(){this._next.getValue()&&(this.index>=this.getSize()-1?this.index=0:++this.index,this.index<this.getSize()&&this.sequence(this.index))},set_index__:function(){this.index=-1}});const S=T;g().set("x_ite/Components/EventUtilities/X3DSequencerNode",S);const b=S;function O(e){b.call(this,e),this.addType(_().BooleanSequencer)}O.prototype=Object.assign(Object.create(b.prototype),{constructor:O,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(a())([new(r())(_().inputOutput,"metadata",new(o().SFNode)),new(r())(_().inputOnly,"set_fraction",new(o().SFFloat)),new(r())(_().inputOnly,"previous",new(o().SFBool)),new(r())(_().inputOnly,"next",new(o().SFBool)),new(r())(_().inputOutput,"key",new(o().MFFloat)),new(r())(_().inputOutput,"keyValue",new(o().MFBool)),new(r())(_().outputOnly,"value_changed",new(o().SFBool))]),getTypeName:function(){return"BooleanSequencer"},getComponentName:function(){return"EventUtilities"},getContainerField:function(){return"children"},initialize:function(){b.prototype.initialize.call(this),this._keyValue.addInterest("set_index__",this)},getSize:function(){return this._keyValue.length},sequence:function(e){this._value_changed=this._keyValue[e]}});const F=O;g().set("x_ite/Components/EventUtilities/BooleanSequencer",F);const B=F;function v(e){c().call(this,e),this.addType(_().BooleanToggle)}v.prototype=Object.assign(Object.create(c().prototype),{constructor:v,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(a())([new(r())(_().inputOutput,"metadata",new(o().SFNode)),new(r())(_().inputOnly,"set_boolean",new(o().SFBool)),new(r())(_().inputOutput,"toggle",new(o().SFBool))]),getTypeName:function(){return"BooleanToggle"},getComponentName:function(){return"EventUtilities"},getContainerField:function(){return"children"},initialize:function(){c().prototype.initialize.call(this),this._set_boolean.addInterest("set_boolean__",this)},set_boolean__:function(){this._set_boolean.getValue()&&(this._toggle=!this._toggle.getValue())}});const x=v;g().set("x_ite/Components/EventUtilities/BooleanToggle",x);const X=x;function I(e){c().call(this,e),this.addType(_().X3DTriggerNode)}I.prototype=Object.assign(Object.create(c().prototype),{constructor:I});const N=I;g().set("x_ite/Components/EventUtilities/X3DTriggerNode",N);const D=N;function E(e){D.call(this,e),this.addType(_().BooleanTrigger)}E.prototype=Object.assign(Object.create(D.prototype),{constructor:E,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(a())([new(r())(_().inputOutput,"metadata",new(o().SFNode)),new(r())(_().inputOnly,"set_triggerTime",new(o().SFTime)),new(r())(_().outputOnly,"triggerTrue",new(o().SFBool))]),getTypeName:function(){return"BooleanTrigger"},getComponentName:function(){return"EventUtilities"},getContainerField:function(){return"children"},initialize:function(){D.prototype.initialize.call(this),this._set_triggerTime.addInterest("set_triggerTime__",this)},set_triggerTime__:function(){this._triggerTrue=!0}});const C=E;g().set("x_ite/Components/EventUtilities/BooleanTrigger",C);const q=C;function z(e){b.call(this,e),this.addType(_().IntegerSequencer)}z.prototype=Object.assign(Object.create(b.prototype),{constructor:z,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(a())([new(r())(_().inputOutput,"metadata",new(o().SFNode)),new(r())(_().inputOnly,"set_fraction",new(o().SFFloat)),new(r())(_().inputOnly,"previous",new(o().SFBool)),new(r())(_().inputOnly,"next",new(o().SFBool)),new(r())(_().inputOutput,"key",new(o().MFFloat)),new(r())(_().inputOutput,"keyValue",new(o().MFInt32)),new(r())(_().outputOnly,"value_changed",new(o().SFInt32))]),getTypeName:function(){return"IntegerSequencer"},getComponentName:function(){return"EventUtilities"},getContainerField:function(){return"children"},initialize:function(){b.prototype.initialize.call(this),this._keyValue.addInterest("set_index__",this)},getSize:function(){return this._keyValue.length},sequence:function(e){this._value_changed=this._keyValue[e]}});const j=z;g().set("x_ite/Components/EventUtilities/IntegerSequencer",j);const U=j;function V(e){D.call(this,e),this.addType(_().IntegerTrigger)}V.prototype=Object.assign(Object.create(D.prototype),{constructor:V,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(a())([new(r())(_().inputOutput,"metadata",new(o().SFNode)),new(r())(_().inputOnly,"set_boolean",new(o().SFBool)),new(r())(_().inputOutput,"integerKey",new(o().SFInt32)(-1)),new(r())(_().outputOnly,"triggerValue",new(o().SFInt32))]),getTypeName:function(){return"IntegerTrigger"},getComponentName:function(){return"EventUtilities"},getContainerField:function(){return"children"},initialize:function(){D.prototype.initialize.call(this),this._set_boolean.addInterest("set_boolean__",this)},set_boolean__:function(){this._triggerValue=this._integerKey}});const k=V;g().set("x_ite/Components/EventUtilities/IntegerTrigger",k);const M=k;function A(e){D.call(this,e),this.addType(_().TimeTrigger)}A.prototype=Object.assign(Object.create(D.prototype),{constructor:A,[Symbol.for("X_ITE.X3DBaseNode.fieldDefinitions")]:new(a())([new(r())(_().inputOutput,"metadata",new(o().SFNode)),new(r())(_().inputOnly,"set_boolean",new(o().SFBool)),new(r())(_().outputOnly,"triggerTime",new(o().SFTime))]),getTypeName:function(){return"TimeTrigger"},getComponentName:function(){return"EventUtilities"},getContainerField:function(){return"children"},initialize:function(){D.prototype.initialize.call(this),this._set_boolean.addInterest("set_boolean__",this)},set_boolean__:function(){this._triggerTime=this.getBrowser().getCurrentTime()}});const K=A;g().set("x_ite/Components/EventUtilities/TimeTrigger",K);const P=K;n().addComponent({name:"EventUtilities",types:{BooleanFilter:f,BooleanSequencer:B,BooleanToggle:X,BooleanTrigger:q,IntegerSequencer:U,IntegerTrigger:M,TimeTrigger:P},abstractTypes:{X3DSequencerNode:b,X3DTriggerNode:D}});const G=void 0;g().set("assets/components/EventUtilities",G)})();
|