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,85 +1,88 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
title: What's New
|
|
3
|
+
date: 2022-11-28
|
|
4
|
+
nav: main
|
|
5
|
+
categories: []
|
|
6
|
+
tags: [new, releases]
|
|
6
7
|
---
|
|
7
|
-
|
|
8
|
+
## X_ITE v8.3.0 Released
|
|
9
|
+
|
|
10
|
+
*Leipzig, 14st December 2022:* We right now released a new version.
|
|
11
|
+
|
|
12
|
+
### New Features
|
|
13
|
+
|
|
14
|
+
- Use Phong shading as default for version 4.0.
|
|
15
|
+
- Implemented X3DViewpointNode *viewAll, nearDistance, farDistance and navigationInfo*.
|
|
16
|
+
- Implemented Inline *global* field.
|
|
17
|
+
- Implemented point and line geometry *normal* field.
|
|
18
|
+
- Added getNodeTypeName to [SFNode](https://create3000.github.io/x_ite/reference/field-services-and-objects#sfnode-object).
|
|
19
|
+
- Added vector constructors to [SFMatrix*](https://create3000.github.io/x_ite/reference/field-services-and-objects#sfmatrix3dsfmatrix3f-object).
|
|
20
|
+
- Added [SFRotation](https://create3000.github.io/x_ite/reference/field-services-and-objects#sfrotation-object) matrix handling functions.
|
|
21
|
+
- Text component is now loaded on demand.
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- Fixed bug with GeoViewpoint flickering when just bound.
|
|
26
|
+
|
|
27
|
+
## X_ITE v8.1.0 Released
|
|
28
|
+
|
|
29
|
+
*Leipzig, 1st December 2022:* We now have a new website design.
|
|
8
30
|
|
|
9
|
-
|
|
31
|
+
### Bug Fixes
|
|
10
32
|
|
|
11
|
-
|
|
33
|
+
- Fixed Examine Viewer spin behavior.
|
|
34
|
+
- Fixed fading of Splash Screen.
|
|
12
35
|
|
|
13
|
-
|
|
14
|
-
#### New Features
|
|
36
|
+
## X_ITE v8.0.0 Released
|
|
15
37
|
|
|
38
|
+
*Leipzig, 24th November 2022*: We finally released the new version 8.0.0.
|
|
39
|
+
|
|
40
|
+
### New Features
|
|
41
|
+
|
|
42
|
+
- Now based on native JavaScript module system.
|
|
16
43
|
- X_ITE build is now based on WebPack, and a UMD library is build.
|
|
44
|
+
- No more injected \<script\> elements in \<header\> element of page.
|
|
17
45
|
- x_ite_dom is now an integral part of X_ITE.
|
|
18
|
-
- No more injected \<script\> elements in header of page.
|
|
19
46
|
|
|
20
|
-
|
|
21
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
22
|
-
|
|
23
|
-
{% capture notice-text %}
|
|
24
|
-
#### Bug Fixes
|
|
47
|
+
### Bug Fixes
|
|
25
48
|
|
|
26
49
|
- Fixed X3DNode dispose.
|
|
27
50
|
|
|
28
|
-
{% endcapture %}
|
|
29
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
30
|
-
|
|
31
51
|
## X_ITE v7.0.0 Released
|
|
32
52
|
|
|
33
53
|
*Leipzig, 13th November 2022*: We finally released the new version 7.0.0. This version comes with a brand new shader system. The default shaders are now highly specialized and therefor very fast. First tests reveal that the shaders are now 2 up to 3 times faster. But this also means that custom shaders may be broken now, because all x3d_Num* variables are now removed. X3D Authors must now hardcode these values into their shaders, or develop an own system.
|
|
34
54
|
|
|
35
|
-
|
|
36
|
-
#### New Features
|
|
55
|
+
### New Features
|
|
37
56
|
|
|
38
57
|
- New shader system.
|
|
39
58
|
- X3DVolumeData node now supports visible and bboxDisplay field.
|
|
40
59
|
- GeoViewpoint automatically forces logarithmic depth buffer.
|
|
41
60
|
- GeoViewpoint can now handle browser option 'StraightenHorizon'.
|
|
42
61
|
|
|
43
|
-
|
|
44
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
45
|
-
|
|
46
|
-
{% capture notice-text %}
|
|
47
|
-
#### Bug Fixes
|
|
62
|
+
### Bug Fixes
|
|
48
63
|
|
|
49
64
|
- Fixed ComposedShader activate field handling.
|
|
50
65
|
|
|
51
|
-
{% endcapture %}
|
|
52
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
53
|
-
|
|
54
66
|
## X_ITE v6.1.0 Released
|
|
55
67
|
|
|
56
68
|
*Leipzig, 24th October 2022*: We finally released the new version 6.1.0.
|
|
57
69
|
|
|
58
|
-
|
|
59
|
-
#### New Features
|
|
70
|
+
### New Features
|
|
60
71
|
|
|
61
72
|
- Implemented picking of thick lines and large points with X3DPointingDeviceSensorNode nodes like TouchSensor.
|
|
62
|
-
- Added Shading menu if debug attribute is 'true'.
|
|
63
|
-
|
|
64
|
-
{% endcapture %}
|
|
65
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
73
|
+
- Added Shading menu if *debug* attribute is 'true'.
|
|
66
74
|
|
|
67
|
-
|
|
68
|
-
#### Bug Fixes
|
|
75
|
+
### Bug Fixes
|
|
69
76
|
|
|
70
77
|
- Fixed Disk2D line case rendering.
|
|
71
78
|
- Fixed SFImage.toString.
|
|
72
79
|
- Fixed CSS.
|
|
73
80
|
|
|
74
|
-
{% endcapture %}
|
|
75
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
76
|
-
|
|
77
81
|
## X_ITE v6.0.0 Released
|
|
78
82
|
|
|
79
83
|
*Leipzig, 19th October 2022*: We finally released the new version 6.0.0.
|
|
80
84
|
|
|
81
|
-
|
|
82
|
-
#### New Features
|
|
85
|
+
### New Features
|
|
83
86
|
|
|
84
87
|
- Introducing x3d-canvas element, using JavaScript User-Element syntax.
|
|
85
88
|
- New styles for context menu.
|
|
@@ -87,41 +90,26 @@ layout: single
|
|
|
87
90
|
- ParticleSystems are now GPU accelerated.
|
|
88
91
|
- Faster picking and other optimizations.
|
|
89
92
|
|
|
90
|
-
|
|
91
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
92
|
-
|
|
93
|
-
{% capture notice-text %}
|
|
94
|
-
#### Bug Fixes
|
|
93
|
+
### Bug Fixes
|
|
95
94
|
|
|
96
95
|
- Fixed bug that browser stop working suddenly.
|
|
97
96
|
- Fixed fatal bug when second browser is created programmatically.
|
|
98
97
|
|
|
99
|
-
{% endcapture %}
|
|
100
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
101
|
-
|
|
102
98
|
## X_ITE v4.7.7 Released
|
|
103
99
|
|
|
104
100
|
*Leipzig, 30th January 2022*: This release is primarily a bug fix release, but there are also new features.
|
|
105
101
|
|
|
106
|
-
|
|
107
|
-
#### New Features
|
|
102
|
+
### New Features
|
|
108
103
|
|
|
109
104
|
- Output XML or VRML encoding when viewpoint is copied.
|
|
110
105
|
- Added browser option "Timings", but removed attribute.
|
|
111
106
|
- Return promise from X3D function.
|
|
112
107
|
|
|
113
|
-
|
|
114
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
115
|
-
|
|
116
|
-
{% capture notice-text %}
|
|
117
|
-
#### Bug Fixes
|
|
108
|
+
### Bug Fixes
|
|
118
109
|
|
|
119
110
|
- Prevent accidental navigation when context menu is closed.
|
|
120
111
|
- Fixed copy to clipboard of viewpoint when in fullscreen mode.
|
|
121
112
|
|
|
122
|
-
{% endcapture %}
|
|
123
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
124
|
-
|
|
125
113
|
## X_ITE v4.7.6 Released
|
|
126
114
|
|
|
127
115
|
*Leipzig, 23th January 2022*: This release implements the new X3Dv4 UnlitMaterial. This also means that the custom shader interface has changed:
|
|
@@ -131,8 +119,7 @@ layout: single
|
|
|
131
119
|
- Removed x3d_Lighting uniform.
|
|
132
120
|
- Removed x3d_SeparateBackColors uniform.
|
|
133
121
|
|
|
134
|
-
|
|
135
|
-
#### New Features
|
|
122
|
+
### New Features
|
|
136
123
|
|
|
137
124
|
- Added X3DSingleTextureNode class.
|
|
138
125
|
- Added X3DSingleTextureTransformNode class.
|
|
@@ -140,48 +127,32 @@ layout: single
|
|
|
140
127
|
- Added UnlitMaterial class.
|
|
141
128
|
- Implemented Appearance *backMaterial* field.
|
|
142
129
|
|
|
143
|
-
|
|
144
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
145
|
-
|
|
146
|
-
{% capture notice-text %}
|
|
147
|
-
#### Bug Fixes
|
|
130
|
+
### Bug Fixes
|
|
148
131
|
|
|
149
132
|
- Fixed bug in aliases handling and proto nodes setup.
|
|
150
133
|
- Fixed bug in initialization of TextureTransformMatrix3D.
|
|
151
134
|
- Fixed wireframe mode for geometry.
|
|
152
135
|
- Optimized POINT shading.
|
|
153
136
|
|
|
154
|
-
{% endcapture %}
|
|
155
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
156
|
-
|
|
157
137
|
## X_ITE v4.7.3 Released
|
|
158
138
|
|
|
159
139
|
*Leipzig, 16th January 2022*: This release fixes bugs, and a lot of code clean up has been done.
|
|
160
140
|
|
|
161
|
-
|
|
162
|
-
#### New Features
|
|
141
|
+
### New Features
|
|
163
142
|
|
|
164
143
|
- Parse JSON encoding "#sourceCode" objects.
|
|
165
144
|
- Use JavaScript URL objects internally now.
|
|
166
145
|
|
|
167
|
-
{% endcapture %}
|
|
168
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
169
|
-
|
|
170
146
|
## X_ITE v4.7.2 Released
|
|
171
147
|
|
|
172
148
|
*Leipzig, 7th January 2022*: This release fixes bugs, and a lot of code clean up has been done.
|
|
173
149
|
|
|
174
|
-
|
|
175
|
-
#### New Features
|
|
150
|
+
### New Features
|
|
176
151
|
|
|
177
152
|
- Changed behavior of FLY viewer.
|
|
178
153
|
- Added particle uniforms to line geometry.
|
|
179
154
|
|
|
180
|
-
|
|
181
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
182
|
-
|
|
183
|
-
{% capture notice-text %}
|
|
184
|
-
#### Bug Fixes
|
|
155
|
+
### Bug Fixes
|
|
185
156
|
|
|
186
157
|
- Fixes script url determination.
|
|
187
158
|
- Fixed bug when particle systems are used.
|
|
@@ -189,25 +160,17 @@ layout: single
|
|
|
189
160
|
- Reduced compile time of Phong shader.
|
|
190
161
|
- Fixed bug in live handling.
|
|
191
162
|
|
|
192
|
-
{% endcapture %}
|
|
193
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
194
|
-
|
|
195
163
|
## X_ITE v4.7.1 Released
|
|
196
164
|
|
|
197
165
|
*Leipzig, 19th December 2021*: This release fixed a lot of bugs, but also implements new features. Especially MF* fields can now be used within `for of` loops. X3DBindableNode nodes do work now proper when cloned in multiple layers.
|
|
198
166
|
|
|
199
|
-
|
|
200
|
-
#### New Features
|
|
167
|
+
### New Features
|
|
201
168
|
|
|
202
169
|
- Added layerNode argument to `Browser.changeViewpoint([layerNode,] name)`.
|
|
203
170
|
- Implemented Symbol.iterator for MF* fields. This enables `for of` loops.
|
|
204
171
|
- Improved X3DBindableNode handling when cloned in multiple layers.
|
|
205
172
|
|
|
206
|
-
|
|
207
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
208
|
-
|
|
209
|
-
{% capture notice-text %}
|
|
210
|
-
#### Bug Fixes
|
|
173
|
+
### Bug Fixes
|
|
211
174
|
|
|
212
175
|
- Abort loading if loadURL is called more than once.
|
|
213
176
|
- Fixed load count handling.
|
|
@@ -219,17 +182,13 @@ layout: single
|
|
|
219
182
|
- Fixed fatal bug in OrthoViewpoint (#84).
|
|
220
183
|
- Fixed bugs in RigidBodyPhysics when nodes are changed.
|
|
221
184
|
|
|
222
|
-
{% endcapture %}
|
|
223
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
224
|
-
|
|
225
185
|
## X_ITE v4.7.0 Released
|
|
226
186
|
|
|
227
|
-
*Leipzig, 5th December 2021*: This release implements some of the new X3Dv4 Features. X3Dv4 Draft is available at <https://www.web3d.org/specifications/
|
|
187
|
+
*Leipzig, 5th December 2021*: This release implements some of the new X3Dv4 Features. X3Dv4 Draft is available at <https://www.web3d.org/documents/specifications/19775-1/V4.0/Part01/Architecture.html>.
|
|
228
188
|
|
|
229
189
|
This release also increased pure rendering speed (without routing and scripting) of up to 30%, that is a huge amount, especially when there are many nodes (300 and more).
|
|
230
190
|
|
|
231
|
-
|
|
232
|
-
#### New Features
|
|
191
|
+
### New Features
|
|
233
192
|
|
|
234
193
|
- Added X3DLightNode *shadows* field.
|
|
235
194
|
- Updated range of X3DLightNode *intensity* field.
|
|
@@ -239,30 +198,19 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
239
198
|
- Updated access type of WorldInfo *title* and *info* field to match X3Dv4.
|
|
240
199
|
- Add context menu "Show World Info" menu item, if an WorldInfo node exists.
|
|
241
200
|
|
|
242
|
-
|
|
243
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
244
|
-
|
|
245
|
-
{% capture notice-text %}
|
|
246
|
-
#### Bug Fixes
|
|
201
|
+
### Bug Fixes
|
|
247
202
|
|
|
248
203
|
- Changed Extrusion SCPyAxis calculation.
|
|
249
204
|
|
|
250
|
-
{% endcapture %}
|
|
251
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
252
|
-
|
|
253
205
|
## X_ITE v4.6.24 Released
|
|
254
206
|
|
|
255
207
|
*Leipzig, 12th November 2021*: This release is a bug fix release.
|
|
256
208
|
|
|
257
|
-
|
|
258
|
-
#### Bug Fixes
|
|
209
|
+
### Bug Fixes
|
|
259
210
|
|
|
260
211
|
- Fixed TransformSensor handling.
|
|
261
212
|
- Fixed X3DBindableNode handling when child of a Switch or LOD node.
|
|
262
213
|
|
|
263
|
-
{% endcapture %}
|
|
264
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
265
|
-
|
|
266
214
|
## X_ITE v4.6.23 Released
|
|
267
215
|
|
|
268
216
|
*Leipzig, 31st October 2021*: Updated dependencies and reduced file size a tiny bit and X3DExecutionContext.updateImportedNode only updated the node associated with imported name, this enables X_ITE to import a node twice.
|
|
@@ -271,111 +219,78 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
271
219
|
|
|
272
220
|
*Leipzig, 2nd July 2021*: This release is a bug fix release.
|
|
273
221
|
|
|
274
|
-
|
|
275
|
-
#### Bug Fixes
|
|
222
|
+
### Bug Fixes
|
|
276
223
|
|
|
277
224
|
- Changed ComposedCubMapTexture field names.
|
|
278
225
|
- Modified finiteRotationAxis default value.
|
|
279
226
|
- Improved loading of X3DBackgroundNode nodes and ComposedCubeMap nodes.
|
|
280
227
|
|
|
281
|
-
{% endcapture %}
|
|
282
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
283
|
-
|
|
284
228
|
## X_ITE v4.6.21 Released
|
|
285
229
|
|
|
286
230
|
*Leipzig, 30th June 2021*: This release is a bug fix release.
|
|
287
231
|
|
|
288
|
-
|
|
289
|
-
#### Bug Fixes
|
|
232
|
+
### Bug Fixes
|
|
290
233
|
|
|
291
234
|
- Hide Shape node of GeneratedCubeMapTexture when generating texture itself.
|
|
292
235
|
|
|
293
|
-
{% endcapture %}
|
|
294
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
295
|
-
|
|
296
236
|
## X_ITE v4.6.20 Released
|
|
297
237
|
|
|
298
238
|
*Leipzig, 15th June 2021*: This release is a bug fix release.
|
|
299
239
|
|
|
300
|
-
|
|
301
|
-
#### Bug Fixes
|
|
240
|
+
### Bug Fixes
|
|
302
241
|
|
|
303
242
|
- Fixed bug in X3DBrowser.importDocument and X3DBrowser.importJS.
|
|
304
243
|
|
|
305
|
-
{% endcapture %}
|
|
306
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
307
|
-
|
|
308
244
|
## X_ITE v4.6.19 Released
|
|
309
245
|
|
|
310
246
|
*Leipzig, 27th May 2021*: This release is a bug fix release.
|
|
311
247
|
|
|
312
|
-
|
|
313
|
-
#### Bug Fixes
|
|
248
|
+
### Bug Fixes
|
|
314
249
|
|
|
315
250
|
- Fixed handling of negative radius values in Disk2D.
|
|
316
251
|
- Fixed handling of caps of Extrusion in rare cases.
|
|
317
252
|
- Use negated normal for back faces in TextureCoordinateGenerator.
|
|
318
253
|
|
|
319
|
-
{% endcapture %}
|
|
320
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
321
|
-
|
|
322
254
|
## X_ITE v4.6.18 Released
|
|
323
255
|
|
|
324
256
|
*Leipzig, 13th April 2021*: This release is a bug fix release.
|
|
325
257
|
|
|
326
|
-
|
|
327
|
-
#### Bug Fixes
|
|
258
|
+
### Bug Fixes
|
|
328
259
|
|
|
329
260
|
- Fixed bug with pointing device when padding is applied to X3DCanvas.
|
|
330
261
|
|
|
331
|
-
{% endcapture %}
|
|
332
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
333
|
-
|
|
334
262
|
## X_ITE v4.6.17 Released
|
|
335
263
|
|
|
336
264
|
*Leipzig, 22nd December 2020*: This release is a bug fix release. It fixed a minor bug in X3DViewpointNode when the viewpoint is animated.
|
|
337
265
|
|
|
338
|
-
|
|
339
|
-
#### Bug Fixes
|
|
266
|
+
### Bug Fixes
|
|
340
267
|
|
|
341
268
|
- Fixed a bug in X3DViewpointNode when the viewpoint is animated.
|
|
342
269
|
|
|
343
|
-
{% endcapture %}
|
|
344
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
345
|
-
|
|
346
270
|
## X_ITE v4.6.15 Released
|
|
347
271
|
|
|
348
272
|
*Leipzig, 24th October 2020*: This release fixes a bug with OrthoViewpoint which has encountered in the last release, and some other bugs.
|
|
349
273
|
|
|
350
|
-
|
|
351
|
-
#### Bug Fixes and Enhancements
|
|
274
|
+
### Bug Fixes and Enhancements
|
|
352
275
|
|
|
353
276
|
- Fixed OrthoViewpoint.
|
|
354
277
|
- Fixed Layout component level.
|
|
355
278
|
- Fixed shader select.
|
|
356
279
|
- Implemented shader _activate_ field.
|
|
357
280
|
|
|
358
|
-
{% endcapture %}
|
|
359
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
360
|
-
|
|
361
281
|
## X_ITE v4.6.14 Released
|
|
362
282
|
|
|
363
283
|
*Leipzig, 24th October 2020*: This release fixes some subtle bug in XML parser when parsing fieldValue element of proto instance.
|
|
364
284
|
|
|
365
|
-
|
|
366
|
-
#### Bug Fixes and Enhancements
|
|
285
|
+
### Bug Fixes and Enhancements
|
|
367
286
|
|
|
368
287
|
- Fixed XML parser parse MFNode fieldValue element.
|
|
369
288
|
|
|
370
|
-
{% endcapture %}
|
|
371
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
372
|
-
|
|
373
289
|
## X_ITE v4.6.12 Released
|
|
374
290
|
|
|
375
291
|
*Leipzig, 15th October 2020*: With this release we could fix a lot of small but critical bugs and also had some optimizations for you and better support for macOS.
|
|
376
292
|
|
|
377
|
-
|
|
378
|
-
#### Bug Fixes and Enhancements
|
|
293
|
+
### Bug Fixes and Enhancements
|
|
379
294
|
|
|
380
295
|
- Better control of navigation with mouse and trackpad on macOS and tablet devices.
|
|
381
296
|
- Fixed examine viewer rotation when multiple layer with viewport are present.
|
|
@@ -386,100 +301,68 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
386
301
|
- Very small optimization of transparent shapes.
|
|
387
302
|
- Reworked bindable nodes bind handling.
|
|
388
303
|
|
|
389
|
-
{% endcapture %}
|
|
390
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
391
|
-
|
|
392
304
|
## X_ITE v4.6.11 Released
|
|
393
305
|
|
|
394
306
|
*Leipzig, 22nd August 2020*: With this release we introduce our new web site, it is now hosted on GitHub and has a clean and slick layout now. We also moved the code hosting to create3000.github.io, so make sure to update your X_ITE urls for CSS and JavaScript.
|
|
395
307
|
|
|
396
|
-
|
|
397
|
-
#### Bug Fixes
|
|
308
|
+
### Bug Fixes
|
|
398
309
|
|
|
399
310
|
- Updated dependencies.
|
|
400
311
|
- Fixed bug with Geometry2D in Safari.
|
|
401
312
|
- Fixed Background rendering on iOS Safari.
|
|
402
313
|
- Fixed bug with sound loading on iOS Safari.
|
|
403
314
|
|
|
404
|
-
{% endcapture %}
|
|
405
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
406
|
-
|
|
407
315
|
## X_ITE v4.6.10 Released
|
|
408
316
|
|
|
409
317
|
*Leipzig, 21st March 2020*: This is primarily a bug fix release.
|
|
410
318
|
|
|
411
|
-
|
|
412
|
-
#### Bug Fixes
|
|
319
|
+
### Bug Fixes
|
|
413
320
|
|
|
414
321
|
- Fixed CSS.
|
|
415
322
|
|
|
416
|
-
{% endcapture %}
|
|
417
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
418
|
-
|
|
419
323
|
## X_ITE v4.6.9 Released
|
|
420
324
|
|
|
421
325
|
*Leipzig, 30th November 2019*: Fixed bugs.
|
|
422
326
|
|
|
423
|
-
|
|
424
|
-
#### Bug Fixes
|
|
327
|
+
### Bug Fixes
|
|
425
328
|
|
|
426
329
|
- Added missing fields for HTML/DOM support.
|
|
427
330
|
- Fixed projective texture mapping in conjunction with generated cube map.
|
|
428
331
|
|
|
429
|
-
{% endcapture %}
|
|
430
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
431
|
-
|
|
432
332
|
## X_ITE v4.6.8 Released
|
|
433
333
|
|
|
434
334
|
*Leipzig, 20th November 2019*: With this version we implement the TextureProjectorParallel and TextureProjectorPerspective node, from the upcoming X3D V4 standard, which will be available next year. We also have now better hardware support, we made *maxLights* and *maxTextures* dynamic, depending on the hardware of the user's system, this gives better support of older hardware and mobile systems.
|
|
435
335
|
|
|
436
|
-
|
|
437
|
-
#### New Features
|
|
336
|
+
### New Features
|
|
438
337
|
|
|
439
338
|
- Implemented TextureProjectorParallel.
|
|
440
339
|
- Implemented TextureProjectorPerspective.
|
|
441
340
|
|
|
442
|
-
|
|
443
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
444
|
-
|
|
445
|
-
{% capture notice-text %}
|
|
446
|
-
#### Bug Fixes
|
|
341
|
+
### Bug Fixes
|
|
447
342
|
|
|
448
343
|
- Fixed special case in TimeSensor when *cycleInterval* is 0.
|
|
449
344
|
|
|
450
|
-
{% endcapture %}
|
|
451
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
452
|
-
|
|
453
345
|
## X_ITE v4.6.7 Released
|
|
454
346
|
|
|
455
347
|
*Leipzig, 10th November 2019*: With this version we implement the PointProperties node, the first node from the upcoming X3D V4 standard, which will be available next year.
|
|
456
348
|
|
|
457
|
-
|
|
458
|
-
#### New Features
|
|
349
|
+
### New Features
|
|
459
350
|
|
|
460
351
|
- Implemented PointProperties node.
|
|
461
352
|
|
|
462
|
-
{% endcapture %}
|
|
463
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
464
|
-
|
|
465
353
|
## X_ITE v4.6.6 Released
|
|
466
354
|
|
|
467
355
|
*Leipzig, 4th November 2019*: This is primarily a bug fix release.
|
|
468
356
|
|
|
469
|
-
|
|
470
|
-
#### Bug Fixes
|
|
357
|
+
### Bug Fixes
|
|
471
358
|
|
|
472
359
|
- Fixed texture 3d orientation.
|
|
473
360
|
|
|
474
|
-
{% endcapture %}
|
|
475
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
476
|
-
|
|
477
361
|
## X_ITE v4.6.4 Released
|
|
478
362
|
|
|
479
363
|
*Leipzig, 2nd November 2019*: This is primarily a bug fix release.
|
|
480
364
|
|
|
481
|
-
|
|
482
|
-
#### New Features
|
|
365
|
+
### New Features
|
|
483
366
|
|
|
484
367
|
- Updated external library dependencies.
|
|
485
368
|
- Improved Gouraud and Phong shader.
|
|
@@ -487,194 +370,127 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
487
370
|
- Support for X3DTexture3DNode in OpacityMapVolumeStyle node's *transferFunction* field.
|
|
488
371
|
- Implemented Script node *shutdown* function.
|
|
489
372
|
|
|
490
|
-
|
|
491
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
492
|
-
|
|
493
|
-
{% capture notice-text %}
|
|
494
|
-
#### Bug Fixes
|
|
373
|
+
### Bug Fixes
|
|
495
374
|
|
|
496
375
|
- Fixed bug in Script node in rare cases.
|
|
497
376
|
|
|
498
|
-
{% endcapture %}
|
|
499
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
500
|
-
|
|
501
377
|
## X_ITE v4.6.3 Released
|
|
502
378
|
|
|
503
379
|
*Leipzig, 26th October 2019*: This is primarily a bug fix release.
|
|
504
380
|
|
|
505
|
-
|
|
506
|
-
#### New Features
|
|
381
|
+
### New Features
|
|
507
382
|
|
|
508
383
|
- Support for NRRD types signed/unsigned byte, signed/unsigned short, signed/unsigned int, float, and double.
|
|
509
384
|
- Implemented NRRD ASCII, RAW, HEX, and GZIP encoding.
|
|
510
385
|
|
|
511
|
-
|
|
512
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
513
|
-
|
|
514
|
-
{% capture notice-text %}
|
|
515
|
-
#### Bug Fixes
|
|
386
|
+
### Bug Fixes
|
|
516
387
|
|
|
517
388
|
- Fixed CylinderSensor minAngle/maxAngle handling.
|
|
518
389
|
- Fixed wrong SilhouetteEnhancementVolumeStyle rendering in rare cases.
|
|
519
390
|
- Fixed wrong BoundaryEnhancementVolumeStyle rendering.
|
|
520
391
|
- Fixed Background rendering on mobile devices.
|
|
521
392
|
|
|
522
|
-
{% endcapture %}
|
|
523
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
524
|
-
|
|
525
393
|
## X_ITE v4.6.2 Released
|
|
526
394
|
|
|
527
395
|
*Leipzig, 20th October 2019*: With this release we implement full support for VolumeRendering component and full support for Texturing3D component, ie. we switch to WebGL 2 with this release, if available.
|
|
528
396
|
|
|
529
|
-
|
|
530
|
-
#### New Features
|
|
397
|
+
### New Features
|
|
531
398
|
|
|
532
399
|
- Basic support for VolumeRendering component.
|
|
533
400
|
- Full support for Texturing3D component.
|
|
534
401
|
|
|
535
|
-
|
|
536
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
537
|
-
|
|
538
|
-
{% capture notice-text %}
|
|
539
|
-
#### Bug Fixes
|
|
402
|
+
### Bug Fixes
|
|
540
403
|
|
|
541
404
|
- Fixed missing Browser properties *supportedProfiles* and *supportedComponents*.
|
|
542
405
|
- Optimized NURBS weight handling when no weights present.
|
|
543
406
|
- Fixed bug in TextureTransformMatrix3D.
|
|
544
407
|
- Fixed double load of URL in some cases of X3DUrlObject nodes.
|
|
545
408
|
|
|
546
|
-
{% endcapture %}
|
|
547
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
548
|
-
|
|
549
409
|
## X_ITE v4.5.14 Released
|
|
550
410
|
|
|
551
411
|
*Leipzig, 5th October 2019*: This is primarily a bug fix release.
|
|
552
412
|
|
|
553
|
-
|
|
554
|
-
#### Bug Fixes
|
|
413
|
+
### Bug Fixes
|
|
555
414
|
|
|
556
415
|
- Better NURBS normals.
|
|
557
416
|
- Fixed X3DNurbsSurfaceGeometryNode *closed* field handling.
|
|
558
417
|
- Fix NURBS *weight* field handling.
|
|
559
418
|
|
|
560
|
-
{% endcapture %}
|
|
561
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
562
|
-
|
|
563
419
|
## X_ITE v4.5.12 Released
|
|
564
420
|
|
|
565
421
|
*Leipzig, 23rd September 2019*: This is primarily a bug fix release.
|
|
566
422
|
|
|
567
|
-
|
|
568
|
-
#### Bug Fixes
|
|
423
|
+
### Bug Fixes
|
|
569
424
|
|
|
570
425
|
- Fixed bug in Matrix transpose.
|
|
571
426
|
- Better parser errors when node type is not known.
|
|
572
427
|
|
|
573
|
-
{% endcapture %}
|
|
574
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
575
|
-
|
|
576
428
|
## X_ITE v4.5.10 Released
|
|
577
429
|
|
|
578
430
|
*Leipzig, 17th July 2019*: This is primarily a bug fix release.
|
|
579
431
|
|
|
580
|
-
|
|
581
|
-
#### Bug Fixes
|
|
432
|
+
### Bug Fixes
|
|
582
433
|
|
|
583
434
|
- Fixed sound rendering.
|
|
584
435
|
|
|
585
|
-
{% endcapture %}
|
|
586
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
587
|
-
|
|
588
436
|
## X_ITE v4.5.9 Released
|
|
589
437
|
|
|
590
438
|
*Leipzig, 10th July 2019*: This is primarily a bug fix release.
|
|
591
439
|
|
|
592
|
-
|
|
593
|
-
#### Bug Fixes
|
|
440
|
+
### Bug Fixes
|
|
594
441
|
|
|
595
442
|
- Fixed bug with browser event handler, for instance »onload«, if jQuery is present.
|
|
596
443
|
- Fixed bug with FogCoordinate calculation handling.
|
|
597
444
|
|
|
598
|
-
{% endcapture %}
|
|
599
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
600
|
-
|
|
601
445
|
## X_ITE v4.5.8 Released
|
|
602
446
|
|
|
603
447
|
*Leipzig, 3rd July 2019*: Fixed some bugs.
|
|
604
448
|
|
|
605
|
-
|
|
606
|
-
#### Bug Fixes
|
|
449
|
+
### Bug Fixes
|
|
607
450
|
|
|
608
451
|
- Fixed bug when parsing Classic VRML Encoded files.
|
|
609
452
|
|
|
610
|
-
{% endcapture %}
|
|
611
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
612
|
-
|
|
613
453
|
## X_ITE v4.5.7 Released
|
|
614
454
|
|
|
615
455
|
*Leipzig, 26th June 2019*: We could again fix some bugs which will make X_ITE again more stable. Additionally we removed the non-standard fields from AudioClip and MovieTexture, they are now fully specification conform.
|
|
616
456
|
|
|
617
|
-
|
|
618
|
-
#### New Features
|
|
457
|
+
### New Features
|
|
619
458
|
|
|
620
459
|
- Updated splash screen.
|
|
621
460
|
|
|
622
|
-
|
|
623
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
624
|
-
|
|
625
|
-
{% capture notice-text %}
|
|
626
|
-
#### Bug Fixes
|
|
461
|
+
### Bug Fixes
|
|
627
462
|
|
|
628
463
|
- Fixed TimeSensor wrong *cycleTime* event at startup.
|
|
629
464
|
- Fixed BrowserTimings button type.
|
|
630
465
|
- Removed non-standard fields from X3DSoundSourceNode nodes.
|
|
631
466
|
- Fixed geometry nodes index fields access type.
|
|
632
467
|
|
|
633
|
-
{% endcapture %}
|
|
634
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
635
|
-
|
|
636
468
|
## X_ITE v4.5.6 Released
|
|
637
469
|
|
|
638
470
|
*Leipzig, 19th June 2019*: We could optimize CoordinateChaser/Damper and TexCoordChaser2D/Damper2D, which runs now significantly faster.
|
|
639
471
|
|
|
640
|
-
|
|
641
|
-
#### New Features
|
|
472
|
+
### New Features
|
|
642
473
|
|
|
643
474
|
- Optimized CoordinateChaser/Damper and TexCoordChaser2D/Damper2D.
|
|
644
475
|
|
|
645
|
-
|
|
646
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
647
|
-
|
|
648
|
-
{% capture notice-text %}
|
|
649
|
-
#### Bug Fixes
|
|
476
|
+
### Bug Fixes
|
|
650
477
|
|
|
651
478
|
- Fixed bug in TimeSensor *fraction\_changed* calculation if *loop* is true.
|
|
652
479
|
|
|
653
|
-
{% endcapture %}
|
|
654
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
655
|
-
|
|
656
480
|
## X_ITE v4.5.4 Released
|
|
657
481
|
|
|
658
482
|
*Leipzig, 9th June 2019:* We could fix some minor bugs.
|
|
659
483
|
|
|
660
|
-
|
|
661
|
-
#### New Features
|
|
484
|
+
### New Features
|
|
662
485
|
|
|
663
486
|
- Added MFNode.toVRML/XMLString.
|
|
664
487
|
|
|
665
|
-
|
|
666
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
667
|
-
|
|
668
|
-
{% capture notice-text %}
|
|
669
|
-
#### Bug Fixes
|
|
488
|
+
### Bug Fixes
|
|
670
489
|
|
|
671
490
|
- Fixed sound playing when Browser.endUpdate was called.
|
|
672
491
|
- Fixed Switch node when children are changed.
|
|
673
492
|
- Fixed a bug with Inline nodes in conjunction with DOM integration.
|
|
674
493
|
|
|
675
|
-
{% endcapture %}
|
|
676
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
677
|
-
|
|
678
494
|
## X_ITE v4.5.1 Released
|
|
679
495
|
|
|
680
496
|
*Leipzig, 20th April 2019:* Although not enable, we are still using WebGL 1 in the official releases, X_ITE is now prepared for WebGL 2. If WebGL 2 becomes more popular we will enabled it, if available, then WebGL 2 is selected, otherwise WebGL 1 to make X_ITE compatible to older browsers.
|
|
@@ -683,19 +499,14 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
683
499
|
|
|
684
500
|
*Leipzig, 14th April 2019:* With this version we implemented MultiTexture, MultiTextureTransform, and MultiTextureCoordinate and also FillProperties is now working.
|
|
685
501
|
|
|
686
|
-
|
|
687
|
-
#### New Features
|
|
502
|
+
### New Features
|
|
688
503
|
|
|
689
504
|
- Implemented MultiTexture, MultiTextureTransform, and MultiTextureCoordinate.
|
|
690
505
|
- Implemented FillProperties.
|
|
691
506
|
- Faster startup of browser.
|
|
692
507
|
- Better transitions with OrthoViewpoint.
|
|
693
508
|
|
|
694
|
-
|
|
695
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
696
|
-
|
|
697
|
-
{% capture notice-text %}
|
|
698
|
-
#### Bug Fixes
|
|
509
|
+
### Bug Fixes
|
|
699
510
|
|
|
700
511
|
- Fix bug in Browser Options when switching texture quality.
|
|
701
512
|
- Fixed picking and Layout node.
|
|
@@ -703,59 +514,39 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
703
514
|
- Fixed bug with data URLs.
|
|
704
515
|
- Fixed bug in toXMLString and toVRMLString when outputing protos.
|
|
705
516
|
|
|
706
|
-
{% endcapture %}
|
|
707
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
708
|
-
|
|
709
517
|
## X_ITE v4.4.7 Released
|
|
710
518
|
|
|
711
519
|
*Leipzig, 3rd April 2019:* This version comes with a fresh implementation of the TextureCoordinateGenerator node and we could make the VisibilitySensor more precise.
|
|
712
520
|
|
|
713
|
-
|
|
714
|
-
#### New Features
|
|
521
|
+
### New Features
|
|
715
522
|
|
|
716
523
|
- Implemented TextureCoordinateGenerator.
|
|
717
524
|
- More precise VisibilitySensor.
|
|
718
525
|
|
|
719
|
-
{% endcapture %}
|
|
720
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
721
|
-
|
|
722
526
|
## X_ITE v4.4.6 Released
|
|
723
527
|
|
|
724
528
|
*Leipzig, 25th March 2019:* This version comes with the first nodes from the Picking component. We implemented LinePickSensor, PickableGroup, PointPickSensor, PrimitivePickSensor, and VolumePickSensor, which are fully implemented.
|
|
725
529
|
|
|
726
|
-
|
|
727
|
-
#### New Features
|
|
530
|
+
### New Features
|
|
728
531
|
|
|
729
532
|
- Implemented Picking component.
|
|
730
533
|
|
|
731
|
-
{% endcapture %}
|
|
732
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
733
|
-
|
|
734
534
|
## X_ITE v4.4.5 Released
|
|
735
535
|
|
|
736
|
-
|
|
737
|
-
#### Bug Fixes
|
|
536
|
+
### Bug Fixes
|
|
738
537
|
|
|
739
538
|
- Fixed bug in LOD traverse.
|
|
740
539
|
|
|
741
|
-
{% endcapture %}
|
|
742
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
743
|
-
|
|
744
540
|
## X_ITE v4.4.4 Released
|
|
745
541
|
|
|
746
542
|
*Leipzig, 18th March 2019:* We finally implemented *toVRMLString* for SFNode, X3DProtoDeclaration, X3DExternProtoDeclaration, and X3DScene. There is a new X3DCanvas attribute *preserveDrawingBuffer,* set this to true if you want to save the image from the canvas.
|
|
747
543
|
|
|
748
|
-
|
|
749
|
-
#### New Features
|
|
544
|
+
### New Features
|
|
750
545
|
|
|
751
546
|
- Implemented toVRMLString.
|
|
752
|
-
- New X3DCanvas attribute preserveDrawingBuffer
|
|
547
|
+
- New X3DCanvas attribute *preserveDrawingBuffer*.
|
|
753
548
|
|
|
754
|
-
|
|
755
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
756
|
-
|
|
757
|
-
{% capture notice-text %}
|
|
758
|
-
#### Bug Fixes
|
|
549
|
+
### Bug Fixes
|
|
759
550
|
|
|
760
551
|
- Fixed bug in toXMLString of X3DScene.
|
|
761
552
|
- Fixed bug when parsing SFMatrix3d/f values.
|
|
@@ -763,110 +554,74 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
763
554
|
- Fixed shadow handling.
|
|
764
555
|
- Fixed bug in MF\* fields pop and shift.
|
|
765
556
|
|
|
766
|
-
{% endcapture %}
|
|
767
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
768
|
-
|
|
769
557
|
## X_ITE v4.4.3 Released
|
|
770
558
|
|
|
771
559
|
*Leipzig, 11th March 2019:* Fixed a bug in BlendMode and there is a new page where you can online edit the BlendMode.
|
|
772
560
|
|
|
773
|
-
|
|
774
|
-
#### Bug Fixes
|
|
561
|
+
### Bug Fixes
|
|
775
562
|
|
|
776
563
|
- Fixed bug in BlendMode.
|
|
777
564
|
|
|
778
|
-
{% endcapture %}
|
|
779
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
780
|
-
|
|
781
565
|
## X_ITE v4.4.2 Released
|
|
782
566
|
|
|
783
567
|
*Leipzig, 24th February 2019:* We could fix some small bugs and now the TransformSensor is fully implemented. The version number is now displayed in the Context Menu.
|
|
784
568
|
|
|
785
|
-
|
|
786
|
-
#### New Features
|
|
569
|
+
### New Features
|
|
787
570
|
|
|
788
571
|
- Show version number in context menu.
|
|
789
572
|
- Fully implemented TransformSensor.
|
|
790
573
|
- Optimized proto instance creation, especially when you use proto instances within another proto.
|
|
791
574
|
- Small improvements.
|
|
792
575
|
|
|
793
|
-
|
|
794
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
795
|
-
|
|
796
|
-
{% capture notice-text %}
|
|
797
|
-
#### Bug Fixes
|
|
576
|
+
### Bug Fixes
|
|
798
577
|
|
|
799
578
|
- Fixed GeoLOD when a ProximitySensor or Viewpoint is in the root node or children.
|
|
800
579
|
- Fixed fatal bug in IndexedFaceSet if there are degenerated polygons.
|
|
801
580
|
|
|
802
|
-
{% endcapture %}
|
|
803
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
804
|
-
|
|
805
581
|
## X_ITE v4.4.1 Released
|
|
806
582
|
|
|
807
583
|
*Leipzig, 24th February 2019:* Fixed some small bugs.
|
|
808
584
|
|
|
809
|
-
|
|
810
|
-
#### Bug Fixes
|
|
585
|
+
### Bug Fixes
|
|
811
586
|
|
|
812
587
|
- Fixed Browser.createX3DFromString console output.
|
|
813
588
|
- Fixed X3DExternProtoDeclaration, X3DProtoDeclaration, X3DRoute toString output.
|
|
814
589
|
- Fixed H-Anim units.
|
|
815
590
|
|
|
816
|
-
{% endcapture %}
|
|
817
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
818
|
-
|
|
819
591
|
## X_ITE v4.4.0 Released
|
|
820
592
|
|
|
821
593
|
*Leipzig, 4th February 2019:* Small bug fixes and small optimizations makes this version as stable as ever before. We also could now implement the FogCoordinate node.
|
|
822
594
|
|
|
823
|
-
|
|
824
|
-
#### New Features
|
|
595
|
+
### New Features
|
|
825
596
|
|
|
826
597
|
- Implemented FogCoordinate.
|
|
827
598
|
|
|
828
|
-
|
|
829
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
830
|
-
|
|
831
|
-
{% capture notice-text %}
|
|
832
|
-
#### Bug Fixes
|
|
599
|
+
### Bug Fixes
|
|
833
600
|
|
|
834
601
|
- Pass current time stamp to Script.prepareEvents function.
|
|
835
602
|
- X3DConstants have now browser event constants for browser callbacks.
|
|
836
603
|
|
|
837
|
-
{% endcapture %}
|
|
838
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
839
|
-
|
|
840
604
|
## X_ITE v4.2.17 Released
|
|
841
605
|
|
|
842
606
|
*Leipzig, 26th January 2019:* With this version we release the first version of the H-Anim component. The H-Anim component is automatically included when a profile or component statement matches »H-Anim«.
|
|
843
607
|
|
|
844
|
-
|
|
845
|
-
#### New Features
|
|
608
|
+
### New Features
|
|
846
609
|
|
|
847
610
|
- Implemented »H-Anim« component.
|
|
848
611
|
|
|
849
|
-
{% endcapture %}
|
|
850
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
851
|
-
|
|
852
612
|
## X_ITE v4.2.16 Released
|
|
853
613
|
|
|
854
614
|
*Leipzig, 16th January 2019:* With this version we release the first version of the NURBS component. The NURBS component is automatically included when a profile or component statement matches »NURBS«.
|
|
855
615
|
|
|
856
|
-
|
|
857
|
-
#### New Features
|
|
616
|
+
### New Features
|
|
858
617
|
|
|
859
618
|
- Implemented »NURBS« component.
|
|
860
619
|
|
|
861
|
-
{% endcapture %}
|
|
862
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
863
|
-
|
|
864
620
|
## X_ITE v4.2.15 Released
|
|
865
621
|
|
|
866
622
|
*Leipzig, 23th December 2018:* Beside OrthoViewpoint node, the Layout node is now able to handle Viewpoint node and GeoViewpoint node and we could fix again some bugs.
|
|
867
623
|
|
|
868
|
-
|
|
869
|
-
#### Bug Fixes
|
|
624
|
+
### Bug Fixes
|
|
870
625
|
|
|
871
626
|
- Implemented Layout for Viewpoint and GeoViewpoint.
|
|
872
627
|
- Fixed Browser.getRenderingProperty.
|
|
@@ -875,23 +630,15 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
875
630
|
- Fixed bug in XML generator when generating nodes.
|
|
876
631
|
- Fixed bug with audio/video playback when url changes.
|
|
877
632
|
|
|
878
|
-
{% endcapture %}
|
|
879
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
880
|
-
|
|
881
633
|
## X_ITE v4.2.14 Released
|
|
882
634
|
|
|
883
|
-
*Leipzig, 16th December 2018:* This version implements the StringSensor from the KeyDeviceSensor component and we found a really phat bug in X3DComposedGeometryNode normal generation, which affects TriangleSet, IndexedTriangleSet, QuadSet, and so on. We also tested X_ITE against <
|
|
635
|
+
*Leipzig, 16th December 2018:* This version implements the StringSensor from the KeyDeviceSensor component and we found a really phat bug in X3DComposedGeometryNode normal generation, which affects TriangleSet, IndexedTriangleSet, QuadSet, and so on. We also tested X_ITE against <https://x3dgraphics.com/examples/X3dForWebAuthors/index.html> and fixed all bugs found.
|
|
884
636
|
|
|
885
|
-
|
|
886
|
-
#### New Features
|
|
637
|
+
### New Features
|
|
887
638
|
|
|
888
639
|
- Implemented StringSensor
|
|
889
640
|
|
|
890
|
-
|
|
891
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
892
|
-
|
|
893
|
-
{% capture notice-text %}
|
|
894
|
-
#### Bug Fixes
|
|
641
|
+
### Bug Fixes
|
|
895
642
|
|
|
896
643
|
- Fixed X3DKeyDeviceSensorNode.enabled field handling.
|
|
897
644
|
- Fixed bug with KeySensor.isActive.
|
|
@@ -899,9 +646,6 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
899
646
|
- Fog.visibilityRange is now affected by scaling.
|
|
900
647
|
- SpotLight.radius and PointLight.radius are now affected by scaling.
|
|
901
648
|
|
|
902
|
-
{% endcapture %}
|
|
903
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
904
|
-
|
|
905
649
|
## X_ITE v4.2.13 Released
|
|
906
650
|
|
|
907
651
|
*Leipzig, 6th December 2018:* SFVec2f/d, SFVec3f/d, SFVec4f/d have now new functions. These are multVec, divVec, distance, and lerp. Have a look at:
|
|
@@ -910,67 +654,46 @@ This release also increased pure rendering speed (without routing and scripting)
|
|
|
910
654
|
- SFVec3f/d Object
|
|
911
655
|
- SFVec4f/d Object
|
|
912
656
|
|
|
913
|
-
for more information. Additionally we tested X_ITE against <
|
|
657
|
+
for more information. Additionally we tested X_ITE against <https://www.web3d.org/x3d/content/examples/Basic/index.html> and fixed the bugs we found.
|
|
914
658
|
|
|
915
|
-
|
|
916
|
-
#### New Features
|
|
659
|
+
### New Features
|
|
917
660
|
|
|
918
661
|
- Added new vector functions to SFVec2f/d, SFVec3f/d, SFVec4f/d.
|
|
919
662
|
|
|
920
|
-
|
|
921
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
922
|
-
|
|
923
|
-
{% capture notice-text %}
|
|
924
|
-
#### Bug Fixes
|
|
663
|
+
### Bug Fixes
|
|
925
664
|
|
|
926
665
|
- Fixed progress bar CSS in some cases.
|
|
927
666
|
- Fixed X3DBackground rendering if a GeoViewpoint is bound.
|
|
928
667
|
|
|
929
|
-
{% endcapture %}
|
|
930
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
931
|
-
|
|
932
668
|
## X_ITE v4.2.12 Released
|
|
933
669
|
|
|
934
670
|
*Leipzig, 4th December 2018:* Fixed a bugs in Text node and BrowserOptions.
|
|
935
671
|
|
|
936
|
-
|
|
937
|
-
#### Bug Fixes
|
|
672
|
+
### Bug Fixes
|
|
938
673
|
|
|
939
674
|
- Fixed fatal bug in Text node when vertical text is rendered with empty lines.
|
|
940
675
|
- Fixed bug in Text.lineBounds when vertical text is rendered with empty lines.
|
|
941
676
|
- Fixed wrong initialization of BrowserOptions.
|
|
942
677
|
|
|
943
|
-
{% endcapture %}
|
|
944
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
945
|
-
|
|
946
678
|
## X_ITE v4.2.11 Released
|
|
947
679
|
|
|
948
680
|
*Leipzig, 29th November 2018:* Fixed some bugs.
|
|
949
681
|
|
|
950
|
-
|
|
951
|
-
#### New Features
|
|
682
|
+
### New Features
|
|
952
683
|
|
|
953
684
|
- Small optimizations
|
|
954
685
|
|
|
955
|
-
|
|
956
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
957
|
-
|
|
958
|
-
{% capture notice-text %}
|
|
959
|
-
#### Bug Fixes
|
|
686
|
+
### Bug Fixes
|
|
960
687
|
|
|
961
688
|
- Fixed a bug in event handling.
|
|
962
689
|
- Fixed a bug in GeoLOD.
|
|
963
690
|
- Fixed fatal bug in ImageCubeMapTexture.
|
|
964
691
|
|
|
965
|
-
{% endcapture %}
|
|
966
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
967
|
-
|
|
968
692
|
## X_ITE v4.2.10 Released
|
|
969
693
|
|
|
970
|
-
*Leipzig, 13th November 2018:* We tested X_ITE against <
|
|
694
|
+
*Leipzig, 13th November 2018:* We tested X_ITE against <https://www.web3d.org/x3d/content/ConformanceNist/index.html> and fixed the bugs we found.
|
|
971
695
|
|
|
972
|
-
|
|
973
|
-
#### Bug Fixes
|
|
696
|
+
### Bug Fixes
|
|
974
697
|
|
|
975
698
|
- Fixed LOD level calculation when range is empty.
|
|
976
699
|
- Fixed LocalFog calculation.
|
|
@@ -978,94 +701,66 @@ for more information. Additionally we tested X_ITE against <http://www.web3d.org
|
|
|
978
701
|
- Disable collision detection when viewpoint transition is active.
|
|
979
702
|
- Use specified precision for default struct types in shader source.
|
|
980
703
|
|
|
981
|
-
{% endcapture %}
|
|
982
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
983
|
-
|
|
984
704
|
## X_ITE v4.2.9 Released
|
|
985
705
|
|
|
986
|
-
|
|
987
|
-
#### Bug Fixes
|
|
706
|
+
### Bug Fixes
|
|
988
707
|
|
|
989
708
|
- Switch sounds off when not visible.
|
|
990
709
|
- Fixed fatal bug when setting audio/video volume.
|
|
991
710
|
- Fixed Sound node volume calculation.
|
|
992
711
|
- Better interpolation from saturated color to black, white, or gray.
|
|
993
712
|
|
|
994
|
-
{% endcapture %}
|
|
995
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
996
|
-
|
|
997
713
|
## X_ITE v4.2.8 Released
|
|
998
714
|
|
|
999
|
-
*Leipzig, 31th October 2018:* The X3DCanvas element has now the onload, onshutdown, and onerror attributes and properties. There is also jQuery support for these event handler when calling jQuery.fn.on and jQuery.fn.off:
|
|
715
|
+
*Leipzig, 31th October 2018:* The X3DCanvas element has now the onload, onshutdown, and *onerror* attributes and properties. There is also jQuery support for these event handler when calling jQuery.fn.on and jQuery.fn.off:
|
|
1000
716
|
|
|
1001
717
|
```js
|
|
1002
718
|
const element = $("X3DCanvas");
|
|
1003
719
|
element .on ("load", function () { console .log ("load, yeah"); });
|
|
1004
720
|
```
|
|
1005
721
|
|
|
1006
|
-
|
|
1007
|
-
#### New Features
|
|
722
|
+
### New Features
|
|
1008
723
|
|
|
1009
|
-
- The X3DCanvas element has now the onload, onshutdown, and onerror attributes with jQuery support.
|
|
724
|
+
- The X3DCanvas element has now the onload, onshutdown, and *onerror* attributes with jQuery support.
|
|
1010
725
|
- The X3DCanvas element has now the onload, onshutdown, onerror, src, and url properties.
|
|
1011
726
|
- X_ITE now respects the tabindex setting from the X3DCanvas element.
|
|
1012
727
|
|
|
1013
|
-
|
|
1014
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1015
|
-
|
|
1016
|
-
{% capture notice-text %}
|
|
1017
|
-
#### Bug Fixes
|
|
728
|
+
### Bug Fixes
|
|
1018
729
|
|
|
1019
730
|
- Fixed bug in Extrusion orientation handling.
|
|
1020
731
|
- Better support for Extrusion with coincident spine points.
|
|
1021
732
|
|
|
1022
|
-
{% endcapture %}
|
|
1023
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1024
|
-
|
|
1025
733
|
## X_ITE v4.2.7 Released
|
|
1026
734
|
|
|
1027
735
|
*Leipzig, 29th October 2018:* This version fixes some important bugs and makes X_ITE more specification conform.
|
|
1028
736
|
|
|
1029
|
-
|
|
1030
|
-
#### Bug Fixes
|
|
737
|
+
### Bug Fixes
|
|
1031
738
|
|
|
1032
739
|
- Fixed a bug in proto instances loaded from extern prototypes.
|
|
1033
740
|
- Also parse and output XML IMPORT attribute importedDEF beside old attribute exportedDEF.
|
|
1034
741
|
- ScreenGroup and ScreenFontStyle are now respecting a scaleOrientation in the transformation hierarchy.
|
|
1035
742
|
- Fixed normal calculation of bounding boxes, it handles now special cases.
|
|
1036
743
|
|
|
1037
|
-
{% endcapture %}
|
|
1038
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1039
|
-
|
|
1040
744
|
## X_ITE v4.2.6 Released
|
|
1041
745
|
|
|
1042
746
|
*Leipzig, 14th October 2018:* With this version, X_ITE includes a new polygon tessellator, ie. X_ITE can better render concave polygons witch also affects polygon font support, which is now even better.
|
|
1043
747
|
|
|
1044
|
-
|
|
1045
|
-
#### New Features
|
|
748
|
+
### New Features
|
|
1046
749
|
|
|
1047
750
|
- Better polygon support for concave polygons.
|
|
1048
751
|
- Better polygon font rendering.
|
|
1049
752
|
- »Straighten Horizon« is now the default for EXAMINE viewer.
|
|
1050
753
|
|
|
1051
|
-
|
|
1052
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1053
|
-
|
|
1054
|
-
{% capture notice-text %}
|
|
1055
|
-
#### Bug Fixes
|
|
754
|
+
### Bug Fixes
|
|
1056
755
|
|
|
1057
756
|
- Fixed bug when parsing XML field values.
|
|
1058
757
|
- Fixed SFRotation handling of unnormalized values.
|
|
1059
758
|
|
|
1060
|
-
{% endcapture %}
|
|
1061
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1062
|
-
|
|
1063
759
|
## X_ITE v4.2.5 Released
|
|
1064
760
|
|
|
1065
761
|
*Leipzig, 1st October 2018:* This version fixes loads of bugs and added loads of small Features.
|
|
1066
762
|
|
|
1067
|
-
|
|
1068
|
-
#### New Features
|
|
763
|
+
### New Features
|
|
1069
764
|
|
|
1070
765
|
- Added »Straighten Horizon« option to context menu when EXAMINE viewer is active.
|
|
1071
766
|
- Optimized XML parser, it is now up to 60 % faster especially for large geometries.
|
|
@@ -1075,11 +770,7 @@ element .on ("load", function () { console .log ("load, yeah"); });
|
|
|
1075
770
|
- Changed X3DCanvas element focus handling, the element itself is now the focus element.
|
|
1076
771
|
- New and optimized resize handling of X3DCanvas element.
|
|
1077
772
|
|
|
1078
|
-
|
|
1079
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1080
|
-
|
|
1081
|
-
{% capture notice-text %}
|
|
1082
|
-
#### Bug Fixes
|
|
773
|
+
### Bug Fixes
|
|
1083
774
|
|
|
1084
775
|
- Fixed bug of XML output of proto with cloned root nodes.
|
|
1085
776
|
- Fixed bug when parsing JSON encoded files containing script source code.
|
|
@@ -1092,64 +783,45 @@ element .on ("load", function () { console .log ("load, yeah"); });
|
|
|
1092
783
|
- Fixed KeyDeviceSensor in some cases.
|
|
1093
784
|
- Fixed spinning of viewpoint carries over after viewpoint change.
|
|
1094
785
|
|
|
1095
|
-
{% endcapture %}
|
|
1096
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1097
|
-
|
|
1098
786
|
## X_ITE v4.2.4 Released
|
|
1099
787
|
|
|
1100
788
|
*Leipzig, 9th July 2018:* This version is primarily a bug fix version. There are also new examples online for ScalarChaser, and IndexedTriangleFanSet.
|
|
1101
789
|
|
|
1102
|
-
|
|
1103
|
-
#### Bug Fixes
|
|
790
|
+
### Bug Fixes
|
|
1104
791
|
|
|
1105
792
|
- Fixed fatal bug in X3DProgrammableShaderObject.
|
|
1106
793
|
- Small optimizations in X3DField objects.
|
|
1107
794
|
|
|
1108
|
-
{% endcapture %}
|
|
1109
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1110
|
-
|
|
1111
795
|
## X_ITE v4.2.3 Released
|
|
1112
796
|
|
|
1113
797
|
*Leipzig, 7th July 2018:* This version is primarily a bug fix version. There are also new examples online for PointSet, and IndexedLineSet.
|
|
1114
798
|
|
|
1115
|
-
|
|
1116
|
-
#### Bug Fixes
|
|
799
|
+
### Bug Fixes
|
|
1117
800
|
|
|
1118
801
|
- Fixed bug in PROTO setup.
|
|
1119
802
|
- Small optimizations in X3DArrayField.
|
|
1120
803
|
- Small optimizations in event handling.
|
|
1121
804
|
- Fixed bug in name handling when copy node.
|
|
1122
805
|
|
|
1123
|
-
{% endcapture %}
|
|
1124
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1125
|
-
|
|
1126
806
|
## X_ITE v4.2.2 Released
|
|
1127
807
|
|
|
1128
808
|
*Leipzig, 23th June 2018:* We are proud to announce that code.create3000.de is now accessible via https.
|
|
1129
809
|
|
|
1130
|
-
|
|
1131
|
-
#### New Features
|
|
810
|
+
### New Features
|
|
1132
811
|
|
|
1133
812
|
- code.create3000.de is now accessible via https
|
|
1134
813
|
|
|
1135
|
-
{% endcapture %}
|
|
1136
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1137
|
-
|
|
1138
814
|
## X_ITE v4.2.1 Released
|
|
1139
815
|
|
|
1140
816
|
*Leipzig, 17th June 2018:* This version is primarily a bug fix version.
|
|
1141
817
|
|
|
1142
|
-
|
|
1143
|
-
#### Bug Fixes
|
|
818
|
+
### Bug Fixes
|
|
1144
819
|
|
|
1145
820
|
- A real depth buffer is now used in shadow calculations.
|
|
1146
821
|
- Fixed Chrome glitches of X3DBackground node.
|
|
1147
822
|
- Fixed CSS issue.
|
|
1148
823
|
- Fixed ImageTexture issue when the texture is reused multiple times.
|
|
1149
824
|
|
|
1150
|
-
{% endcapture %}
|
|
1151
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1152
|
-
|
|
1153
825
|
## X_ITE v4.2.0 Released
|
|
1154
826
|
|
|
1155
827
|
DirectionalLight, SpotLight, and PointLight are now able to cast shadows. Let’s details them. A directional light is when light rays are parallel. A bit like when you look at the sun rays on the left. It mostly behaves like a light source very far from us. A spot light is when light rays seems to originate from a single point, and spreads outward in a coned direction, like in a dance club. To enable the shadow casting on a light, just adjust *shadowIntensity* of the light.
|
|
@@ -1174,41 +846,32 @@ You can tune the *shadowIntensity*. It is the intensity of the shadow. 0 means n
|
|
|
1174
846
|
|
|
1175
847
|
*Leipzig, 27th May 2018:* This version is primarily a bug fix version.
|
|
1176
848
|
|
|
1177
|
-
|
|
1178
|
-
#### Bug Fixes
|
|
849
|
+
### Bug Fixes
|
|
1179
850
|
|
|
1180
851
|
- Fixed fatal bug in Classic VRML parser.
|
|
1181
852
|
- Fixed LOD.level\_changed event handling.
|
|
1182
853
|
- Fixed bug when rendering opaque objects.
|
|
1183
854
|
|
|
1184
|
-
{% endcapture %}
|
|
1185
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1186
|
-
|
|
1187
855
|
## X_ITE v4.1.6 Released
|
|
1188
856
|
|
|
1189
857
|
*Leipzig, 24th May 2018:* Thank's to Ammo (Bullet) physics engine we have implemented a lot of new nodes of the RigidBodyPhysics component. Most of the documentation pages of this component have a live example for this node. The component is realized as plug-in which can be include right after the X_ITE.js script tag.
|
|
1190
858
|
|
|
1191
859
|
```html
|
|
1192
|
-
<link rel="stylesheet" href="
|
|
1193
|
-
<script src="
|
|
860
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/create3000/x_ite@4.1.6/dist/x_ite.css"/>
|
|
861
|
+
<script src="https://cdn.jsdelivr.net/gh/create3000/x_ite@4.1.6/dist/x_ite.min.js"></script>
|
|
1194
862
|
<!-- Include the following plug-ins if you wish support for this component -->
|
|
1195
|
-
<script src="
|
|
863
|
+
<script src="https://cdn.jsdelivr.net/gh/create3000/x_ite@4.1.6/dist/rigid-body-physics.min.js"></script>
|
|
1196
864
|
```
|
|
1197
865
|
|
|
1198
|
-
|
|
1199
|
-
#### New Features
|
|
866
|
+
### New Features
|
|
1200
867
|
|
|
1201
868
|
- RigidBodyPhysics component
|
|
1202
869
|
|
|
1203
|
-
{% endcapture %}
|
|
1204
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1205
|
-
|
|
1206
870
|
## X_ITE v4.1.5 Released
|
|
1207
871
|
|
|
1208
872
|
*Leipzig, 14th March 2018:* We finally released version 4.1.5 now. With this version it is now possible to load X3D JSON encoded files. We implemented touch device support for all viewers and nodes derived form X3DPointingDeviceSensorNode and Anchor. This means tablets and smart phones are now fully supported. There are also a lot of other bug fixes.
|
|
1209
873
|
|
|
1210
|
-
|
|
1211
|
-
#### New Features
|
|
874
|
+
### New Features
|
|
1212
875
|
|
|
1213
876
|
- JSON file loader
|
|
1214
877
|
- Touch device support for all Viewers and TouchSensor nodes
|
|
@@ -1219,68 +882,49 @@ You can tune the *shadowIntensity*. It is the intensity of the shadow. 0 means n
|
|
|
1219
882
|
- New »StraigtenHorizon« browser option
|
|
1220
883
|
- Better rendering of Text in some cases
|
|
1221
884
|
|
|
1222
|
-
|
|
1223
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1224
|
-
|
|
1225
|
-
{% capture notice-text %}
|
|
1226
|
-
#### Bug Fixes
|
|
885
|
+
### Bug Fixes
|
|
1227
886
|
|
|
1228
887
|
- Less memory footprint
|
|
1229
888
|
- Fixed IndexedTriangleSet attribute handling
|
|
1230
889
|
- and more bug fixes
|
|
1231
890
|
|
|
1232
|
-
{% endcapture %}
|
|
1233
|
-
<div class="notice--success">{{ notice-text | markdownify }}</div>
|
|
1234
|
-
|
|
1235
891
|
## X_ITE v4.1.4 Released
|
|
1236
892
|
|
|
1237
|
-
*Leipzig, 11th January 2018:* We finally released version 4.1.4 now. X_ITE has become a huge change in the shader specification. It is now even more like GLSL. There are new uniform variables *x3d\_LightSourceParameters, x3d\_MaterialParameters,* and *x3d\_FogParameters.* Old shaders are fully compatible with this version, although old shader light and material uniforms are depreciated. For more information have a look at
|
|
893
|
+
*Leipzig, 11th January 2018:* We finally released version 4.1.4 now. X_ITE has become a huge change in the shader specification. It is now even more like GLSL. There are new uniform variables *x3d\_LightSourceParameters, x3d\_MaterialParameters,* and *x3d\_FogParameters.* Old shaders are fully compatible with this version, although old shader light and material uniforms are depreciated. For more information have a look at <custom-shaders>.
|
|
1238
894
|
|
|
1239
895
|
## X_ITE v4.1.3 Released
|
|
1240
896
|
|
|
1241
|
-
*Leipzig, 25th December 2017:* There is now the new BlendMode node in X_ITE available, which gives X3D authors the ability to specify the WebGL blend modes for a node. The node is a X3DAppearance child node and can be assigned the the new *blendMode* field of a Appearance node. Shader authors have now more control over particle systems, there are three new build in variables available in shaders: *x3d\_ParticleId, x3d\_ParticleLife, x3d\_ParticleElapsedTime, x3d\_ParticlePosition.* For more information have a look at
|
|
897
|
+
*Leipzig, 25th December 2017:* There is now the new BlendMode node in X_ITE available, which gives X3D authors the ability to specify the WebGL blend modes for a node. The node is a X3DAppearance child node and can be assigned the the new *blendMode* field of a Appearance node. Shader authors have now more control over particle systems, there are three new build in variables available in shaders: *x3d\_ParticleId, x3d\_ParticleLife, x3d\_ParticleElapsedTime, x3d\_ParticlePosition.* For more information have a look at <custom-shaders>.
|
|
1242
898
|
|
|
1243
899
|
## X_ITE v4.1.2 Released
|
|
1244
900
|
|
|
1245
901
|
*Leipzig, 8th December 2017:* Titania supports now the whole ParticleSystem component with the default graphics card driver Nouveau. During the implementation we found some optimization to speed up the ParticleSystem node in X_ITE. Additionally we could fix three bug.
|
|
1246
902
|
|
|
1247
|
-
|
|
1248
|
-
#### New Features Bug Fixes
|
|
903
|
+
### New Features Bug Fixes
|
|
1249
904
|
|
|
1250
905
|
- Small optimizations Bug Fixes in ParticleSystem node.
|
|
1251
906
|
- Added x3d\_CameraSpaceMatrix to ComposedShader build-in variables.
|
|
1252
907
|
- Fixed a bug in X3DBackground node when displayed with GeneratedCubeMapTexture node.
|
|
1253
908
|
- Fixed fatal bug in MFImage.
|
|
1254
909
|
|
|
1255
|
-
{% endcapture %}
|
|
1256
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1257
|
-
|
|
1258
910
|
## X_ITE v4.1.1 Released
|
|
1259
911
|
|
|
1260
912
|
*Leipzig, 23rd November 2017:* We fixed a bug in load count handling of the splash screen, ie. if the *splashScreen* attribute of the X3DCanvas element is true, the scene is first displayed if all objects and textures are completely loaded. An examination of the source code has revealed this mistake in the networking nodes.
|
|
1261
913
|
|
|
1262
|
-
|
|
1263
|
-
#### New Features Bug Fixes
|
|
914
|
+
### New Features Bug Fixes
|
|
1264
915
|
|
|
1265
916
|
- Fixed a bug in load count handling of the splash screen
|
|
1266
917
|
|
|
1267
|
-
{% endcapture %}
|
|
1268
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1269
|
-
|
|
1270
918
|
## X_ITE v4.1.0 Released
|
|
1271
919
|
|
|
1272
920
|
*Leipzig, 22nd November 2017:* This completely implements the unit statement. Now units are parsed and all field values are converted. Additionally we could optimize X3DGroupingNode.removeChildren. It is now up to 20 % faster, especially if there are many children.
|
|
1273
921
|
|
|
1274
|
-
|
|
1275
|
-
#### New Features Bug Fixes
|
|
922
|
+
### New Features Bug Fixes
|
|
1276
923
|
|
|
1277
924
|
- Fixed bug in CADLayer.addChildren
|
|
1278
925
|
- Optimized X3DGroupingNode.removeChildren
|
|
1279
926
|
- Implemented units handling
|
|
1280
927
|
|
|
1281
|
-
{% endcapture %}
|
|
1282
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1283
|
-
|
|
1284
928
|
## Cobweb is now X_ITE
|
|
1285
929
|
|
|
1286
930
|
*Leipzig, 23rd August 2017:* Cobweb is now **X_ITE.** We changed its name to X_ITE to better reflect the purpose and design of X3D. Though the project's name may have changed, its programming still includes correctness, usability, flexibility, extensibility, and safety.
|
|
@@ -1288,14 +932,13 @@ You can tune the *shadowIntensity*. It is the intensity of the shadow. 0 means n
|
|
|
1288
932
|
X_ITE is now available from our own server at code.create3000.de. Just include the following URL's into your HTML and you are up to date again:
|
|
1289
933
|
|
|
1290
934
|
```html
|
|
1291
|
-
<link rel="stylesheet" href="
|
|
1292
|
-
<script src="
|
|
935
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/create3000/x_ite@4.0.7/dist/x_ite.css"/>
|
|
936
|
+
<script src="https://cdn.jsdelivr.net/gh/create3000/x_ite@4.0.7/dist/x_ite.min.js"></script>
|
|
1293
937
|
```
|
|
1294
938
|
|
|
1295
939
|
Additionally X_ITE is now available via GitHub CDN and jsDelivr CDN.
|
|
1296
940
|
|
|
1297
|
-
|
|
1298
|
-
#### New Features Bug Fixes
|
|
941
|
+
### New Features Bug Fixes
|
|
1299
942
|
|
|
1300
943
|
- Better font support for polygon text.
|
|
1301
944
|
- Fixed fog rendering with Gouraud shading in some cases.
|
|
@@ -1313,9 +956,6 @@ Additionally X_ITE is now available via GitHub CDN and jsDelivr CDN.
|
|
|
1313
956
|
- Package is now available via code.create3000.de and jsDelivr.
|
|
1314
957
|
- NPM is now the package management system.
|
|
1315
958
|
|
|
1316
|
-
{% endcapture %}
|
|
1317
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1318
|
-
|
|
1319
959
|
## Cobweb 3.3 Released
|
|
1320
960
|
|
|
1321
961
|
*Leipzig, 15th August 2017:* Accessing the external browser has changed a little. The *elements* callback has been removed from the arguments of the callback functions, which are passed to the X3D function. See Accessing the External Browser for further details.
|
|
@@ -1327,14 +967,7 @@ There are new URL's for cobweb.min.js and cobweb.css. Use the following location
|
|
|
1327
967
|
<script src="https://cdn.rawgit.com/create3000/cobweb/3.3/dist/cobweb.min.js"></script>
|
|
1328
968
|
```
|
|
1329
969
|
|
|
1330
|
-
###
|
|
1331
|
-
|
|
1332
|
-
If you still use an old stable version from Cobweb you must changed the URL for the stable folder to:
|
|
1333
|
-
|
|
1334
|
-
<https://cdn.rawgit.com/create3000/cobweb/releases/>
|
|
1335
|
-
|
|
1336
|
-
{% capture notice-text %}
|
|
1337
|
-
#### New Features Bug Fixes
|
|
970
|
+
### New Features Bug Fixes
|
|
1338
971
|
|
|
1339
972
|
- Changed external browser access.
|
|
1340
973
|
- Fixed default values of certain nodes (IntegerTrigger, ArcClose2D, Disk2D, Rectangle2D, TriangleSet2D, GeoViewpoint, DirectionalLight, Viewpoint, ConeEmitter, CylinderSensor).
|
|
@@ -1343,15 +976,11 @@ If you still use an old stable version from Cobweb you must changed the URL for
|
|
|
1343
976
|
- X3DExecutionContext.getImportedNode operates now correct if importedName is undefined.
|
|
1344
977
|
- SFBool.valueOf return now a native JavaScript value.
|
|
1345
978
|
|
|
1346
|
-
{% endcapture %}
|
|
1347
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1348
|
-
|
|
1349
979
|
## Cobweb 3.2 Released
|
|
1350
980
|
|
|
1351
981
|
*Leipzig, 29th April 2017:* The X3DCanvas element becomes a major change in its CSS styles, it is now similar to the HTML5 canvas element a display *inline-block* element instead of *block* with a default width and height of 300 × 150 pixels. Additionally there are four new attributes *splashScreen, notifications, timings,* and *contextMenu*, these attribute are especially useful if the X3DCanvas element is very small. Have a look at »Attributes of the X3DCanvas Element« to see how these attributes work. Additionally we changed the data type mapping of SF/MFRotation in custom shaders from *uniform vec4* quaternion representation to *uniform mat3* 3×3 rotation matrix representation, which are easier to operate with.
|
|
1352
982
|
|
|
1353
|
-
|
|
1354
|
-
#### New Features Bug Fixes
|
|
983
|
+
### New Features Bug Fixes
|
|
1355
984
|
|
|
1356
985
|
- Changed default CSS style display of X3DCanvas element to *inline-block.*
|
|
1357
986
|
- Changed default width and height of X3DCanvas element to 300 × 150 pixels.
|
|
@@ -1360,23 +989,19 @@ If you still use an old stable version from Cobweb you must changed the URL for
|
|
|
1360
989
|
- Implemented SFColorRGBA.prototype.set/getHSVA.
|
|
1361
990
|
- Use *uniform mat3* in custom shaders for SF/MFRotation fields.
|
|
1362
991
|
|
|
1363
|
-
{% endcapture %}
|
|
1364
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1365
|
-
|
|
1366
992
|
## Cobweb 3.1 Released
|
|
1367
993
|
|
|
1368
994
|
*Leipzig, 13th April 2017:* We finally released version 3.1 now. This release is a bug fix release and fixes a fatal bug with shader uniform handling. Thanks to Sgeo. Externprotos have now the missing loadNow function implemented, although this function is normally not needed.
|
|
1369
995
|
|
|
1370
996
|
## Cobweb 3.0 Released
|
|
1371
997
|
|
|
1372
|
-
*Leipzig, 12th April 2017:* We finally released version 3.0 now. All fields derived from X3DArrayField have now two new functions *»push«* and *»unshift«* which operate like the corresponding JavaScript Array functions. All fields derived from X3DField have now a new function *»equals«* which makes it easy to compare two field values. The XMLParser was reworked and is now more secure and several issues are fixed. And last but not least we are proud to announce that prototypes do completely work now with
|
|
998
|
+
*Leipzig, 12th April 2017:* We finally released version 3.0 now. All fields derived from X3DArrayField have now two new functions *»push«* and *»unshift«* which operate like the corresponding JavaScript Array functions. All fields derived from X3DField have now a new function *»equals«* which makes it easy to compare two field values. The XMLParser was reworked and is now more secure and several issues are fixed. And last but not least we are proud to announce that prototypes do completely work now with XHTML DOM Integration.
|
|
1373
999
|
|
|
1374
1000
|

|
|
1375
1001
|
|
|
1376
1002
|
<small>New Shader Example »Mountains«</small>
|
|
1377
1003
|
|
|
1378
|
-
|
|
1379
|
-
#### New Features Bug Fixes
|
|
1004
|
+
### New Features Bug Fixes
|
|
1380
1005
|
|
|
1381
1006
|
- New shader uniform x3d\_ViewportPrototypes do completely work now with DOM Integration.
|
|
1382
1007
|
- Implemented X3DArrayField push and unshift
|
|
@@ -1386,9 +1011,6 @@ If you still use an old stable version from Cobweb you must changed the URL for
|
|
|
1386
1011
|
- Fixed issue with touch sensibility of Disk2D
|
|
1387
1012
|
- Fixed an issue of X3DPrototypeInstance in toXMLString
|
|
1388
1013
|
|
|
1389
|
-
{% endcapture %}
|
|
1390
|
-
<div class="notice--info">{{ notice-text | markdownify }}</div>
|
|
1391
|
-
|
|
1392
1014
|
## First Version
|
|
1393
1015
|
|
|
1394
1016
|
The first version of X_ITE was created in April 2015. It was still called Cobweb.
|