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/Rendering/X3DCoordinateNode\")"
|
|
54
|
-
const X3DCoordinateNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
54
|
+
const X3DCoordinateNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Rendering/X3DCoordinateNode");
|
|
55
55
|
var X3DCoordinateNode_default = /*#__PURE__*/__webpack_require__.n(X3DCoordinateNode_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/standard/Math/Geometry/Spheroid3.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.
|
|
@@ -143,8 +146,11 @@ Spheroid3 .prototype =
|
|
|
143
146
|
},
|
|
144
147
|
};
|
|
145
148
|
|
|
146
|
-
|
|
149
|
+
const __default__ = Spheroid3;
|
|
150
|
+
;
|
|
147
151
|
|
|
152
|
+
Namespace_default().set ("standard/Math/Geometry/Spheroid3", __default__);
|
|
153
|
+
/* harmony default export */ const Geometry_Spheroid3 = (__default__);
|
|
148
154
|
;// CONCATENATED MODULE: ./src/standard/Geospatial/ReferenceEllipsoids.js
|
|
149
155
|
/*******************************************************************************
|
|
150
156
|
*
|
|
@@ -186,7 +192,7 @@ Spheroid3 .prototype =
|
|
|
186
192
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
187
193
|
*
|
|
188
194
|
* You should have received a copy of the GNU General Public License version 3
|
|
189
|
-
* along with X_ITE. If not, see <
|
|
195
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
190
196
|
* copy of the GPLv3 License.
|
|
191
197
|
*
|
|
192
198
|
* For Silvio, Joy and Adi.
|
|
@@ -223,13 +229,13 @@ const ReferenceEllipsoids =
|
|
|
223
229
|
WD: new Geometry_Spheroid3 (6378135, 298.26, true), // WGS 72
|
|
224
230
|
WE: new Geometry_Spheroid3 (6378137, 298.257223563, true), // WGS 84
|
|
225
231
|
// Solar System
|
|
226
|
-
//
|
|
232
|
+
// https://en.wikipedia.de
|
|
227
233
|
// Can someone give me more accurate parameters.
|
|
228
234
|
SUN: new Geometry_Spheroid3 (696342000, 1 / 9e-6, true),
|
|
229
235
|
MERCURY: new Geometry_Spheroid3 (2439700, 2439700),
|
|
230
236
|
VENUS: new Geometry_Spheroid3 (6051800, 6051800),
|
|
231
237
|
MOON: new Geometry_Spheroid3 (1738140, 1735970),
|
|
232
|
-
MARS: new Geometry_Spheroid3 (3395428, 3377678), //
|
|
238
|
+
MARS: new Geometry_Spheroid3 (3395428, 3377678), // https://adsabs.harvard.edu/abs/2010EM%26P..106....1A
|
|
233
239
|
JUPITER: new Geometry_Spheroid3 (71492000, 66854000),
|
|
234
240
|
SATURN: new Geometry_Spheroid3 (60268000, 54364000),
|
|
235
241
|
URANUS: new Geometry_Spheroid3 (2555000, 24973000),
|
|
@@ -237,13 +243,16 @@ const ReferenceEllipsoids =
|
|
|
237
243
|
PLUTO: new Geometry_Spheroid3 (1153000, 1153000),
|
|
238
244
|
};
|
|
239
245
|
|
|
240
|
-
|
|
246
|
+
const ReferenceEllipsoids_default_ = ReferenceEllipsoids;
|
|
247
|
+
;
|
|
241
248
|
|
|
249
|
+
Namespace_default().set ("standard/Geospatial/ReferenceEllipsoids", ReferenceEllipsoids_default_);
|
|
250
|
+
/* harmony default export */ const Geospatial_ReferenceEllipsoids = (ReferenceEllipsoids_default_);
|
|
242
251
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Vector3\")"
|
|
243
|
-
const Vector3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
252
|
+
const Vector3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Numbers/Vector3");
|
|
244
253
|
var Vector3_default = /*#__PURE__*/__webpack_require__.n(Vector3_namespaceObject);
|
|
245
254
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Algorithm\")"
|
|
246
|
-
const Algorithm_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
255
|
+
const Algorithm_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Algorithm");
|
|
247
256
|
var Algorithm_default = /*#__PURE__*/__webpack_require__.n(Algorithm_namespaceObject);
|
|
248
257
|
;// CONCATENATED MODULE: ./src/standard/Geospatial/Geodetic.js
|
|
249
258
|
/*******************************************************************************
|
|
@@ -286,7 +295,7 @@ var Algorithm_default = /*#__PURE__*/__webpack_require__.n(Algorithm_namespaceOb
|
|
|
286
295
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
287
296
|
*
|
|
288
297
|
* You should have received a copy of the GNU General Public License version 3
|
|
289
|
-
* along with X_ITE. If not, see <
|
|
298
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
290
299
|
* copy of the GPLv3 License.
|
|
291
300
|
*
|
|
292
301
|
* For Silvio, Joy and Adi.
|
|
@@ -503,8 +512,11 @@ Geodetic .prototype =
|
|
|
503
512
|
*/
|
|
504
513
|
};
|
|
505
514
|
|
|
506
|
-
|
|
515
|
+
const Geodetic_default_ = Geodetic;
|
|
516
|
+
;
|
|
507
517
|
|
|
518
|
+
Namespace_default().set ("standard/Geospatial/Geodetic", Geodetic_default_);
|
|
519
|
+
/* harmony default export */ const Geospatial_Geodetic = (Geodetic_default_);
|
|
508
520
|
;// CONCATENATED MODULE: ./src/standard/Geospatial/UniversalTransverseMercator.js
|
|
509
521
|
/*******************************************************************************
|
|
510
522
|
*
|
|
@@ -546,7 +558,7 @@ Geodetic .prototype =
|
|
|
546
558
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
547
559
|
*
|
|
548
560
|
* You should have received a copy of the GNU General Public License version 3
|
|
549
|
-
* along with X_ITE. If not, see <
|
|
561
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
550
562
|
* copy of the GPLv3 License.
|
|
551
563
|
*
|
|
552
564
|
* For Silvio, Joy and Adi.
|
|
@@ -712,8 +724,11 @@ UniversalTransverseMercator .prototype =
|
|
|
712
724
|
//lerp: Vector3 .lerp,
|
|
713
725
|
};
|
|
714
726
|
|
|
715
|
-
|
|
727
|
+
const UniversalTransverseMercator_default_ = UniversalTransverseMercator;
|
|
728
|
+
;
|
|
716
729
|
|
|
730
|
+
Namespace_default().set ("standard/Geospatial/UniversalTransverseMercator", UniversalTransverseMercator_default_);
|
|
731
|
+
/* harmony default export */ const Geospatial_UniversalTransverseMercator = (UniversalTransverseMercator_default_);
|
|
717
732
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Geospatial/Geocentric.js
|
|
718
733
|
/*******************************************************************************
|
|
719
734
|
*
|
|
@@ -755,7 +770,7 @@ UniversalTransverseMercator .prototype =
|
|
|
755
770
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
756
771
|
*
|
|
757
772
|
* You should have received a copy of the GNU General Public License version 3
|
|
758
|
-
* along with X_ITE. If not, see <
|
|
773
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
759
774
|
* copy of the GPLv3 License.
|
|
760
775
|
*
|
|
761
776
|
* For Silvio, Joy and Adi.
|
|
@@ -764,7 +779,6 @@ UniversalTransverseMercator .prototype =
|
|
|
764
779
|
|
|
765
780
|
|
|
766
781
|
|
|
767
|
-
|
|
768
782
|
function Geocentric () { }
|
|
769
783
|
|
|
770
784
|
Geocentric .prototype =
|
|
@@ -791,8 +805,11 @@ Geocentric .prototype =
|
|
|
791
805
|
},
|
|
792
806
|
};
|
|
793
807
|
|
|
794
|
-
|
|
808
|
+
const Geocentric_default_ = Geocentric;
|
|
809
|
+
;
|
|
795
810
|
|
|
811
|
+
Namespace_default().set ("x_ite/Browser/Geospatial/Geocentric", Geocentric_default_);
|
|
812
|
+
/* harmony default export */ const Geospatial_Geocentric = (Geocentric_default_);
|
|
796
813
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Geospatial/Geospatial.js
|
|
797
814
|
/*******************************************************************************
|
|
798
815
|
*
|
|
@@ -834,7 +851,7 @@ Geocentric .prototype =
|
|
|
834
851
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
835
852
|
*
|
|
836
853
|
* You should have received a copy of the GNU General Public License version 3
|
|
837
|
-
* along with X_ITE. If not, see <
|
|
854
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
838
855
|
* copy of the GPLv3 License.
|
|
839
856
|
*
|
|
840
857
|
* For Silvio, Joy and Adi.
|
|
@@ -998,13 +1015,16 @@ const Geospatial =
|
|
|
998
1015
|
},
|
|
999
1016
|
};
|
|
1000
1017
|
|
|
1001
|
-
|
|
1018
|
+
const Geospatial_default_ = Geospatial;
|
|
1019
|
+
;
|
|
1002
1020
|
|
|
1021
|
+
Namespace_default().set ("x_ite/Browser/Geospatial/Geospatial", Geospatial_default_);
|
|
1022
|
+
/* harmony default export */ const Geospatial_Geospatial = (Geospatial_default_);
|
|
1003
1023
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DCast\")"
|
|
1004
|
-
const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1024
|
+
const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Base/X3DCast");
|
|
1005
1025
|
var X3DCast_default = /*#__PURE__*/__webpack_require__.n(X3DCast_namespaceObject);
|
|
1006
1026
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Matrix4\")"
|
|
1007
|
-
const Matrix4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1027
|
+
const Matrix4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Numbers/Matrix4");
|
|
1008
1028
|
var Matrix4_default = /*#__PURE__*/__webpack_require__.n(Matrix4_namespaceObject);
|
|
1009
1029
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/X3DGeospatialObject.js
|
|
1010
1030
|
/*******************************************************************************
|
|
@@ -1047,7 +1067,7 @@ var Matrix4_default = /*#__PURE__*/__webpack_require__.n(Matrix4_namespaceObject
|
|
|
1047
1067
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
1048
1068
|
*
|
|
1049
1069
|
* You should have received a copy of the GNU General Public License version 3
|
|
1050
|
-
* along with X_ITE. If not, see <
|
|
1070
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
1051
1071
|
* copy of the GPLv3 License.
|
|
1052
1072
|
*
|
|
1053
1073
|
* For Silvio, Joy and Adi.
|
|
@@ -1265,10 +1285,13 @@ function getStandardLocationMatrix (geoPoint, result)
|
|
|
1265
1285
|
t .x, t .y, t .z, 1);
|
|
1266
1286
|
}
|
|
1267
1287
|
|
|
1268
|
-
|
|
1288
|
+
const X3DGeospatialObject_default_ = X3DGeospatialObject;
|
|
1289
|
+
;
|
|
1269
1290
|
|
|
1291
|
+
Namespace_default().set ("x_ite/Components/Geospatial/X3DGeospatialObject", X3DGeospatialObject_default_);
|
|
1292
|
+
/* harmony default export */ const Geospatial_X3DGeospatialObject = (X3DGeospatialObject_default_);
|
|
1270
1293
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Geometry/Triangle3\")"
|
|
1271
|
-
const Triangle3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1294
|
+
const Triangle3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Geometry/Triangle3");
|
|
1272
1295
|
var Triangle3_default = /*#__PURE__*/__webpack_require__.n(Triangle3_namespaceObject);
|
|
1273
1296
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoCoordinate.js
|
|
1274
1297
|
/*******************************************************************************
|
|
@@ -1311,7 +1334,7 @@ var Triangle3_default = /*#__PURE__*/__webpack_require__.n(Triangle3_namespaceOb
|
|
|
1311
1334
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
1312
1335
|
*
|
|
1313
1336
|
* You should have received a copy of the GNU General Public License version 3
|
|
1314
|
-
* along with X_ITE. If not, see <
|
|
1337
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
1315
1338
|
* copy of the GPLv3 License.
|
|
1316
1339
|
*
|
|
1317
1340
|
* For Silvio, Joy and Adi.
|
|
@@ -1493,13 +1516,16 @@ GeoCoordinate .prototype = Object .assign (Object .create ((X3DCoordinateNode_de
|
|
|
1493
1516
|
},
|
|
1494
1517
|
});
|
|
1495
1518
|
|
|
1496
|
-
|
|
1519
|
+
const GeoCoordinate_default_ = GeoCoordinate;
|
|
1520
|
+
;
|
|
1497
1521
|
|
|
1522
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoCoordinate", GeoCoordinate_default_);
|
|
1523
|
+
/* harmony default export */ const Geospatial_GeoCoordinate = (GeoCoordinate_default_);
|
|
1498
1524
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Rendering/X3DGeometryNode\")"
|
|
1499
|
-
const X3DGeometryNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1525
|
+
const X3DGeometryNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Rendering/X3DGeometryNode");
|
|
1500
1526
|
var X3DGeometryNode_default = /*#__PURE__*/__webpack_require__.n(X3DGeometryNode_namespaceObject);
|
|
1501
1527
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Vector2\")"
|
|
1502
|
-
const Vector2_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1528
|
+
const Vector2_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Numbers/Vector2");
|
|
1503
1529
|
var Vector2_default = /*#__PURE__*/__webpack_require__.n(Vector2_namespaceObject);
|
|
1504
1530
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoElevationGrid.js
|
|
1505
1531
|
/*******************************************************************************
|
|
@@ -1542,7 +1568,7 @@ var Vector2_default = /*#__PURE__*/__webpack_require__.n(Vector2_namespaceObject
|
|
|
1542
1568
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
1543
1569
|
*
|
|
1544
1570
|
* You should have received a copy of the GNU General Public License version 3
|
|
1545
|
-
* along with X_ITE. If not, see <
|
|
1571
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
1546
1572
|
* copy of the GPLv3 License.
|
|
1547
1573
|
*
|
|
1548
1574
|
* For Silvio, Joy and Adi.
|
|
@@ -1933,25 +1959,28 @@ GeoElevationGrid .prototype = Object .assign (Object .create ((X3DGeometryNode_d
|
|
|
1933
1959
|
},
|
|
1934
1960
|
});
|
|
1935
1961
|
|
|
1936
|
-
|
|
1962
|
+
const GeoElevationGrid_default_ = GeoElevationGrid;
|
|
1963
|
+
;
|
|
1937
1964
|
|
|
1965
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoElevationGrid", GeoElevationGrid_default_);
|
|
1966
|
+
/* harmony default export */ const Geospatial_GeoElevationGrid = (GeoElevationGrid_default_);
|
|
1938
1967
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DChildNode\")"
|
|
1939
|
-
const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1968
|
+
const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Core/X3DChildNode");
|
|
1940
1969
|
var X3DChildNode_default = /*#__PURE__*/__webpack_require__.n(X3DChildNode_namespaceObject);
|
|
1941
1970
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DBoundedObject\")"
|
|
1942
|
-
const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1971
|
+
const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Grouping/X3DBoundedObject");
|
|
1943
1972
|
var X3DBoundedObject_default = /*#__PURE__*/__webpack_require__.n(X3DBoundedObject_namespaceObject);
|
|
1944
1973
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Rendering/TraverseType\")"
|
|
1945
|
-
const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1974
|
+
const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Rendering/TraverseType");
|
|
1946
1975
|
var TraverseType_default = /*#__PURE__*/__webpack_require__.n(TraverseType_namespaceObject);
|
|
1947
1976
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/Group\")"
|
|
1948
|
-
const Group_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1977
|
+
const Group_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Grouping/Group");
|
|
1949
1978
|
var Group_default = /*#__PURE__*/__webpack_require__.n(Group_namespaceObject);
|
|
1950
1979
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/Inline\")"
|
|
1951
|
-
const Inline_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1980
|
+
const Inline_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Networking/Inline");
|
|
1952
1981
|
var Inline_default = /*#__PURE__*/__webpack_require__.n(Inline_namespaceObject);
|
|
1953
1982
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Geometry/Box3\")"
|
|
1954
|
-
const Box3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
1983
|
+
const Box3_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Geometry/Box3");
|
|
1955
1984
|
var Box3_default = /*#__PURE__*/__webpack_require__.n(Box3_namespaceObject);
|
|
1956
1985
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoLOD.js
|
|
1957
1986
|
/*******************************************************************************
|
|
@@ -1994,7 +2023,7 @@ var Box3_default = /*#__PURE__*/__webpack_require__.n(Box3_namespaceObject);
|
|
|
1994
2023
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
1995
2024
|
*
|
|
1996
2025
|
* You should have received a copy of the GNU General Public License version 3
|
|
1997
|
-
* along with X_ITE. If not, see <
|
|
2026
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
1998
2027
|
* copy of the GPLv3 License.
|
|
1999
2028
|
*
|
|
2000
2029
|
* For Silvio, Joy and Adi.
|
|
@@ -2404,10 +2433,13 @@ GeoLOD .prototype = Object .assign (Object .create ((X3DChildNode_default()).pro
|
|
|
2404
2433
|
},
|
|
2405
2434
|
});
|
|
2406
2435
|
|
|
2407
|
-
|
|
2436
|
+
const GeoLOD_default_ = GeoLOD;
|
|
2437
|
+
;
|
|
2408
2438
|
|
|
2439
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoLOD", GeoLOD_default_);
|
|
2440
|
+
/* harmony default export */ const Geospatial_GeoLOD = (GeoLOD_default_);
|
|
2409
2441
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DTransformMatrix3DNode\")"
|
|
2410
|
-
const X3DTransformMatrix3DNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
2442
|
+
const X3DTransformMatrix3DNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Grouping/X3DTransformMatrix3DNode");
|
|
2411
2443
|
var X3DTransformMatrix3DNode_default = /*#__PURE__*/__webpack_require__.n(X3DTransformMatrix3DNode_namespaceObject);
|
|
2412
2444
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoLocation.js
|
|
2413
2445
|
/*******************************************************************************
|
|
@@ -2450,7 +2482,7 @@ var X3DTransformMatrix3DNode_default = /*#__PURE__*/__webpack_require__.n(X3DTra
|
|
|
2450
2482
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
2451
2483
|
*
|
|
2452
2484
|
* You should have received a copy of the GNU General Public License version 3
|
|
2453
|
-
* along with X_ITE. If not, see <
|
|
2485
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
2454
2486
|
* copy of the GPLv3 License.
|
|
2455
2487
|
*
|
|
2456
2488
|
* For Silvio, Joy and Adi.
|
|
@@ -2524,13 +2556,16 @@ GeoLocation .prototype = Object .assign (Object .create ((X3DTransformMatrix3DNo
|
|
|
2524
2556
|
},
|
|
2525
2557
|
});
|
|
2526
2558
|
|
|
2527
|
-
|
|
2559
|
+
const GeoLocation_default_ = GeoLocation;
|
|
2560
|
+
;
|
|
2528
2561
|
|
|
2562
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoLocation", GeoLocation_default_);
|
|
2563
|
+
/* harmony default export */ const Geospatial_GeoLocation = (GeoLocation_default_);
|
|
2529
2564
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DInfoNode\")"
|
|
2530
|
-
const X3DInfoNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
2565
|
+
const X3DInfoNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Core/X3DInfoNode");
|
|
2531
2566
|
var X3DInfoNode_default = /*#__PURE__*/__webpack_require__.n(X3DInfoNode_namespaceObject);
|
|
2532
2567
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/X3DUrlObject\")"
|
|
2533
|
-
const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
2568
|
+
const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Networking/X3DUrlObject");
|
|
2534
2569
|
var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_namespaceObject);
|
|
2535
2570
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoMetadata.js
|
|
2536
2571
|
/*******************************************************************************
|
|
@@ -2573,7 +2608,7 @@ var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_names
|
|
|
2573
2608
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
2574
2609
|
*
|
|
2575
2610
|
* You should have received a copy of the GNU General Public License version 3
|
|
2576
|
-
* along with X_ITE. If not, see <
|
|
2611
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
2577
2612
|
* copy of the GPLv3 License.
|
|
2578
2613
|
*
|
|
2579
2614
|
* For Silvio, Joy and Adi.
|
|
@@ -2640,10 +2675,13 @@ GeoMetadata .prototype = Object .assign (Object .create ((X3DInfoNode_default())
|
|
|
2640
2675
|
},
|
|
2641
2676
|
});
|
|
2642
2677
|
|
|
2643
|
-
|
|
2678
|
+
const GeoMetadata_default_ = GeoMetadata;
|
|
2679
|
+
;
|
|
2644
2680
|
|
|
2681
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoMetadata", GeoMetadata_default_);
|
|
2682
|
+
/* harmony default export */ const Geospatial_GeoMetadata = (GeoMetadata_default_);
|
|
2645
2683
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DNode\")"
|
|
2646
|
-
const X3DNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
2684
|
+
const X3DNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Core/X3DNode");
|
|
2647
2685
|
var X3DNode_default = /*#__PURE__*/__webpack_require__.n(X3DNode_namespaceObject);
|
|
2648
2686
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoOrigin.js
|
|
2649
2687
|
/*******************************************************************************
|
|
@@ -2686,7 +2724,7 @@ var X3DNode_default = /*#__PURE__*/__webpack_require__.n(X3DNode_namespaceObject
|
|
|
2686
2724
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
2687
2725
|
*
|
|
2688
2726
|
* You should have received a copy of the GNU General Public License version 3
|
|
2689
|
-
* along with X_ITE. If not, see <
|
|
2727
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
2690
2728
|
* copy of the GPLv3 License.
|
|
2691
2729
|
*
|
|
2692
2730
|
* For Silvio, Joy and Adi.
|
|
@@ -2748,10 +2786,13 @@ GeoOrigin .prototype = Object .assign (Object .create ((X3DNode_default()).proto
|
|
|
2748
2786
|
},
|
|
2749
2787
|
});
|
|
2750
2788
|
|
|
2751
|
-
|
|
2789
|
+
const GeoOrigin_default_ = GeoOrigin;
|
|
2790
|
+
;
|
|
2752
2791
|
|
|
2792
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoOrigin", GeoOrigin_default_);
|
|
2793
|
+
/* harmony default export */ const Geospatial_GeoOrigin = (GeoOrigin_default_);
|
|
2753
2794
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Interpolation/X3DInterpolatorNode\")"
|
|
2754
|
-
const X3DInterpolatorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
2795
|
+
const X3DInterpolatorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Interpolation/X3DInterpolatorNode");
|
|
2755
2796
|
var X3DInterpolatorNode_default = /*#__PURE__*/__webpack_require__.n(X3DInterpolatorNode_namespaceObject);
|
|
2756
2797
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoPositionInterpolator.js
|
|
2757
2798
|
/*******************************************************************************
|
|
@@ -2794,7 +2835,7 @@ var X3DInterpolatorNode_default = /*#__PURE__*/__webpack_require__.n(X3DInterpol
|
|
|
2794
2835
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
2795
2836
|
*
|
|
2796
2837
|
* You should have received a copy of the GNU General Public License version 3
|
|
2797
|
-
* along with X_ITE. If not, see <
|
|
2838
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
2798
2839
|
* copy of the GPLv3 License.
|
|
2799
2840
|
*
|
|
2800
2841
|
* For Silvio, Joy and Adi.
|
|
@@ -2836,10 +2877,6 @@ GeoPositionInterpolator .prototype = Object .assign (Object .create ((X3DInterpo
|
|
|
2836
2877
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "value_changed", new (Fields_default()).SFVec3d ()),
|
|
2837
2878
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "geovalue_changed", new (Fields_default()).SFVec3d ()),
|
|
2838
2879
|
]),
|
|
2839
|
-
keyValue0: new (Vector3_default()) (0, 0, 0),
|
|
2840
|
-
keyValue1: new (Vector3_default()) (0, 0, 0),
|
|
2841
|
-
geovalue: new (Vector3_default()) (0, 0, 0),
|
|
2842
|
-
value: new (Vector3_default()) (0, 0, 0),
|
|
2843
2880
|
getTypeName: function ()
|
|
2844
2881
|
{
|
|
2845
2882
|
return "GeoPositionInterpolator";
|
|
@@ -2866,23 +2903,31 @@ GeoPositionInterpolator .prototype = Object .assign (Object .create ((X3DInterpo
|
|
|
2866
2903
|
},
|
|
2867
2904
|
set_keyValue__: function ()
|
|
2868
2905
|
{
|
|
2869
|
-
|
|
2906
|
+
const
|
|
2870
2907
|
key = this ._key,
|
|
2871
2908
|
keyValue = this ._keyValue;
|
|
2872
2909
|
|
|
2873
2910
|
if (keyValue .length < key .length)
|
|
2874
2911
|
keyValue .resize (key .length, keyValue .length ? keyValue [keyValue .length - 1] : new (Fields_default()).SFVec3f ());
|
|
2875
2912
|
},
|
|
2876
|
-
interpolate: function (
|
|
2913
|
+
interpolate: (function ()
|
|
2877
2914
|
{
|
|
2878
|
-
|
|
2879
|
-
|
|
2915
|
+
const
|
|
2916
|
+
keyValue0 = new (Vector3_default()) (0, 0, 0),
|
|
2917
|
+
keyValue1 = new (Vector3_default()) (0, 0, 0),
|
|
2918
|
+
geovalue = new (Vector3_default()) (0, 0, 0);
|
|
2880
2919
|
|
|
2881
|
-
|
|
2920
|
+
return function (index0, index1, weight)
|
|
2921
|
+
{
|
|
2922
|
+
this .getCoord (this ._keyValue [index0] .getValue (), keyValue0);
|
|
2923
|
+
this .getCoord (this ._keyValue [index1] .getValue (), keyValue1);
|
|
2882
2924
|
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2925
|
+
const coord = this .geocentric .slerp (keyValue0, keyValue1, weight);
|
|
2926
|
+
|
|
2927
|
+
this ._geovalue_changed = this .getGeoCoord (coord, geovalue);
|
|
2928
|
+
this ._value_changed = coord;
|
|
2929
|
+
};
|
|
2930
|
+
})(),
|
|
2886
2931
|
dispose: function ()
|
|
2887
2932
|
{
|
|
2888
2933
|
Geospatial_X3DGeospatialObject.prototype.dispose.call (this);
|
|
@@ -2890,13 +2935,16 @@ GeoPositionInterpolator .prototype = Object .assign (Object .create ((X3DInterpo
|
|
|
2890
2935
|
},
|
|
2891
2936
|
});
|
|
2892
2937
|
|
|
2893
|
-
|
|
2938
|
+
const GeoPositionInterpolator_default_ = GeoPositionInterpolator;
|
|
2939
|
+
;
|
|
2894
2940
|
|
|
2941
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoPositionInterpolator", GeoPositionInterpolator_default_);
|
|
2942
|
+
/* harmony default export */ const Geospatial_GeoPositionInterpolator = (GeoPositionInterpolator_default_);
|
|
2895
2943
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/EnvironmentalSensor/X3DEnvironmentalSensorNode\")"
|
|
2896
|
-
const X3DEnvironmentalSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
2944
|
+
const X3DEnvironmentalSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/EnvironmentalSensor/X3DEnvironmentalSensorNode");
|
|
2897
2945
|
var X3DEnvironmentalSensorNode_default = /*#__PURE__*/__webpack_require__.n(X3DEnvironmentalSensorNode_namespaceObject);
|
|
2898
2946
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/EnvironmentalSensor/ProximitySensor\")"
|
|
2899
|
-
const ProximitySensor_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
2947
|
+
const ProximitySensor_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/EnvironmentalSensor/ProximitySensor");
|
|
2900
2948
|
var ProximitySensor_default = /*#__PURE__*/__webpack_require__.n(ProximitySensor_namespaceObject);
|
|
2901
2949
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoProximitySensor.js
|
|
2902
2950
|
/*******************************************************************************
|
|
@@ -2939,7 +2987,7 @@ var ProximitySensor_default = /*#__PURE__*/__webpack_require__.n(ProximitySensor
|
|
|
2939
2987
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
2940
2988
|
*
|
|
2941
2989
|
* You should have received a copy of the GNU General Public License version 3
|
|
2942
|
-
* along with X_ITE. If not, see <
|
|
2990
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
2943
2991
|
* copy of the GPLv3 License.
|
|
2944
2992
|
*
|
|
2945
2993
|
* For Silvio, Joy and Adi.
|
|
@@ -3046,10 +3094,13 @@ GeoProximitySensor .prototype = Object .assign (Object .create ((X3DEnvironmenta
|
|
|
3046
3094
|
},
|
|
3047
3095
|
});
|
|
3048
3096
|
|
|
3049
|
-
|
|
3097
|
+
const GeoProximitySensor_default_ = GeoProximitySensor;
|
|
3098
|
+
;
|
|
3050
3099
|
|
|
3100
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoProximitySensor", GeoProximitySensor_default_);
|
|
3101
|
+
/* harmony default export */ const Geospatial_GeoProximitySensor = (GeoProximitySensor_default_);
|
|
3051
3102
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/PointingDeviceSensor/X3DTouchSensorNode\")"
|
|
3052
|
-
const X3DTouchSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
3103
|
+
const X3DTouchSensorNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/PointingDeviceSensor/X3DTouchSensorNode");
|
|
3053
3104
|
var X3DTouchSensorNode_default = /*#__PURE__*/__webpack_require__.n(X3DTouchSensorNode_namespaceObject);
|
|
3054
3105
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoTouchSensor.js
|
|
3055
3106
|
/*******************************************************************************
|
|
@@ -3092,7 +3143,7 @@ var X3DTouchSensorNode_default = /*#__PURE__*/__webpack_require__.n(X3DTouchSens
|
|
|
3092
3143
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
3093
3144
|
*
|
|
3094
3145
|
* You should have received a copy of the GNU General Public License version 3
|
|
3095
|
-
* along with X_ITE. If not, see <
|
|
3146
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
3096
3147
|
* copy of the GPLv3 License.
|
|
3097
3148
|
*
|
|
3098
3149
|
* For Silvio, Joy and Adi.
|
|
@@ -3180,8 +3231,11 @@ GeoTouchSensor .prototype = Object .assign (Object .create ((X3DTouchSensorNode_
|
|
|
3180
3231
|
},
|
|
3181
3232
|
});
|
|
3182
3233
|
|
|
3183
|
-
|
|
3234
|
+
const GeoTouchSensor_default_ = GeoTouchSensor;
|
|
3235
|
+
;
|
|
3184
3236
|
|
|
3237
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoTouchSensor", GeoTouchSensor_default_);
|
|
3238
|
+
/* harmony default export */ const Geospatial_GeoTouchSensor = (GeoTouchSensor_default_);
|
|
3185
3239
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoTransform.js
|
|
3186
3240
|
/*******************************************************************************
|
|
3187
3241
|
*
|
|
@@ -3223,7 +3277,7 @@ GeoTouchSensor .prototype = Object .assign (Object .create ((X3DTouchSensorNode_
|
|
|
3223
3277
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
3224
3278
|
*
|
|
3225
3279
|
* You should have received a copy of the GNU General Public License version 3
|
|
3226
|
-
* along with X_ITE. If not, see <
|
|
3280
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
3227
3281
|
* copy of the GPLv3 License.
|
|
3228
3282
|
*
|
|
3229
3283
|
* For Silvio, Joy and Adi.
|
|
@@ -3312,22 +3366,22 @@ GeoTransform .prototype = Object .assign (Object .create ((X3DTransformMatrix3DN
|
|
|
3312
3366
|
},
|
|
3313
3367
|
});
|
|
3314
3368
|
|
|
3315
|
-
|
|
3369
|
+
const GeoTransform_default_ = GeoTransform;
|
|
3370
|
+
;
|
|
3316
3371
|
|
|
3372
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoTransform", GeoTransform_default_);
|
|
3373
|
+
/* harmony default export */ const Geospatial_GeoTransform = (GeoTransform_default_);
|
|
3317
3374
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Navigation/X3DViewpointNode\")"
|
|
3318
|
-
const X3DViewpointNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
3375
|
+
const X3DViewpointNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Navigation/X3DViewpointNode");
|
|
3319
3376
|
var X3DViewpointNode_default = /*#__PURE__*/__webpack_require__.n(X3DViewpointNode_namespaceObject);
|
|
3320
|
-
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/
|
|
3321
|
-
const
|
|
3322
|
-
var
|
|
3377
|
+
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Navigation/Viewpoint\")"
|
|
3378
|
+
const Viewpoint_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Navigation/Viewpoint");
|
|
3379
|
+
var Viewpoint_default = /*#__PURE__*/__webpack_require__.n(Viewpoint_namespaceObject);
|
|
3323
3380
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Navigation/NavigationInfo\")"
|
|
3324
|
-
const NavigationInfo_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
3381
|
+
const NavigationInfo_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("x_ite/Components/Navigation/NavigationInfo");
|
|
3325
3382
|
var NavigationInfo_default = /*#__PURE__*/__webpack_require__.n(NavigationInfo_namespaceObject);
|
|
3326
|
-
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Geometry/Camera\")"
|
|
3327
|
-
const Camera_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.0.0")] .require ("standard/Math/Geometry/Camera");
|
|
3328
|
-
var Camera_default = /*#__PURE__*/__webpack_require__.n(Camera_namespaceObject);
|
|
3329
3383
|
;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Rotation4\")"
|
|
3330
|
-
const Rotation4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.
|
|
3384
|
+
const Rotation4_namespaceObject = window [Symbol .for ("X_ITE.X3D-8.3.0")] .require ("standard/Math/Numbers/Rotation4");
|
|
3331
3385
|
var Rotation4_default = /*#__PURE__*/__webpack_require__.n(Rotation4_namespaceObject);
|
|
3332
3386
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Geospatial/GeoViewpoint.js
|
|
3333
3387
|
/*******************************************************************************
|
|
@@ -3370,7 +3424,7 @@ var Rotation4_default = /*#__PURE__*/__webpack_require__.n(Rotation4_namespaceOb
|
|
|
3370
3424
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
3371
3425
|
*
|
|
3372
3426
|
* You should have received a copy of the GNU General Public License version 3
|
|
3373
|
-
* along with X_ITE. If not, see <
|
|
3427
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
3374
3428
|
* copy of the GPLv3 License.
|
|
3375
3429
|
*
|
|
3376
3430
|
* For Silvio, Joy and Adi.
|
|
@@ -3389,16 +3443,6 @@ var Rotation4_default = /*#__PURE__*/__webpack_require__.n(Rotation4_namespaceOb
|
|
|
3389
3443
|
|
|
3390
3444
|
|
|
3391
3445
|
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
function traverse (type, renderObject)
|
|
3396
|
-
{
|
|
3397
|
-
X3DViewpointNode_default().prototype.traverse.call (this, type, renderObject);
|
|
3398
|
-
|
|
3399
|
-
this .navigationInfoNode .traverse (type, renderObject);
|
|
3400
|
-
}
|
|
3401
|
-
|
|
3402
3446
|
function GeoViewpoint (executionContext)
|
|
3403
3447
|
{
|
|
3404
3448
|
X3DViewpointNode_default().call (this, executionContext);
|
|
@@ -3409,20 +3453,12 @@ function GeoViewpoint (executionContext)
|
|
|
3409
3453
|
this ._centerOfRotation .setUnit ("length");
|
|
3410
3454
|
this ._fieldOfView .setUnit ("angle");
|
|
3411
3455
|
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
this .projectionMatrix = new (Matrix4_default()) ();
|
|
3415
|
-
this .elevation = 0;
|
|
3456
|
+
if (executionContext .getSpecificationVersion () <= 3.2)
|
|
3457
|
+
this .traverse = traverse;
|
|
3416
3458
|
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
case "3.0":
|
|
3421
|
-
case "3.1":
|
|
3422
|
-
case "3.2":
|
|
3423
|
-
this .traverse = traverse;
|
|
3424
|
-
break;
|
|
3425
|
-
}
|
|
3459
|
+
this .geoNavigationInfoNode = new (NavigationInfo_default()) (executionContext);
|
|
3460
|
+
this .projectionMatrix = new (Matrix4_default()) ();
|
|
3461
|
+
this .elevation = 0;
|
|
3426
3462
|
}
|
|
3427
3463
|
|
|
3428
3464
|
GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_default()).prototype),
|
|
@@ -3439,6 +3475,9 @@ GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_defa
|
|
|
3439
3475
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "orientation", new (Fields_default()).SFRotation ()),
|
|
3440
3476
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "centerOfRotation", new (Fields_default()).SFVec3d ()),
|
|
3441
3477
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "fieldOfView", new (Fields_default()).SFFloat (0.7854)),
|
|
3478
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "nearDistance", new (Fields_default()).SFFloat (-1)),
|
|
3479
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "farDistance", new (Fields_default()).SFFloat (-1)),
|
|
3480
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "viewAll", new (Fields_default()).SFBool (false)),
|
|
3442
3481
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "jump", new (Fields_default()).SFBool (true)),
|
|
3443
3482
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "retainUserOffsets", new (Fields_default()).SFBool ()),
|
|
3444
3483
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "navType", new (Fields_default()).MFString ("EXAMINE", "ANY")),
|
|
@@ -3446,6 +3485,7 @@ GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_defa
|
|
|
3446
3485
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).initializeOnly, "speedFactor", new (Fields_default()).SFFloat (1)),
|
|
3447
3486
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "isBound", new (Fields_default()).SFBool ()),
|
|
3448
3487
|
new (X3DFieldDefinition_default()) ((X3DConstants_default()).outputOnly, "bindTime", new (Fields_default()).SFTime ()),
|
|
3488
|
+
new (X3DFieldDefinition_default()) ((X3DConstants_default()).inputOutput, "navigationInfo", new (Fields_default()).SFNode ()),
|
|
3449
3489
|
]),
|
|
3450
3490
|
getTypeName: function ()
|
|
3451
3491
|
{
|
|
@@ -3474,38 +3514,20 @@ GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_defa
|
|
|
3474
3514
|
|
|
3475
3515
|
this ._position .addInterest ("set_position__", this);
|
|
3476
3516
|
this ._positionOffset .addInterest ("set_position__", this);
|
|
3477
|
-
this ._navType .addFieldInterest (this .
|
|
3478
|
-
this ._headlight .addFieldInterest (this .
|
|
3517
|
+
this ._navType .addFieldInterest (this .geoNavigationInfoNode ._type);
|
|
3518
|
+
this ._headlight .addFieldInterest (this .geoNavigationInfoNode ._headlight);
|
|
3479
3519
|
|
|
3480
|
-
this .
|
|
3520
|
+
this .geoNavigationInfoNode .setup ();
|
|
3481
3521
|
|
|
3482
3522
|
this .set_position__ ();
|
|
3483
|
-
|
|
3484
|
-
// Setup interpolators
|
|
3485
|
-
|
|
3486
|
-
this .fieldOfViewInterpolator ._key = [ 0, 1 ];
|
|
3487
|
-
this .fieldOfViewInterpolator .setup ();
|
|
3488
|
-
|
|
3489
|
-
this .getEaseInEaseOut () ._modifiedFraction_changed .addFieldInterest (this .fieldOfViewInterpolator ._set_fraction);
|
|
3490
|
-
this .fieldOfViewInterpolator ._value_changed .addFieldInterest (this ._fieldOfViewScale);
|
|
3491
|
-
},
|
|
3492
|
-
setInterpolators: function (fromViewpointNode, toViewpointNode)
|
|
3493
|
-
{
|
|
3494
|
-
if (fromViewpointNode .getType () .includes ((X3DConstants_default()).Viewpoint) || fromViewpointNode .getType () .includes ((X3DConstants_default()).GeoViewpoint))
|
|
3495
|
-
{
|
|
3496
|
-
const scale = fromViewpointNode .getFieldOfView () / toViewpointNode .getFieldOfView ();
|
|
3497
|
-
|
|
3498
|
-
this .fieldOfViewInterpolator ._keyValue = new (Fields_default()).MFFloat (scale, toViewpointNode ._fieldOfViewScale .getValue ());
|
|
3499
|
-
|
|
3500
|
-
this ._fieldOfViewScale = scale;
|
|
3501
|
-
}
|
|
3502
|
-
else
|
|
3503
|
-
{
|
|
3504
|
-
this .fieldOfViewInterpolator ._keyValue = new (Fields_default()).MFFloat (toViewpointNode ._fieldOfViewScale .getValue (), toViewpointNode ._fieldOfViewScale .getValue ());
|
|
3505
|
-
|
|
3506
|
-
this ._fieldOfViewScale = toViewpointNode ._fieldOfViewScale .getValue ();
|
|
3507
|
-
}
|
|
3508
3523
|
},
|
|
3524
|
+
getRelativeTransformation: (Viewpoint_default()).prototype.getRelativeTransformation,
|
|
3525
|
+
setInterpolators: (Viewpoint_default()).prototype.setInterpolators,
|
|
3526
|
+
getFieldOfView: (Viewpoint_default()).prototype.getFieldOfView,
|
|
3527
|
+
getScreenScale: (Viewpoint_default()).prototype.getScreenScale,
|
|
3528
|
+
getViewportSize: (Viewpoint_default()).prototype.getViewportSize,
|
|
3529
|
+
getLookAtDistance: (Viewpoint_default()).prototype.getLookAtDistance,
|
|
3530
|
+
getProjectionMatrixWithLimits: (Viewpoint_default()).prototype.getProjectionMatrixWithLimits,
|
|
3509
3531
|
getLogarithmicDepthBuffer: function ()
|
|
3510
3532
|
{
|
|
3511
3533
|
return this .logarithmicDepthBuffer;
|
|
@@ -3582,12 +3604,6 @@ GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_defa
|
|
|
3582
3604
|
return this .getCoord (this ._centerOfRotation .getValue (), centerOfRotation);
|
|
3583
3605
|
};
|
|
3584
3606
|
})(),
|
|
3585
|
-
getFieldOfView: function ()
|
|
3586
|
-
{
|
|
3587
|
-
const fov = this ._fieldOfView * this ._fieldOfViewScale;
|
|
3588
|
-
|
|
3589
|
-
return fov > 0 && fov < Math .PI ? fov : Math .PI / 4;
|
|
3590
|
-
},
|
|
3591
3607
|
getMaxFarValue: function ()
|
|
3592
3608
|
{
|
|
3593
3609
|
return 1e10;
|
|
@@ -3598,60 +3614,24 @@ GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_defa
|
|
|
3598
3614
|
position = new (Vector3_default()) (0, 0, 0),
|
|
3599
3615
|
upVector = new (Vector3_default()) (0, 0, 0);
|
|
3600
3616
|
|
|
3601
|
-
return function ()
|
|
3617
|
+
return function (dynamic = false)
|
|
3602
3618
|
{
|
|
3603
|
-
this .
|
|
3619
|
+
if (! dynamic || this .getUserPosition () .magnitude () < 6.5e6)
|
|
3620
|
+
{
|
|
3621
|
+
this .getCoord (this ._position .getValue (), position);
|
|
3604
3622
|
|
|
3605
|
-
|
|
3623
|
+
return this .getGeoUpVector (position .add (this ._positionOffset .getValue ()), upVector);
|
|
3624
|
+
}
|
|
3625
|
+
else
|
|
3626
|
+
{
|
|
3627
|
+
return upVector .assign ((Vector3_default()).zAxis);
|
|
3628
|
+
}
|
|
3606
3629
|
};
|
|
3607
3630
|
})(),
|
|
3608
3631
|
getSpeedFactor: function ()
|
|
3609
3632
|
{
|
|
3610
3633
|
return (Math .max (this .elevation, 0.0) + 10) / 10 * this ._speedFactor .getValue ();
|
|
3611
3634
|
},
|
|
3612
|
-
getScreenScale: function (point, viewport, screenScale)
|
|
3613
|
-
{
|
|
3614
|
-
// Returns the screen scale in meter/pixel for on pixel.
|
|
3615
|
-
|
|
3616
|
-
const
|
|
3617
|
-
width = viewport [2],
|
|
3618
|
-
height = viewport [3];
|
|
3619
|
-
|
|
3620
|
-
let size = Math .abs (point .z) * Math .tan (this .getFieldOfView () / 2) * 2;
|
|
3621
|
-
|
|
3622
|
-
if (width > height)
|
|
3623
|
-
size /= height;
|
|
3624
|
-
else
|
|
3625
|
-
size /= width;
|
|
3626
|
-
|
|
3627
|
-
return screenScale .set (size, size, size);
|
|
3628
|
-
},
|
|
3629
|
-
getViewportSize: (function ()
|
|
3630
|
-
{
|
|
3631
|
-
const viewportSize = new (Vector2_default()) (0, 0);
|
|
3632
|
-
|
|
3633
|
-
return function (viewport, nearValue)
|
|
3634
|
-
{
|
|
3635
|
-
const
|
|
3636
|
-
width = viewport [2],
|
|
3637
|
-
height = viewport [3],
|
|
3638
|
-
size = nearValue * Math .tan (this .getFieldOfView () / 2) * 2,
|
|
3639
|
-
aspect = width / height;
|
|
3640
|
-
|
|
3641
|
-
if (aspect > 1)
|
|
3642
|
-
return viewportSize .set (size * aspect, size);
|
|
3643
|
-
|
|
3644
|
-
return viewportSize .set (size, size / aspect);
|
|
3645
|
-
};
|
|
3646
|
-
})(),
|
|
3647
|
-
getLookAtDistance: function (bbox)
|
|
3648
|
-
{
|
|
3649
|
-
return (bbox .size .magnitude () / 2) / Math .tan (this .getFieldOfView () / 2);
|
|
3650
|
-
},
|
|
3651
|
-
getProjectionMatrixWithLimits: function (nearValue, farValue, viewport)
|
|
3652
|
-
{
|
|
3653
|
-
return Camera_default().perspective (this .getFieldOfView (), nearValue, farValue, viewport [2], viewport [3], this .projectionMatrix);
|
|
3654
|
-
},
|
|
3655
3635
|
dispose: function ()
|
|
3656
3636
|
{
|
|
3657
3637
|
Geospatial_X3DGeospatialObject.prototype.dispose.call (this);
|
|
@@ -3659,8 +3639,18 @@ GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_defa
|
|
|
3659
3639
|
},
|
|
3660
3640
|
});
|
|
3661
3641
|
|
|
3662
|
-
|
|
3642
|
+
function traverse (type, renderObject)
|
|
3643
|
+
{
|
|
3644
|
+
X3DViewpointNode_default().prototype.traverse.call (this, type, renderObject);
|
|
3645
|
+
|
|
3646
|
+
this .geoNavigationInfoNode .traverse (type, renderObject);
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3649
|
+
const GeoViewpoint_default_ = GeoViewpoint;
|
|
3650
|
+
;
|
|
3663
3651
|
|
|
3652
|
+
Namespace_default().set ("x_ite/Components/Geospatial/GeoViewpoint", GeoViewpoint_default_);
|
|
3653
|
+
/* harmony default export */ const Geospatial_GeoViewpoint = (GeoViewpoint_default_);
|
|
3664
3654
|
;// CONCATENATED MODULE: ./src/assets/components/Geospatial.js
|
|
3665
3655
|
/*******************************************************************************
|
|
3666
3656
|
*
|
|
@@ -3702,7 +3692,7 @@ GeoViewpoint .prototype = Object .assign (Object .create ((X3DViewpointNode_defa
|
|
|
3702
3692
|
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
3703
3693
|
*
|
|
3704
3694
|
* You should have received a copy of the GNU General Public License version 3
|
|
3705
|
-
* along with X_ITE. If not, see <
|
|
3695
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
3706
3696
|
* copy of the GPLv3 License.
|
|
3707
3697
|
*
|
|
3708
3698
|
* For Silvio, Joy and Adi.
|
|
@@ -3745,7 +3735,10 @@ Components_default().addComponent ({
|
|
|
3745
3735
|
},
|
|
3746
3736
|
});
|
|
3747
3737
|
|
|
3748
|
-
|
|
3738
|
+
const components_Geospatial_default_ = undefined;
|
|
3739
|
+
;
|
|
3749
3740
|
|
|
3741
|
+
Namespace_default().set ("assets/components/Geospatial", components_Geospatial_default_);
|
|
3742
|
+
/* harmony default export */ const components_Geospatial = ((/* unused pure expression or super */ null && (components_Geospatial_default_)));
|
|
3750
3743
|
/******/ })()
|
|
3751
3744
|
;
|