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,822 +1,825 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
title: Getting Started
|
|
3
|
+
date: 2022-11-28
|
|
4
|
+
nav: main
|
|
5
|
+
categories: []
|
|
6
|
+
tags: [getting, started]
|
|
7
|
+
permalink: /
|
|
8
|
+
x_ite: true
|
|
6
9
|
---
|
|
7
|
-
# Getting Started
|
|
8
|
-
|
|
9
10
|
## Overview
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
X_ITE is a new 3D JavaScript library entirely written in JavaScript and uses WebGL for 3D rendering. Authors can publish X3D and VRML source online within an HTML5 page with X_ITE that works with Web browsers **without** prior plugin installation. This gives X3D authors the ability to displays content in 3D, using WebGL 3D graphics technology to display X3D content in several different browsers across several different operating systems. Since X3D is backwardly compatible, X_ITE can also be used as a VRML viewer.
|
|
12
13
|
|
|
13
14
|
X3D is an ISO-ratified, royalty-free open standards file format and run-time architecture to represent and communicate 3D scenes and objects specified by the Web 3D Consortium. X3D has evolved from its beginnings as the Virtual Reality Modeling Language (VRML) to the considerably more mature and refined ISO X3D standard. X3D provides a system for the storage, retrieval and playback of real time 3D scene in multiple applications, all within an open architecture to support a wide array of domains and user scenarios.
|
|
14
15
|
|
|
15
|
-
|
|
16
|
+
X_ITE supports custom shaders, clip planes, reflection mapping, script nodes, prototyping capabilities and event driven programming to provide you with an improved quality level of virtual effects and tools ready for the Internet.
|
|
16
17
|
|
|
17
|
-
|
|
18
|
-
{: .
|
|
18
|
+
>**Tip:** X_ITE runs best in fresh installs of Google Chrome, Chromium, Firefox, Safari, Opera, and Microsoft Edge. X_ITE uses the latest JavaScript standard, but is also compatible with older browser, and is available both on your desktop computer and on your modern smart-phone.
|
|
19
|
+
{: .prompt-tip }
|
|
19
20
|
|
|
20
|
-
If you ever get in trouble, please [
|
|
21
|
+
If you ever get in trouble, please [report a bug](report-a-bug).
|
|
21
22
|
|
|
22
23
|
## X3D Examples
|
|
23
24
|
|
|
25
|
+
<script type="module" src="assets/js/example.js"></script>
|
|
26
|
+
|
|
24
27
|
<table class="examples">
|
|
25
28
|
<tr>
|
|
26
29
|
<td>
|
|
27
|
-
<a href="https://create3000.github.io/media/examples/X3D/
|
|
28
|
-
<img src="https://create3000.github.io/media/examples/X3D/
|
|
30
|
+
<a href="https://create3000.github.io/media/examples/X3D/Apartment/Apartment.x3d" title="X3D » Apartment">
|
|
31
|
+
<img src="https://create3000.github.io/media/examples/X3D/Apartment/screenshot-small.png" alt="Apartment"/>
|
|
29
32
|
</a>
|
|
30
33
|
</td>
|
|
31
34
|
<td>
|
|
32
|
-
<a href="https://create3000.github.io/media/examples/X3D/Approach/
|
|
35
|
+
<a href="https://create3000.github.io/media/examples/X3D/Approach/Approach.x3d" title="X3D » Approach">
|
|
33
36
|
<img src="https://create3000.github.io/media/examples/X3D/Approach/screenshot-small.png" alt="Approach"/>
|
|
34
37
|
</a>
|
|
35
38
|
</td>
|
|
36
39
|
<td>
|
|
37
|
-
<a href="https://create3000.github.io/media/examples/X3D/Arcadia/
|
|
40
|
+
<a href="https://create3000.github.io/media/examples/X3D/Arcadia/Arcadia.x3d" title="X3D » Arcadia">
|
|
38
41
|
<img src="https://create3000.github.io/media/examples/X3D/Arcadia/screenshot-small.png" alt="Arcadia"/>
|
|
39
42
|
</a>
|
|
40
43
|
</td>
|
|
41
44
|
<td>
|
|
42
|
-
<a href="https://create3000.github.io/media/examples/X3D/Astronomy/
|
|
45
|
+
<a href="https://create3000.github.io/media/examples/X3D/Astronomy/Astronomy.x3d" title="X3D » Astronomy">
|
|
43
46
|
<img src="https://create3000.github.io/media/examples/X3D/Astronomy/screenshot-small.png" alt="Astronomy"/>
|
|
44
47
|
</a>
|
|
45
48
|
</td>
|
|
46
49
|
<td>
|
|
47
|
-
<a href="https://create3000.github.io/media/examples/X3D/BIC/
|
|
50
|
+
<a href="https://create3000.github.io/media/examples/X3D/BIC/BIC.x3d" title="X3D » BIC">
|
|
48
51
|
<img src="https://create3000.github.io/media/examples/X3D/BIC/screenshot-small.png" alt="BIC"/>
|
|
49
52
|
</a>
|
|
50
53
|
</td>
|
|
51
54
|
<td>
|
|
52
|
-
<a href="https://create3000.github.io/media/examples/X3D/BeyondGermany/
|
|
55
|
+
<a href="https://create3000.github.io/media/examples/X3D/BeyondGermany/BeyondGermany.x3d" title="X3D » BeyondGermany">
|
|
53
56
|
<img src="https://create3000.github.io/media/examples/X3D/BeyondGermany/screenshot-small.png" alt="BeyondGermany"/>
|
|
54
57
|
</a>
|
|
55
58
|
</td>
|
|
56
59
|
<td>
|
|
57
|
-
<a href="https://create3000.github.io/media/examples/X3D/Chomp/
|
|
60
|
+
<a href="https://create3000.github.io/media/examples/X3D/Chomp/Chomp.x3d" title="X3D » Chomp">
|
|
58
61
|
<img src="https://create3000.github.io/media/examples/X3D/Chomp/screenshot-small.png" alt="Chomp"/>
|
|
59
62
|
</a>
|
|
60
63
|
</td>
|
|
61
64
|
</tr>
|
|
62
65
|
<tr>
|
|
63
66
|
<td>
|
|
64
|
-
<a href="https://create3000.github.io/media/examples/X3D/Circles/
|
|
67
|
+
<a href="https://create3000.github.io/media/examples/X3D/Circles/Circles.x3d" title="X3D » Circles">
|
|
65
68
|
<img src="https://create3000.github.io/media/examples/X3D/Circles/screenshot-small.png" alt="Circles"/>
|
|
66
69
|
</a>
|
|
67
70
|
</td>
|
|
68
71
|
<td>
|
|
69
|
-
<a href="https://create3000.github.io/media/examples/X3D/CrazySpiral/
|
|
72
|
+
<a href="https://create3000.github.io/media/examples/X3D/CrazySpiral/CrazySpiral.x3d" title="X3D » CrazySpiral">
|
|
70
73
|
<img src="https://create3000.github.io/media/examples/X3D/CrazySpiral/screenshot-small.png" alt="CrazySpiral"/>
|
|
71
74
|
</a>
|
|
72
75
|
</td>
|
|
73
76
|
<td>
|
|
74
|
-
<a href="https://create3000.github.io/media/examples/X3D/Currencies/
|
|
77
|
+
<a href="https://create3000.github.io/media/examples/X3D/Currencies/Currencies.x3d" title="X3D » Currencies">
|
|
75
78
|
<img src="https://create3000.github.io/media/examples/X3D/Currencies/screenshot-small.png" alt="Currencies"/>
|
|
76
79
|
</a>
|
|
77
80
|
</td>
|
|
78
81
|
<td>
|
|
79
|
-
<a href="https://create3000.github.io/media/examples/X3D/FlashingLights/
|
|
82
|
+
<a href="https://create3000.github.io/media/examples/X3D/FlashingLights/FlashingLights.x3d" title="X3D » FlashingLights">
|
|
80
83
|
<img src="https://create3000.github.io/media/examples/X3D/FlashingLights/screenshot-small.png" alt="FlashingLights"/>
|
|
81
84
|
</a>
|
|
82
85
|
</td>
|
|
83
86
|
<td>
|
|
84
|
-
<a href="https://create3000.github.io/media/examples/X3D/FoldUp/
|
|
87
|
+
<a href="https://create3000.github.io/media/examples/X3D/FoldUp/FoldUp.x3d" title="X3D » FoldUp">
|
|
85
88
|
<img src="https://create3000.github.io/media/examples/X3D/FoldUp/screenshot-small.png" alt="FoldUp"/>
|
|
86
89
|
</a>
|
|
87
90
|
</td>
|
|
88
91
|
<td>
|
|
89
|
-
<a href="https://create3000.github.io/media/examples/X3D/LogoPieces/
|
|
92
|
+
<a href="https://create3000.github.io/media/examples/X3D/LogoPieces/LogoPieces.x3d" title="X3D » LogoPieces">
|
|
90
93
|
<img src="https://create3000.github.io/media/examples/X3D/LogoPieces/screenshot-small.png" alt="LogoPieces"/>
|
|
91
94
|
</a>
|
|
92
95
|
</td>
|
|
93
96
|
<td>
|
|
94
|
-
<a href="https://create3000.github.io/media/examples/X3D/LustForLife/
|
|
97
|
+
<a href="https://create3000.github.io/media/examples/X3D/LustForLife/LustForLife.x3d" title="X3D » LustForLife">
|
|
95
98
|
<img src="https://create3000.github.io/media/examples/X3D/LustForLife/screenshot-small.png" alt="LustForLife"/>
|
|
96
99
|
</a>
|
|
97
100
|
</td>
|
|
98
101
|
</tr>
|
|
99
102
|
<tr>
|
|
100
103
|
<td>
|
|
101
|
-
<a href="https://create3000.github.io/media/examples/X3D/MagicMushrooms/
|
|
104
|
+
<a href="https://create3000.github.io/media/examples/X3D/MagicMushrooms/MagicMushrooms.x3d" title="X3D » MagicMushrooms">
|
|
102
105
|
<img src="https://create3000.github.io/media/examples/X3D/MagicMushrooms/screenshot-small.png" alt="MagicMushrooms"/>
|
|
103
106
|
</a>
|
|
104
107
|
</td>
|
|
105
108
|
<td>
|
|
106
|
-
<a href="https://create3000.github.io/media/examples/X3D/
|
|
107
|
-
<img src="https://create3000.github.io/media/examples/X3D/
|
|
109
|
+
<a href="https://create3000.github.io/media/examples/X3D/MilkyWayAndBeyond/MilkyWayAndBeyond.x3d" title="X3D » MilkyWayAndBeyond">
|
|
110
|
+
<img src="https://create3000.github.io/media/examples/X3D/MilkyWayAndBeyond/screenshot-small.png" alt="MilkyWayAndBeyond"/>
|
|
108
111
|
</a>
|
|
109
112
|
</td>
|
|
110
113
|
<td>
|
|
111
|
-
<a href="https://create3000.github.io/media/examples/X3D/NYC/
|
|
114
|
+
<a href="https://create3000.github.io/media/examples/X3D/NYC/NYC.x3d" title="X3D » NYC">
|
|
112
115
|
<img src="https://create3000.github.io/media/examples/X3D/NYC/screenshot-small.png" alt="NYC"/>
|
|
113
116
|
</a>
|
|
114
117
|
</td>
|
|
115
118
|
<td>
|
|
116
|
-
<a href="https://create3000.github.io/media/examples/X3D/Pong/
|
|
119
|
+
<a href="https://create3000.github.io/media/examples/X3D/Pong/Pong.x3d" title="X3D » Pong">
|
|
117
120
|
<img src="https://create3000.github.io/media/examples/X3D/Pong/screenshot-small.png" alt="Pong"/>
|
|
118
121
|
</a>
|
|
119
122
|
</td>
|
|
120
123
|
<td>
|
|
121
|
-
<a href="https://create3000.github.io/media/examples/X3D/SecretLabyrinth/
|
|
124
|
+
<a href="https://create3000.github.io/media/examples/X3D/SecretLabyrinth/SecretLabyrinth.x3d" title="X3D » SecretLabyrinth">
|
|
122
125
|
<img src="https://create3000.github.io/media/examples/X3D/SecretLabyrinth/screenshot-small.png" alt="SecretLabyrinth"/>
|
|
123
126
|
</a>
|
|
124
127
|
</td>
|
|
125
128
|
<td>
|
|
126
|
-
<a href="https://create3000.github.io/media/examples/X3D/SlidingPuzzle/
|
|
129
|
+
<a href="https://create3000.github.io/media/examples/X3D/SlidingPuzzle/SlidingPuzzle.x3d" title="X3D » SlidingPuzzle">
|
|
127
130
|
<img src="https://create3000.github.io/media/examples/X3D/SlidingPuzzle/screenshot-small.png" alt="SlidingPuzzle"/>
|
|
128
131
|
</a>
|
|
129
132
|
</td>
|
|
130
133
|
<td>
|
|
131
|
-
<a href="https://create3000.github.io/media/examples/X3D/SmartyBubbles/
|
|
134
|
+
<a href="https://create3000.github.io/media/examples/X3D/SmartyBubbles/SmartyBubbles.x3d" title="X3D » SmartyBubbles">
|
|
132
135
|
<img src="https://create3000.github.io/media/examples/X3D/SmartyBubbles/screenshot-small.png" alt="SmartyBubbles"/>
|
|
133
136
|
</a>
|
|
134
137
|
</td>
|
|
135
138
|
</tr>
|
|
136
139
|
<tr>
|
|
137
140
|
<td>
|
|
138
|
-
<a href="https://create3000.github.io/media/examples/X3D/SmashingBoxes/
|
|
141
|
+
<a href="https://create3000.github.io/media/examples/X3D/SmashingBoxes/SmashingBoxes.x3d" title="X3D » SmashingBoxes">
|
|
139
142
|
<img src="https://create3000.github.io/media/examples/X3D/SmashingBoxes/screenshot-small.png" alt="SmashingBoxes"/>
|
|
140
143
|
</a>
|
|
141
144
|
</td>
|
|
142
145
|
<td>
|
|
143
|
-
<a href="https://create3000.github.io/media/examples/X3D/SugarSmack/
|
|
146
|
+
<a href="https://create3000.github.io/media/examples/X3D/SugarSmack/SugarSmack.x3d" title="X3D » SugarSmack">
|
|
144
147
|
<img src="https://create3000.github.io/media/examples/X3D/SugarSmack/screenshot-small.png" alt="SugarSmack"/>
|
|
145
148
|
</a>
|
|
146
149
|
</td>
|
|
147
150
|
<td>
|
|
148
|
-
<a href="https://create3000.github.io/media/examples/X3D/TikiWorld/
|
|
151
|
+
<a href="https://create3000.github.io/media/examples/X3D/TikiWorld/TikiWorld.x3d" title="X3D » TikiWorld">
|
|
149
152
|
<img src="https://create3000.github.io/media/examples/X3D/TikiWorld/screenshot-small.png" alt="TikiWorld"/>
|
|
150
153
|
</a>
|
|
151
154
|
</td>
|
|
152
155
|
<td>
|
|
153
|
-
<a href="https://create3000.github.io/media/examples/X3D/TreasureIsland/
|
|
156
|
+
<a href="https://create3000.github.io/media/examples/X3D/TreasureIsland/TreasureIsland.x3d" title="X3D » TreasureIsland">
|
|
154
157
|
<img src="https://create3000.github.io/media/examples/X3D/TreasureIsland/screenshot-small.png" alt="TreasureIsland"/>
|
|
155
158
|
</a>
|
|
156
159
|
</td>
|
|
157
160
|
<td>
|
|
158
|
-
<a href="https://create3000.github.io/media/examples/X3D/Vattenfall/
|
|
161
|
+
<a href="https://create3000.github.io/media/examples/X3D/Vattenfall/Vattenfall.x3d" title="X3D » Vattenfall">
|
|
159
162
|
<img src="https://create3000.github.io/media/examples/X3D/Vattenfall/screenshot-small.png" alt="Vattenfall"/>
|
|
160
163
|
</a>
|
|
161
164
|
</td>
|
|
162
165
|
<td>
|
|
163
|
-
<a href="https://create3000.github.io/media/examples/X3D/WaterQuality/
|
|
166
|
+
<a href="https://create3000.github.io/media/examples/X3D/WaterQuality/WaterQuality.x3d" title="X3D » WaterQuality">
|
|
164
167
|
<img src="https://create3000.github.io/media/examples/X3D/WaterQuality/screenshot-small.png" alt="WaterQuality"/>
|
|
165
168
|
</a>
|
|
166
169
|
</td>
|
|
167
170
|
<td>
|
|
168
|
-
<a href="https://create3000.github.io/media/examples/CADGeometry/QuadSet/
|
|
171
|
+
<a href="https://create3000.github.io/media/examples/CADGeometry/QuadSet/QuadSet.x3d" title="CADGeometry » QuadSet">
|
|
169
172
|
<img src="https://create3000.github.io/media/examples/CADGeometry/QuadSet/screenshot-small.png" alt="QuadSet"/>
|
|
170
173
|
</a>
|
|
171
174
|
</td>
|
|
172
175
|
</tr>
|
|
173
176
|
<tr>
|
|
174
177
|
<td>
|
|
175
|
-
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/ComposedCubeMapTexture/
|
|
178
|
+
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/ComposedCubeMapTexture/ComposedCubeMapTexture.x3d" title="CubeMapTexturing » ComposedCubeMapTexture">
|
|
176
179
|
<img src="https://create3000.github.io/media/examples/CubeMapTexturing/ComposedCubeMapTexture/screenshot-small.png" alt="ComposedCubeMapTexture"/>
|
|
177
180
|
</a>
|
|
178
181
|
</td>
|
|
179
182
|
<td>
|
|
180
|
-
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/GeneratedCubeMapTexture/
|
|
183
|
+
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/GeneratedCubeMapTexture/GeneratedCubeMapTexture.x3d" title="CubeMapTexturing » GeneratedCubeMapTexture">
|
|
181
184
|
<img src="https://create3000.github.io/media/examples/CubeMapTexturing/GeneratedCubeMapTexture/screenshot-small.png" alt="GeneratedCubeMapTexture"/>
|
|
182
185
|
</a>
|
|
183
186
|
</td>
|
|
184
187
|
<td>
|
|
185
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/
|
|
188
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/Background.x3d" title="EnvironmentalEffects » Background">
|
|
186
189
|
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/screenshot-small.png" alt="Background"/>
|
|
187
190
|
</a>
|
|
188
191
|
</td>
|
|
189
192
|
<td>
|
|
190
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/
|
|
193
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/Fog.x3d" title="EnvironmentalEffects » Fog">
|
|
191
194
|
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/screenshot-small.png" alt="Fog"/>
|
|
192
195
|
</a>
|
|
193
196
|
</td>
|
|
194
197
|
<td>
|
|
195
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/LocalFog/
|
|
198
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/LocalFog/LocalFog.x3d" title="EnvironmentalEffects » LocalFog">
|
|
196
199
|
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/LocalFog/screenshot-small.png" alt="LocalFog"/>
|
|
197
200
|
</a>
|
|
198
201
|
</td>
|
|
199
202
|
<td>
|
|
200
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/TextureBackground/
|
|
203
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/TextureBackground/TextureBackground.x3d" title="EnvironmentalEffects » TextureBackground">
|
|
201
204
|
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/TextureBackground/screenshot-small.png" alt="TextureBackground"/>
|
|
202
205
|
</a>
|
|
203
206
|
</td>
|
|
204
207
|
<td>
|
|
205
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/ProximitySensor/
|
|
208
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/ProximitySensor/ProximitySensor.x3d" title="EnvironmentalSensor » ProximitySensor">
|
|
206
209
|
<img src="https://create3000.github.io/media/examples/EnvironmentalSensor/ProximitySensor/screenshot-small.png" alt="ProximitySensor"/>
|
|
207
210
|
</a>
|
|
208
211
|
</td>
|
|
209
212
|
</tr>
|
|
210
213
|
<tr>
|
|
211
214
|
<td>
|
|
212
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/TransformSensor/
|
|
215
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/TransformSensor/TransformSensor.x3d" title="EnvironmentalSensor » TransformSensor">
|
|
213
216
|
<img src="https://create3000.github.io/media/examples/EnvironmentalSensor/TransformSensor/screenshot-small.png" alt="TransformSensor"/>
|
|
214
217
|
</a>
|
|
215
218
|
</td>
|
|
216
219
|
<td>
|
|
217
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/VisibilitySensor/
|
|
220
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/VisibilitySensor/VisibilitySensor.x3d" title="EnvironmentalSensor » VisibilitySensor">
|
|
218
221
|
<img src="https://create3000.github.io/media/examples/EnvironmentalSensor/VisibilitySensor/screenshot-small.png" alt="VisibilitySensor"/>
|
|
219
222
|
</a>
|
|
220
223
|
</td>
|
|
221
224
|
<td>
|
|
222
|
-
<a href="https://create3000.github.io/media/examples/EventUtilities/IntegerSequencer/
|
|
225
|
+
<a href="https://create3000.github.io/media/examples/EventUtilities/IntegerSequencer/IntegerSequencer.x3d" title="EventUtilities » IntegerSequencer">
|
|
223
226
|
<img src="https://create3000.github.io/media/examples/EventUtilities/IntegerSequencer/screenshot-small.png" alt="IntegerSequencer"/>
|
|
224
227
|
</a>
|
|
225
228
|
</td>
|
|
226
229
|
<td>
|
|
227
|
-
<a href="https://create3000.github.io/media/examples/Followers/ColorChaser/
|
|
230
|
+
<a href="https://create3000.github.io/media/examples/Followers/ColorChaser/ColorChaser.x3d" title="Followers » ColorChaser">
|
|
228
231
|
<img src="https://create3000.github.io/media/examples/Followers/ColorChaser/screenshot-small.png" alt="ColorChaser"/>
|
|
229
232
|
</a>
|
|
230
233
|
</td>
|
|
231
234
|
<td>
|
|
232
|
-
<a href="https://create3000.github.io/media/examples/Followers/ColorDamper/
|
|
235
|
+
<a href="https://create3000.github.io/media/examples/Followers/ColorDamper/ColorDamper.x3d" title="Followers » ColorDamper">
|
|
233
236
|
<img src="https://create3000.github.io/media/examples/Followers/ColorDamper/screenshot-small.png" alt="ColorDamper"/>
|
|
234
237
|
</a>
|
|
235
238
|
</td>
|
|
236
239
|
<td>
|
|
237
|
-
<a href="https://create3000.github.io/media/examples/Followers/CoordinateChaser/
|
|
240
|
+
<a href="https://create3000.github.io/media/examples/Followers/CoordinateChaser/CoordinateChaser.x3d" title="Followers » CoordinateChaser">
|
|
238
241
|
<img src="https://create3000.github.io/media/examples/Followers/CoordinateChaser/screenshot-small.png" alt="CoordinateChaser"/>
|
|
239
242
|
</a>
|
|
240
243
|
</td>
|
|
241
244
|
<td>
|
|
242
|
-
<a href="https://create3000.github.io/media/examples/Followers/ScalarChaser/
|
|
245
|
+
<a href="https://create3000.github.io/media/examples/Followers/ScalarChaser/ScalarChaser.x3d" title="Followers » ScalarChaser">
|
|
243
246
|
<img src="https://create3000.github.io/media/examples/Followers/ScalarChaser/screenshot-small.png" alt="ScalarChaser"/>
|
|
244
247
|
</a>
|
|
245
248
|
</td>
|
|
246
249
|
</tr>
|
|
247
250
|
<tr>
|
|
248
251
|
<td>
|
|
249
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Arc2D/
|
|
252
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Arc2D/Arc2D.x3d" title="Geometry2D » Arc2D">
|
|
250
253
|
<img src="https://create3000.github.io/media/examples/Geometry2D/Arc2D/screenshot-small.png" alt="Arc2D"/>
|
|
251
254
|
</a>
|
|
252
255
|
</td>
|
|
253
256
|
<td>
|
|
254
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/ArcClose2D/
|
|
257
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/ArcClose2D/ArcClose2D.x3d" title="Geometry2D » ArcClose2D">
|
|
255
258
|
<img src="https://create3000.github.io/media/examples/Geometry2D/ArcClose2D/screenshot-small.png" alt="ArcClose2D"/>
|
|
256
259
|
</a>
|
|
257
260
|
</td>
|
|
258
261
|
<td>
|
|
259
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Circle2D/
|
|
262
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Circle2D/Circle2D.x3d" title="Geometry2D » Circle2D">
|
|
260
263
|
<img src="https://create3000.github.io/media/examples/Geometry2D/Circle2D/screenshot-small.png" alt="Circle2D"/>
|
|
261
264
|
</a>
|
|
262
265
|
</td>
|
|
263
266
|
<td>
|
|
264
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Disk2D/
|
|
267
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Disk2D/Disk2D.x3d" title="Geometry2D » Disk2D">
|
|
265
268
|
<img src="https://create3000.github.io/media/examples/Geometry2D/Disk2D/screenshot-small.png" alt="Disk2D"/>
|
|
266
269
|
</a>
|
|
267
270
|
</td>
|
|
268
271
|
<td>
|
|
269
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Polyline2D/
|
|
272
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Polyline2D/Polyline2D.x3d" title="Geometry2D » Polyline2D">
|
|
270
273
|
<img src="https://create3000.github.io/media/examples/Geometry2D/Polyline2D/screenshot-small.png" alt="Polyline2D"/>
|
|
271
274
|
</a>
|
|
272
275
|
</td>
|
|
273
276
|
<td>
|
|
274
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Polypoint2D/
|
|
277
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Polypoint2D/Polypoint2D.x3d" title="Geometry2D » Polypoint2D">
|
|
275
278
|
<img src="https://create3000.github.io/media/examples/Geometry2D/Polypoint2D/screenshot-small.png" alt="Polypoint2D"/>
|
|
276
279
|
</a>
|
|
277
280
|
</td>
|
|
278
281
|
<td>
|
|
279
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Rectangle2D/
|
|
282
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Rectangle2D/Rectangle2D.x3d" title="Geometry2D » Rectangle2D">
|
|
280
283
|
<img src="https://create3000.github.io/media/examples/Geometry2D/Rectangle2D/screenshot-small.png" alt="Rectangle2D"/>
|
|
281
284
|
</a>
|
|
282
285
|
</td>
|
|
283
286
|
</tr>
|
|
284
287
|
<tr>
|
|
285
288
|
<td>
|
|
286
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/TriangleSet2D/
|
|
289
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/TriangleSet2D/TriangleSet2D.x3d" title="Geometry2D » TriangleSet2D">
|
|
287
290
|
<img src="https://create3000.github.io/media/examples/Geometry2D/TriangleSet2D/screenshot-small.png" alt="TriangleSet2D"/>
|
|
288
291
|
</a>
|
|
289
292
|
</td>
|
|
290
293
|
<td>
|
|
291
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Box/
|
|
294
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Box/Box.x3d" title="Geometry3D » Box">
|
|
292
295
|
<img src="https://create3000.github.io/media/examples/Geometry3D/Box/screenshot-small.png" alt="Box"/>
|
|
293
296
|
</a>
|
|
294
297
|
</td>
|
|
295
298
|
<td>
|
|
296
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Cone/
|
|
299
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Cone/Cone.x3d" title="Geometry3D » Cone">
|
|
297
300
|
<img src="https://create3000.github.io/media/examples/Geometry3D/Cone/screenshot-small.png" alt="Cone"/>
|
|
298
301
|
</a>
|
|
299
302
|
</td>
|
|
300
303
|
<td>
|
|
301
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Cylinder/
|
|
304
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Cylinder/Cylinder.x3d" title="Geometry3D » Cylinder">
|
|
302
305
|
<img src="https://create3000.github.io/media/examples/Geometry3D/Cylinder/screenshot-small.png" alt="Cylinder"/>
|
|
303
306
|
</a>
|
|
304
307
|
</td>
|
|
305
308
|
<td>
|
|
306
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/ElevationGrid/
|
|
309
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/ElevationGrid/ElevationGrid.x3d" title="Geometry3D » ElevationGrid">
|
|
307
310
|
<img src="https://create3000.github.io/media/examples/Geometry3D/ElevationGrid/screenshot-small.png" alt="ElevationGrid"/>
|
|
308
311
|
</a>
|
|
309
312
|
</td>
|
|
310
313
|
<td>
|
|
311
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Extrusion/
|
|
314
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Extrusion/Extrusion.x3d" title="Geometry3D » Extrusion">
|
|
312
315
|
<img src="https://create3000.github.io/media/examples/Geometry3D/Extrusion/screenshot-small.png" alt="Extrusion"/>
|
|
313
316
|
</a>
|
|
314
317
|
</td>
|
|
315
318
|
<td>
|
|
316
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/IndexedFaceSet/
|
|
319
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/IndexedFaceSet/IndexedFaceSet.x3d" title="Geometry3D » IndexedFaceSet">
|
|
317
320
|
<img src="https://create3000.github.io/media/examples/Geometry3D/IndexedFaceSet/screenshot-small.png" alt="IndexedFaceSet"/>
|
|
318
321
|
</a>
|
|
319
322
|
</td>
|
|
320
323
|
</tr>
|
|
321
324
|
<tr>
|
|
322
325
|
<td>
|
|
323
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Sphere/
|
|
326
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Sphere/Sphere.x3d" title="Geometry3D » Sphere">
|
|
324
327
|
<img src="https://create3000.github.io/media/examples/Geometry3D/Sphere/screenshot-small.png" alt="Sphere"/>
|
|
325
328
|
</a>
|
|
326
329
|
</td>
|
|
327
330
|
<td>
|
|
328
|
-
<a href="https://create3000.github.io/media/examples/Geospatial/GeoElevationGrid/
|
|
331
|
+
<a href="https://create3000.github.io/media/examples/Geospatial/GeoElevationGrid/GeoElevationGrid.x3d" title="Geospatial » GeoElevationGrid">
|
|
329
332
|
<img src="https://create3000.github.io/media/examples/Geospatial/GeoElevationGrid/screenshot-small.png" alt="GeoElevationGrid"/>
|
|
330
333
|
</a>
|
|
331
334
|
</td>
|
|
332
335
|
<td>
|
|
333
|
-
<a href="https://create3000.github.io/media/examples/Geospatial/GeoLOD/
|
|
336
|
+
<a href="https://create3000.github.io/media/examples/Geospatial/GeoLOD/GeoLOD.x3d" title="Geospatial » GeoLOD">
|
|
334
337
|
<img src="https://create3000.github.io/media/examples/Geospatial/GeoLOD/screenshot-small.png" alt="GeoLOD"/>
|
|
335
338
|
</a>
|
|
336
339
|
</td>
|
|
337
340
|
<td>
|
|
338
|
-
<a href="https://create3000.github.io/media/examples/Geospatial/GeoViewpoint/
|
|
341
|
+
<a href="https://create3000.github.io/media/examples/Geospatial/GeoViewpoint/GeoViewpoint.x3d" title="Geospatial » GeoViewpoint">
|
|
339
342
|
<img src="https://create3000.github.io/media/examples/Geospatial/GeoViewpoint/screenshot-small.png" alt="GeoViewpoint"/>
|
|
340
343
|
</a>
|
|
341
344
|
</td>
|
|
342
345
|
<td>
|
|
343
|
-
<a href="https://create3000.github.io/media/examples/Grouping/Group/
|
|
346
|
+
<a href="https://create3000.github.io/media/examples/Grouping/Group/Group.x3d" title="Grouping » Group">
|
|
344
347
|
<img src="https://create3000.github.io/media/examples/Grouping/Group/screenshot-small.png" alt="Group"/>
|
|
345
348
|
</a>
|
|
346
349
|
</td>
|
|
347
350
|
<td>
|
|
348
|
-
<a href="https://create3000.github.io/media/examples/Grouping/Switch/
|
|
351
|
+
<a href="https://create3000.github.io/media/examples/Grouping/Switch/Switch.x3d" title="Grouping » Switch">
|
|
349
352
|
<img src="https://create3000.github.io/media/examples/Grouping/Switch/screenshot-small.png" alt="Switch"/>
|
|
350
353
|
</a>
|
|
351
354
|
</td>
|
|
352
355
|
<td>
|
|
353
|
-
<a href="https://create3000.github.io/media/examples/Grouping/Transform/
|
|
356
|
+
<a href="https://create3000.github.io/media/examples/Grouping/Transform/Transform.x3d" title="Grouping » Transform">
|
|
354
357
|
<img src="https://create3000.github.io/media/examples/Grouping/Transform/screenshot-small.png" alt="Transform"/>
|
|
355
358
|
</a>
|
|
356
359
|
</td>
|
|
357
360
|
</tr>
|
|
358
361
|
<tr>
|
|
359
362
|
<td>
|
|
360
|
-
<a href="https://create3000.github.io/media/examples/HAnim/HAnimHumanoid/
|
|
363
|
+
<a href="https://create3000.github.io/media/examples/HAnim/HAnimHumanoid/HAnimHumanoid.x3d" title="HAnim » HAnimHumanoid">
|
|
361
364
|
<img src="https://create3000.github.io/media/examples/HAnim/HAnimHumanoid/screenshot-small.png" alt="HAnimHumanoid"/>
|
|
362
365
|
</a>
|
|
363
366
|
</td>
|
|
364
367
|
<td>
|
|
365
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/ColorInterpolator/
|
|
368
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/ColorInterpolator/ColorInterpolator.x3d" title="Interpolation » ColorInterpolator">
|
|
366
369
|
<img src="https://create3000.github.io/media/examples/Interpolation/ColorInterpolator/screenshot-small.png" alt="ColorInterpolator"/>
|
|
367
370
|
</a>
|
|
368
371
|
</td>
|
|
369
372
|
<td>
|
|
370
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/CoordinateInterpolator/
|
|
373
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/CoordinateInterpolator/CoordinateInterpolator.x3d" title="Interpolation » CoordinateInterpolator">
|
|
371
374
|
<img src="https://create3000.github.io/media/examples/Interpolation/CoordinateInterpolator/screenshot-small.png" alt="CoordinateInterpolator"/>
|
|
372
375
|
</a>
|
|
373
376
|
</td>
|
|
374
377
|
<td>
|
|
375
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/OrientationInterpolator/
|
|
378
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/OrientationInterpolator/OrientationInterpolator.x3d" title="Interpolation » OrientationInterpolator">
|
|
376
379
|
<img src="https://create3000.github.io/media/examples/Interpolation/OrientationInterpolator/screenshot-small.png" alt="OrientationInterpolator"/>
|
|
377
380
|
</a>
|
|
378
381
|
</td>
|
|
379
382
|
<td>
|
|
380
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator/
|
|
383
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator/PositionInterpolator.x3d" title="Interpolation » PositionInterpolator">
|
|
381
384
|
<img src="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator/screenshot-small.png" alt="PositionInterpolator"/>
|
|
382
385
|
</a>
|
|
383
386
|
</td>
|
|
384
387
|
<td>
|
|
385
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator2D/
|
|
388
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator2D/PositionInterpolator2D.x3d" title="Interpolation » PositionInterpolator2D">
|
|
386
389
|
<img src="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator2D/screenshot-small.png" alt="PositionInterpolator2D"/>
|
|
387
390
|
</a>
|
|
388
391
|
</td>
|
|
389
392
|
<td>
|
|
390
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/ScalarInterpolator/
|
|
393
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/ScalarInterpolator/ScalarInterpolator.x3d" title="Interpolation » ScalarInterpolator">
|
|
391
394
|
<img src="https://create3000.github.io/media/examples/Interpolation/ScalarInterpolator/screenshot-small.png" alt="ScalarInterpolator"/>
|
|
392
395
|
</a>
|
|
393
396
|
</td>
|
|
394
397
|
</tr>
|
|
395
398
|
<tr>
|
|
396
399
|
<td>
|
|
397
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/SplineScalarInterpolator/
|
|
400
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/SplineScalarInterpolator/SplineScalarInterpolator.x3d" title="Interpolation » SplineScalarInterpolator">
|
|
398
401
|
<img src="https://create3000.github.io/media/examples/Interpolation/SplineScalarInterpolator/screenshot-small.png" alt="SplineScalarInterpolator"/>
|
|
399
402
|
</a>
|
|
400
403
|
</td>
|
|
401
404
|
<td>
|
|
402
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/SquadOrientationInterpolator/
|
|
405
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/SquadOrientationInterpolator/SquadOrientationInterpolator.x3d" title="Interpolation » SquadOrientationInterpolator">
|
|
403
406
|
<img src="https://create3000.github.io/media/examples/Interpolation/SquadOrientationInterpolator/screenshot-small.png" alt="SquadOrientationInterpolator"/>
|
|
404
407
|
</a>
|
|
405
408
|
</td>
|
|
406
409
|
<td>
|
|
407
|
-
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/KeySensor/
|
|
410
|
+
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/KeySensor/KeySensor.x3d" title="KeyDeviceSensor » KeySensor">
|
|
408
411
|
<img src="https://create3000.github.io/media/examples/KeyDeviceSensor/KeySensor/screenshot-small.png" alt="KeySensor"/>
|
|
409
412
|
</a>
|
|
410
413
|
</td>
|
|
411
414
|
<td>
|
|
412
|
-
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/StringSensor/
|
|
415
|
+
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/StringSensor/StringSensor.x3d" title="KeyDeviceSensor » StringSensor">
|
|
413
416
|
<img src="https://create3000.github.io/media/examples/KeyDeviceSensor/StringSensor/screenshot-small.png" alt="StringSensor"/>
|
|
414
417
|
</a>
|
|
415
418
|
</td>
|
|
416
419
|
<td>
|
|
417
|
-
<a href="https://create3000.github.io/media/examples/Layering/LayerSet/
|
|
420
|
+
<a href="https://create3000.github.io/media/examples/Layering/LayerSet/LayerSet.x3d" title="Layering » LayerSet">
|
|
418
421
|
<img src="https://create3000.github.io/media/examples/Layering/LayerSet/screenshot-small.png" alt="LayerSet"/>
|
|
419
422
|
</a>
|
|
420
423
|
</td>
|
|
421
424
|
<td>
|
|
422
|
-
<a href="https://create3000.github.io/media/examples/Layering/Viewport/
|
|
425
|
+
<a href="https://create3000.github.io/media/examples/Layering/Viewport/Viewport.x3d" title="Layering » Viewport">
|
|
423
426
|
<img src="https://create3000.github.io/media/examples/Layering/Viewport/screenshot-small.png" alt="Viewport"/>
|
|
424
427
|
</a>
|
|
425
428
|
</td>
|
|
426
429
|
<td>
|
|
427
|
-
<a href="https://create3000.github.io/media/examples/Lighting/DirectionalLight/
|
|
430
|
+
<a href="https://create3000.github.io/media/examples/Lighting/DirectionalLight/DirectionalLight.x3d" title="Lighting » DirectionalLight">
|
|
428
431
|
<img src="https://create3000.github.io/media/examples/Lighting/DirectionalLight/screenshot-small.png" alt="DirectionalLight"/>
|
|
429
432
|
</a>
|
|
430
433
|
</td>
|
|
431
434
|
</tr>
|
|
432
435
|
<tr>
|
|
433
436
|
<td>
|
|
434
|
-
<a href="https://create3000.github.io/media/examples/Lighting/PointLight/
|
|
437
|
+
<a href="https://create3000.github.io/media/examples/Lighting/PointLight/PointLight.x3d" title="Lighting » PointLight">
|
|
435
438
|
<img src="https://create3000.github.io/media/examples/Lighting/PointLight/screenshot-small.png" alt="PointLight"/>
|
|
436
439
|
</a>
|
|
437
440
|
</td>
|
|
438
441
|
<td>
|
|
439
|
-
<a href="https://create3000.github.io/media/examples/Lighting/Shadows/
|
|
442
|
+
<a href="https://create3000.github.io/media/examples/Lighting/Shadows/Shadows.x3d" title="Lighting » Shadows">
|
|
440
443
|
<img src="https://create3000.github.io/media/examples/Lighting/Shadows/screenshot-small.png" alt="Shadows"/>
|
|
441
444
|
</a>
|
|
442
445
|
</td>
|
|
443
446
|
<td>
|
|
444
|
-
<a href="https://create3000.github.io/media/examples/Lighting/SpotLight/
|
|
447
|
+
<a href="https://create3000.github.io/media/examples/Lighting/SpotLight/SpotLight.x3d" title="Lighting » SpotLight">
|
|
445
448
|
<img src="https://create3000.github.io/media/examples/Lighting/SpotLight/screenshot-small.png" alt="SpotLight"/>
|
|
446
449
|
</a>
|
|
447
450
|
</td>
|
|
448
451
|
<td>
|
|
449
|
-
<a href="https://create3000.github.io/media/examples/NURBS/NurbsCurve/
|
|
452
|
+
<a href="https://create3000.github.io/media/examples/NURBS/NurbsCurve/NurbsCurve.x3d" title="NURBS » NurbsCurve">
|
|
450
453
|
<img src="https://create3000.github.io/media/examples/NURBS/NurbsCurve/screenshot-small.png" alt="NurbsCurve"/>
|
|
451
454
|
</a>
|
|
452
455
|
</td>
|
|
453
456
|
<td>
|
|
454
|
-
<a href="https://create3000.github.io/media/examples/NURBS/NurbsPatchSurface/
|
|
457
|
+
<a href="https://create3000.github.io/media/examples/NURBS/NurbsPatchSurface/NurbsPatchSurface.x3d" title="NURBS » NurbsPatchSurface">
|
|
455
458
|
<img src="https://create3000.github.io/media/examples/NURBS/NurbsPatchSurface/screenshot-small.png" alt="NurbsPatchSurface"/>
|
|
456
459
|
</a>
|
|
457
460
|
</td>
|
|
458
461
|
<td>
|
|
459
|
-
<a href="https://create3000.github.io/media/examples/NURBS/NurbsSweptSurface/
|
|
462
|
+
<a href="https://create3000.github.io/media/examples/NURBS/NurbsSweptSurface/NurbsSweptSurface.x3d" title="NURBS » NurbsSweptSurface">
|
|
460
463
|
<img src="https://create3000.github.io/media/examples/NURBS/NurbsSweptSurface/screenshot-small.png" alt="NurbsSweptSurface"/>
|
|
461
464
|
</a>
|
|
462
465
|
</td>
|
|
463
466
|
<td>
|
|
464
|
-
<a href="https://create3000.github.io/media/examples/Navigation/Billboard/
|
|
467
|
+
<a href="https://create3000.github.io/media/examples/Navigation/Billboard/Billboard.x3d" title="Navigation » Billboard">
|
|
465
468
|
<img src="https://create3000.github.io/media/examples/Navigation/Billboard/screenshot-small.png" alt="Billboard"/>
|
|
466
469
|
</a>
|
|
467
470
|
</td>
|
|
468
471
|
</tr>
|
|
469
472
|
<tr>
|
|
470
473
|
<td>
|
|
471
|
-
<a href="https://create3000.github.io/media/examples/Navigation/Collision/
|
|
474
|
+
<a href="https://create3000.github.io/media/examples/Navigation/Collision/Collision.x3d" title="Navigation » Collision">
|
|
472
475
|
<img src="https://create3000.github.io/media/examples/Navigation/Collision/screenshot-small.png" alt="Collision"/>
|
|
473
476
|
</a>
|
|
474
477
|
</td>
|
|
475
478
|
<td>
|
|
476
|
-
<a href="https://create3000.github.io/media/examples/Navigation/LogarithmicDepthBuffer/
|
|
479
|
+
<a href="https://create3000.github.io/media/examples/Navigation/LogarithmicDepthBuffer/LogarithmicDepthBuffer.x3d" title="Navigation » LogarithmicDepthBuffer">
|
|
477
480
|
<img src="https://create3000.github.io/media/examples/Navigation/LogarithmicDepthBuffer/screenshot-small.png" alt="LogarithmicDepthBuffer"/>
|
|
478
481
|
</a>
|
|
479
482
|
</td>
|
|
480
483
|
<td>
|
|
481
|
-
<a href="https://create3000.github.io/media/examples/Navigation/NavigationInfo/
|
|
484
|
+
<a href="https://create3000.github.io/media/examples/Navigation/NavigationInfo/NavigationInfo.x3d" title="Navigation » NavigationInfo">
|
|
482
485
|
<img src="https://create3000.github.io/media/examples/Navigation/NavigationInfo/screenshot-small.png" alt="NavigationInfo"/>
|
|
483
486
|
</a>
|
|
484
487
|
</td>
|
|
485
488
|
<td>
|
|
486
|
-
<a href="https://create3000.github.io/media/examples/Navigation/OrthoViewpoint/
|
|
489
|
+
<a href="https://create3000.github.io/media/examples/Navigation/OrthoViewpoint/OrthoViewpoint.x3d" title="Navigation » OrthoViewpoint">
|
|
487
490
|
<img src="https://create3000.github.io/media/examples/Navigation/OrthoViewpoint/screenshot-small.png" alt="OrthoViewpoint"/>
|
|
488
491
|
</a>
|
|
489
492
|
</td>
|
|
490
493
|
<td>
|
|
491
|
-
<a href="https://create3000.github.io/media/examples/Navigation/Viewpoint/
|
|
494
|
+
<a href="https://create3000.github.io/media/examples/Navigation/Viewpoint/Viewpoint.x3d" title="Navigation » Viewpoint">
|
|
492
495
|
<img src="https://create3000.github.io/media/examples/Navigation/Viewpoint/screenshot-small.png" alt="Viewpoint"/>
|
|
493
496
|
</a>
|
|
494
497
|
</td>
|
|
495
498
|
<td>
|
|
496
|
-
<a href="https://create3000.github.io/media/examples/Networking/Anchor/
|
|
499
|
+
<a href="https://create3000.github.io/media/examples/Networking/Anchor/Anchor.x3d" title="Networking » Anchor">
|
|
497
500
|
<img src="https://create3000.github.io/media/examples/Networking/Anchor/screenshot-small.png" alt="Anchor"/>
|
|
498
501
|
</a>
|
|
499
502
|
</td>
|
|
500
503
|
<td>
|
|
501
|
-
<a href="https://create3000.github.io/media/examples/Networking/Inline/
|
|
504
|
+
<a href="https://create3000.github.io/media/examples/Networking/Inline/Inline.x3d" title="Networking » Inline">
|
|
502
505
|
<img src="https://create3000.github.io/media/examples/Networking/Inline/screenshot-small.png" alt="Inline"/>
|
|
503
506
|
</a>
|
|
504
507
|
</td>
|
|
505
508
|
</tr>
|
|
506
509
|
<tr>
|
|
507
510
|
<td>
|
|
508
|
-
<a href="https://create3000.github.io/media/examples/Networking/LoadSensor/
|
|
511
|
+
<a href="https://create3000.github.io/media/examples/Networking/LoadSensor/LoadSensor.x3d" title="Networking » LoadSensor">
|
|
509
512
|
<img src="https://create3000.github.io/media/examples/Networking/LoadSensor/screenshot-small.png" alt="LoadSensor"/>
|
|
510
513
|
</a>
|
|
511
514
|
</td>
|
|
512
515
|
<td>
|
|
513
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ConeEmitter/
|
|
516
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ConeEmitter/ConeEmitter.x3d" title="ParticleSystems » ConeEmitter">
|
|
514
517
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/ConeEmitter/screenshot-small.png" alt="ConeEmitter"/>
|
|
515
518
|
</a>
|
|
516
519
|
</td>
|
|
517
520
|
<td>
|
|
518
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ExplosionEmitter/
|
|
521
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ExplosionEmitter/ExplosionEmitter.x3d" title="ParticleSystems » ExplosionEmitter">
|
|
519
522
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/ExplosionEmitter/screenshot-small.png" alt="ExplosionEmitter"/>
|
|
520
523
|
</a>
|
|
521
524
|
</td>
|
|
522
525
|
<td>
|
|
523
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ForcePhysicsModel/
|
|
526
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ForcePhysicsModel/ForcePhysicsModel.x3d" title="ParticleSystems » ForcePhysicsModel">
|
|
524
527
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/ForcePhysicsModel/screenshot-small.png" alt="ForcePhysicsModel"/>
|
|
525
528
|
</a>
|
|
526
529
|
</td>
|
|
527
530
|
<td>
|
|
528
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ParticleSystem/
|
|
531
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ParticleSystem/ParticleSystem.x3d" title="ParticleSystems » ParticleSystem">
|
|
529
532
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/ParticleSystem/screenshot-small.png" alt="ParticleSystem"/>
|
|
530
533
|
</a>
|
|
531
534
|
</td>
|
|
532
535
|
<td>
|
|
533
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/PointEmitter/
|
|
536
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/PointEmitter/PointEmitter.x3d" title="ParticleSystems » PointEmitter">
|
|
534
537
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/PointEmitter/screenshot-small.png" alt="PointEmitter"/>
|
|
535
538
|
</a>
|
|
536
539
|
</td>
|
|
537
540
|
<td>
|
|
538
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/PolylineEmitter/
|
|
541
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/PolylineEmitter/PolylineEmitter.x3d" title="ParticleSystems » PolylineEmitter">
|
|
539
542
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/PolylineEmitter/screenshot-small.png" alt="PolylineEmitter"/>
|
|
540
543
|
</a>
|
|
541
544
|
</td>
|
|
542
545
|
</tr>
|
|
543
546
|
<tr>
|
|
544
547
|
<td>
|
|
545
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/SurfaceEmitter/
|
|
548
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/SurfaceEmitter/SurfaceEmitter.x3d" title="ParticleSystems » SurfaceEmitter">
|
|
546
549
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/SurfaceEmitter/screenshot-small.png" alt="SurfaceEmitter"/>
|
|
547
550
|
</a>
|
|
548
551
|
</td>
|
|
549
552
|
<td>
|
|
550
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/VolumeEmitter/
|
|
553
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/VolumeEmitter/VolumeEmitter.x3d" title="ParticleSystems » VolumeEmitter">
|
|
551
554
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/VolumeEmitter/screenshot-small.png" alt="VolumeEmitter"/>
|
|
552
555
|
</a>
|
|
553
556
|
</td>
|
|
554
557
|
<td>
|
|
555
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/WindPhysicsModel/
|
|
558
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/WindPhysicsModel/WindPhysicsModel.x3d" title="ParticleSystems » WindPhysicsModel">
|
|
556
559
|
<img src="https://create3000.github.io/media/examples/ParticleSystems/WindPhysicsModel/screenshot-small.png" alt="WindPhysicsModel"/>
|
|
557
560
|
</a>
|
|
558
561
|
</td>
|
|
559
562
|
<td>
|
|
560
|
-
<a href="https://create3000.github.io/media/examples/Picking/LinePickSensor/
|
|
563
|
+
<a href="https://create3000.github.io/media/examples/Picking/LinePickSensor/LinePickSensor.x3d" title="Picking » LinePickSensor">
|
|
561
564
|
<img src="https://create3000.github.io/media/examples/Picking/LinePickSensor/screenshot-small.png" alt="LinePickSensor"/>
|
|
562
565
|
</a>
|
|
563
566
|
</td>
|
|
564
567
|
<td>
|
|
565
|
-
<a href="https://create3000.github.io/media/examples/Picking/PointPickSensor/
|
|
568
|
+
<a href="https://create3000.github.io/media/examples/Picking/PointPickSensor/PointPickSensor.x3d" title="Picking » PointPickSensor">
|
|
566
569
|
<img src="https://create3000.github.io/media/examples/Picking/PointPickSensor/screenshot-small.png" alt="PointPickSensor"/>
|
|
567
570
|
</a>
|
|
568
571
|
</td>
|
|
569
572
|
<td>
|
|
570
|
-
<a href="https://create3000.github.io/media/examples/Picking/PrimitivePickSensor/
|
|
573
|
+
<a href="https://create3000.github.io/media/examples/Picking/PrimitivePickSensor/PrimitivePickSensor.x3d" title="Picking » PrimitivePickSensor">
|
|
571
574
|
<img src="https://create3000.github.io/media/examples/Picking/PrimitivePickSensor/screenshot-small.png" alt="PrimitivePickSensor"/>
|
|
572
575
|
</a>
|
|
573
576
|
</td>
|
|
574
577
|
<td>
|
|
575
|
-
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/CylinderSensor/
|
|
578
|
+
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/CylinderSensor/CylinderSensor.x3d" title="PointingDeviceSensor » CylinderSensor">
|
|
576
579
|
<img src="https://create3000.github.io/media/examples/PointingDeviceSensor/CylinderSensor/screenshot-small.png" alt="CylinderSensor"/>
|
|
577
580
|
</a>
|
|
578
581
|
</td>
|
|
579
582
|
</tr>
|
|
580
583
|
<tr>
|
|
581
584
|
<td>
|
|
582
|
-
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/PlaneSensor/
|
|
585
|
+
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/PlaneSensor/PlaneSensor.x3d" title="PointingDeviceSensor » PlaneSensor">
|
|
583
586
|
<img src="https://create3000.github.io/media/examples/PointingDeviceSensor/PlaneSensor/screenshot-small.png" alt="PlaneSensor"/>
|
|
584
587
|
</a>
|
|
585
588
|
</td>
|
|
586
589
|
<td>
|
|
587
|
-
<a href="https://create3000.github.io/media/examples/ProjectiveTextureMapping/
|
|
588
|
-
<img src="https://create3000.github.io/media/examples/ProjectiveTextureMapping/
|
|
590
|
+
<a href="https://create3000.github.io/media/examples/ProjectiveTextureMapping/TextureProjector/TextureProjector.x3d" title="ProjectiveTextureMapping » TextureProjector">
|
|
591
|
+
<img src="https://create3000.github.io/media/examples/ProjectiveTextureMapping/TextureProjector/screenshot-small.png" alt="TextureProjector"/>
|
|
589
592
|
</a>
|
|
590
593
|
</td>
|
|
591
594
|
<td>
|
|
592
|
-
<a href="https://create3000.github.io/media/examples/Rendering/ClipPlane/
|
|
595
|
+
<a href="https://create3000.github.io/media/examples/Rendering/ClipPlane/ClipPlane.x3d" title="Rendering » ClipPlane">
|
|
593
596
|
<img src="https://create3000.github.io/media/examples/Rendering/ClipPlane/screenshot-small.png" alt="ClipPlane"/>
|
|
594
597
|
</a>
|
|
595
598
|
</td>
|
|
596
599
|
<td>
|
|
597
|
-
<a href="https://create3000.github.io/media/examples/Rendering/Color/
|
|
600
|
+
<a href="https://create3000.github.io/media/examples/Rendering/Color/Color.x3d" title="Rendering » Color">
|
|
598
601
|
<img src="https://create3000.github.io/media/examples/Rendering/Color/screenshot-small.png" alt="Color"/>
|
|
599
602
|
</a>
|
|
600
603
|
</td>
|
|
601
604
|
<td>
|
|
602
|
-
<a href="https://create3000.github.io/media/examples/Rendering/ColorRGBA/
|
|
605
|
+
<a href="https://create3000.github.io/media/examples/Rendering/ColorRGBA/ColorRGBA.x3d" title="Rendering » ColorRGBA">
|
|
603
606
|
<img src="https://create3000.github.io/media/examples/Rendering/ColorRGBA/screenshot-small.png" alt="ColorRGBA"/>
|
|
604
607
|
</a>
|
|
605
608
|
</td>
|
|
606
609
|
<td>
|
|
607
|
-
<a href="https://create3000.github.io/media/examples/Rendering/Coordinate/
|
|
610
|
+
<a href="https://create3000.github.io/media/examples/Rendering/Coordinate/Coordinate.x3d" title="Rendering » Coordinate">
|
|
608
611
|
<img src="https://create3000.github.io/media/examples/Rendering/Coordinate/screenshot-small.png" alt="Coordinate"/>
|
|
609
612
|
</a>
|
|
610
613
|
</td>
|
|
611
614
|
<td>
|
|
612
|
-
<a href="https://create3000.github.io/media/examples/Rendering/IndexedLineSet/
|
|
615
|
+
<a href="https://create3000.github.io/media/examples/Rendering/IndexedLineSet/IndexedLineSet.x3d" title="Rendering » IndexedLineSet">
|
|
613
616
|
<img src="https://create3000.github.io/media/examples/Rendering/IndexedLineSet/screenshot-small.png" alt="IndexedLineSet"/>
|
|
614
617
|
</a>
|
|
615
618
|
</td>
|
|
616
619
|
</tr>
|
|
617
620
|
<tr>
|
|
618
621
|
<td>
|
|
619
|
-
<a href="https://create3000.github.io/media/examples/Rendering/IndexedTriangleFanSet/
|
|
622
|
+
<a href="https://create3000.github.io/media/examples/Rendering/IndexedTriangleFanSet/IndexedTriangleFanSet.x3d" title="Rendering » IndexedTriangleFanSet">
|
|
620
623
|
<img src="https://create3000.github.io/media/examples/Rendering/IndexedTriangleFanSet/screenshot-small.png" alt="IndexedTriangleFanSet"/>
|
|
621
624
|
</a>
|
|
622
625
|
</td>
|
|
623
626
|
<td>
|
|
624
|
-
<a href="https://create3000.github.io/media/examples/Rendering/IndexedTriangleSet/
|
|
627
|
+
<a href="https://create3000.github.io/media/examples/Rendering/IndexedTriangleSet/IndexedTriangleSet.x3d" title="Rendering » IndexedTriangleSet">
|
|
625
628
|
<img src="https://create3000.github.io/media/examples/Rendering/IndexedTriangleSet/screenshot-small.png" alt="IndexedTriangleSet"/>
|
|
626
629
|
</a>
|
|
627
630
|
</td>
|
|
628
631
|
<td>
|
|
629
|
-
<a href="https://create3000.github.io/media/examples/Rendering/LineSet/
|
|
632
|
+
<a href="https://create3000.github.io/media/examples/Rendering/LineSet/LineSet.x3d" title="Rendering » LineSet">
|
|
630
633
|
<img src="https://create3000.github.io/media/examples/Rendering/LineSet/screenshot-small.png" alt="LineSet"/>
|
|
631
634
|
</a>
|
|
632
635
|
</td>
|
|
633
636
|
<td>
|
|
634
|
-
<a href="https://create3000.github.io/media/examples/Rendering/PointSet/
|
|
637
|
+
<a href="https://create3000.github.io/media/examples/Rendering/PointSet/PointSet.x3d" title="Rendering » PointSet">
|
|
635
638
|
<img src="https://create3000.github.io/media/examples/Rendering/PointSet/screenshot-small.png" alt="PointSet"/>
|
|
636
639
|
</a>
|
|
637
640
|
</td>
|
|
638
641
|
<td>
|
|
639
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/BallJoint/
|
|
642
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/BallJoint/BallJoint.x3d" title="RigidBodyPhysics » BallJoint">
|
|
640
643
|
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/BallJoint/screenshot-small.png" alt="BallJoint"/>
|
|
641
644
|
</a>
|
|
642
645
|
</td>
|
|
643
646
|
<td>
|
|
644
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/CollidableShape/
|
|
647
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/CollidableShape/CollidableShape.x3d" title="RigidBodyPhysics » CollidableShape">
|
|
645
648
|
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/CollidableShape/screenshot-small.png" alt="CollidableShape"/>
|
|
646
649
|
</a>
|
|
647
650
|
</td>
|
|
648
651
|
<td>
|
|
649
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/CollisionCollection/
|
|
652
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/CollisionCollection/CollisionCollection.x3d" title="RigidBodyPhysics » CollisionCollection">
|
|
650
653
|
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/CollisionCollection/screenshot-small.png" alt="CollisionCollection"/>
|
|
651
654
|
</a>
|
|
652
655
|
</td>
|
|
653
656
|
</tr>
|
|
654
657
|
<tr>
|
|
655
658
|
<td>
|
|
656
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBody/
|
|
659
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBody/RigidBody.x3d" title="RigidBodyPhysics » RigidBody">
|
|
657
660
|
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBody/screenshot-small.png" alt="RigidBody"/>
|
|
658
661
|
</a>
|
|
659
662
|
</td>
|
|
660
663
|
<td>
|
|
661
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBodyCollection/
|
|
664
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBodyCollection/RigidBodyCollection.x3d" title="RigidBodyPhysics » RigidBodyCollection">
|
|
662
665
|
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBodyCollection/screenshot-small.png" alt="RigidBodyCollection"/>
|
|
663
666
|
</a>
|
|
664
667
|
</td>
|
|
665
668
|
<td>
|
|
666
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/SingleAxisHingeJoint/
|
|
669
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/SingleAxisHingeJoint/SingleAxisHingeJoint.x3d" title="RigidBodyPhysics » SingleAxisHingeJoint">
|
|
667
670
|
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/SingleAxisHingeJoint/screenshot-small.png" alt="SingleAxisHingeJoint"/>
|
|
668
671
|
</a>
|
|
669
672
|
</td>
|
|
670
673
|
<td>
|
|
671
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/SliderJoint/
|
|
674
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/SliderJoint/SliderJoint.x3d" title="RigidBodyPhysics » SliderJoint">
|
|
672
675
|
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/SliderJoint/screenshot-small.png" alt="SliderJoint"/>
|
|
673
676
|
</a>
|
|
674
677
|
</td>
|
|
675
678
|
<td>
|
|
676
|
-
<a href="https://create3000.github.io/media/examples/Shaders/ComposedShader/
|
|
679
|
+
<a href="https://create3000.github.io/media/examples/Shaders/ComposedShader/ComposedShader.x3d" title="Shaders » ComposedShader">
|
|
677
680
|
<img src="https://create3000.github.io/media/examples/Shaders/ComposedShader/screenshot-small.png" alt="ComposedShader"/>
|
|
678
681
|
</a>
|
|
679
682
|
</td>
|
|
680
683
|
<td>
|
|
681
|
-
<a href="https://create3000.github.io/media/examples/Shaders/FloatVertexAttribute/
|
|
684
|
+
<a href="https://create3000.github.io/media/examples/Shaders/FloatVertexAttribute/FloatVertexAttribute.x3d" title="Shaders » FloatVertexAttribute">
|
|
682
685
|
<img src="https://create3000.github.io/media/examples/Shaders/FloatVertexAttribute/screenshot-small.png" alt="FloatVertexAttribute"/>
|
|
683
686
|
</a>
|
|
684
687
|
</td>
|
|
685
688
|
<td>
|
|
686
|
-
<a href="https://create3000.github.io/media/examples/Shaders/ShaderPart/
|
|
689
|
+
<a href="https://create3000.github.io/media/examples/Shaders/ShaderPart/ShaderPart.x3d" title="Shaders » ShaderPart">
|
|
687
690
|
<img src="https://create3000.github.io/media/examples/Shaders/ShaderPart/screenshot-small.png" alt="ShaderPart"/>
|
|
688
691
|
</a>
|
|
689
692
|
</td>
|
|
690
693
|
</tr>
|
|
691
694
|
<tr>
|
|
692
695
|
<td>
|
|
693
|
-
<a href="https://create3000.github.io/media/examples/Shape/Appearance/
|
|
696
|
+
<a href="https://create3000.github.io/media/examples/Shape/Appearance/Appearance.x3d" title="Shape » Appearance">
|
|
694
697
|
<img src="https://create3000.github.io/media/examples/Shape/Appearance/screenshot-small.png" alt="Appearance"/>
|
|
695
698
|
</a>
|
|
696
699
|
</td>
|
|
697
700
|
<td>
|
|
698
|
-
<a href="https://create3000.github.io/media/examples/Shape/FillProperties/
|
|
701
|
+
<a href="https://create3000.github.io/media/examples/Shape/FillProperties/FillProperties.x3d" title="Shape » FillProperties">
|
|
699
702
|
<img src="https://create3000.github.io/media/examples/Shape/FillProperties/screenshot-small.png" alt="FillProperties"/>
|
|
700
703
|
</a>
|
|
701
704
|
</td>
|
|
702
705
|
<td>
|
|
703
|
-
<a href="https://create3000.github.io/media/examples/Shape/LineProperties/
|
|
706
|
+
<a href="https://create3000.github.io/media/examples/Shape/LineProperties/LineProperties.x3d" title="Shape » LineProperties">
|
|
704
707
|
<img src="https://create3000.github.io/media/examples/Shape/LineProperties/screenshot-small.png" alt="LineProperties"/>
|
|
705
708
|
</a>
|
|
706
709
|
</td>
|
|
707
710
|
<td>
|
|
708
|
-
<a href="https://create3000.github.io/media/examples/Shape/Material/
|
|
711
|
+
<a href="https://create3000.github.io/media/examples/Shape/Material/Material.x3d" title="Shape » Material">
|
|
709
712
|
<img src="https://create3000.github.io/media/examples/Shape/Material/screenshot-small.png" alt="Material"/>
|
|
710
713
|
</a>
|
|
711
714
|
</td>
|
|
712
715
|
<td>
|
|
713
|
-
<a href="https://create3000.github.io/media/examples/Shape/TwoSidedMaterial/
|
|
716
|
+
<a href="https://create3000.github.io/media/examples/Shape/TwoSidedMaterial/TwoSidedMaterial.x3d" title="Shape » TwoSidedMaterial">
|
|
714
717
|
<img src="https://create3000.github.io/media/examples/Shape/TwoSidedMaterial/screenshot-small.png" alt="TwoSidedMaterial"/>
|
|
715
718
|
</a>
|
|
716
719
|
</td>
|
|
717
720
|
<td>
|
|
718
|
-
<a href="https://create3000.github.io/media/examples/Sound/AudioClip/
|
|
721
|
+
<a href="https://create3000.github.io/media/examples/Sound/AudioClip/AudioClip.x3d" title="Sound » AudioClip">
|
|
719
722
|
<img src="https://create3000.github.io/media/examples/Sound/AudioClip/screenshot-small.png" alt="AudioClip"/>
|
|
720
723
|
</a>
|
|
721
724
|
</td>
|
|
722
725
|
<td>
|
|
723
|
-
<a href="https://create3000.github.io/media/examples/Text/FontStyle/
|
|
726
|
+
<a href="https://create3000.github.io/media/examples/Text/FontStyle/FontStyle.x3d" title="Text » FontStyle">
|
|
724
727
|
<img src="https://create3000.github.io/media/examples/Text/FontStyle/screenshot-small.png" alt="FontStyle"/>
|
|
725
728
|
</a>
|
|
726
729
|
</td>
|
|
727
730
|
</tr>
|
|
728
731
|
<tr>
|
|
729
732
|
<td>
|
|
730
|
-
<a href="https://create3000.github.io/media/examples/Text/Text/
|
|
733
|
+
<a href="https://create3000.github.io/media/examples/Text/Text/Text.x3d" title="Text » Text">
|
|
731
734
|
<img src="https://create3000.github.io/media/examples/Text/Text/screenshot-small.png" alt="Text"/>
|
|
732
735
|
</a>
|
|
733
736
|
</td>
|
|
734
737
|
<td>
|
|
735
|
-
<a href="https://create3000.github.io/media/examples/Texturing/ImageTexture/
|
|
738
|
+
<a href="https://create3000.github.io/media/examples/Texturing/ImageTexture/ImageTexture.x3d" title="Texturing » ImageTexture">
|
|
736
739
|
<img src="https://create3000.github.io/media/examples/Texturing/ImageTexture/screenshot-small.png" alt="ImageTexture"/>
|
|
737
740
|
</a>
|
|
738
741
|
</td>
|
|
739
742
|
<td>
|
|
740
|
-
<a href="https://create3000.github.io/media/examples/Texturing/MovieTexture/
|
|
743
|
+
<a href="https://create3000.github.io/media/examples/Texturing/MovieTexture/MovieTexture.x3d" title="Texturing » MovieTexture">
|
|
741
744
|
<img src="https://create3000.github.io/media/examples/Texturing/MovieTexture/screenshot-small.png" alt="MovieTexture"/>
|
|
742
745
|
</a>
|
|
743
746
|
</td>
|
|
744
747
|
<td>
|
|
745
|
-
<a href="https://create3000.github.io/media/examples/Texturing/MultiTexture/
|
|
748
|
+
<a href="https://create3000.github.io/media/examples/Texturing/MultiTexture/MultiTexture.x3d" title="Texturing » MultiTexture">
|
|
746
749
|
<img src="https://create3000.github.io/media/examples/Texturing/MultiTexture/screenshot-small.png" alt="MultiTexture"/>
|
|
747
750
|
</a>
|
|
748
751
|
</td>
|
|
749
752
|
<td>
|
|
750
|
-
<a href="https://create3000.github.io/media/examples/Texturing/PixelTexture/
|
|
753
|
+
<a href="https://create3000.github.io/media/examples/Texturing/PixelTexture/PixelTexture.x3d" title="Texturing » PixelTexture">
|
|
751
754
|
<img src="https://create3000.github.io/media/examples/Texturing/PixelTexture/screenshot-small.png" alt="PixelTexture"/>
|
|
752
755
|
</a>
|
|
753
756
|
</td>
|
|
754
757
|
<td>
|
|
755
|
-
<a href="https://create3000.github.io/media/examples/Texturing3D/ImageTexture3D/
|
|
758
|
+
<a href="https://create3000.github.io/media/examples/Texturing3D/ImageTexture3D/ImageTexture3D.x3d" title="Texturing3D » ImageTexture3D">
|
|
756
759
|
<img src="https://create3000.github.io/media/examples/Texturing3D/ImageTexture3D/screenshot-small.png" alt="ImageTexture3D"/>
|
|
757
760
|
</a>
|
|
758
761
|
</td>
|
|
759
762
|
<td>
|
|
760
|
-
<a href="https://create3000.github.io/media/examples/Time/TimeSensor/
|
|
763
|
+
<a href="https://create3000.github.io/media/examples/Time/TimeSensor/TimeSensor.x3d" title="Time » TimeSensor">
|
|
761
764
|
<img src="https://create3000.github.io/media/examples/Time/TimeSensor/screenshot-small.png" alt="TimeSensor"/>
|
|
762
765
|
</a>
|
|
763
766
|
</td>
|
|
764
767
|
</tr>
|
|
765
768
|
<tr>
|
|
766
769
|
<td>
|
|
767
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/EdgeEnhancementVolumeStyle/
|
|
770
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/EdgeEnhancementVolumeStyle/EdgeEnhancementVolumeStyle.x3d" title="VolumeRendering » EdgeEnhancementVolumeStyle">
|
|
768
771
|
<img src="https://create3000.github.io/media/examples/VolumeRendering/EdgeEnhancementVolumeStyle/screenshot-small.png" alt="EdgeEnhancementVolumeStyle"/>
|
|
769
772
|
</a>
|
|
770
773
|
</td>
|
|
771
774
|
<td>
|
|
772
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/IsoSurfaceVolumeData/
|
|
775
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/IsoSurfaceVolumeData/IsoSurfaceVolumeData.x3d" title="VolumeRendering » IsoSurfaceVolumeData">
|
|
773
776
|
<img src="https://create3000.github.io/media/examples/VolumeRendering/IsoSurfaceVolumeData/screenshot-small.png" alt="IsoSurfaceVolumeData"/>
|
|
774
777
|
</a>
|
|
775
778
|
</td>
|
|
776
779
|
<td>
|
|
777
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/SegmentedVolumeData/
|
|
780
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/SegmentedVolumeData/SegmentedVolumeData.x3d" title="VolumeRendering » SegmentedVolumeData">
|
|
778
781
|
<img src="https://create3000.github.io/media/examples/VolumeRendering/SegmentedVolumeData/screenshot-small.png" alt="SegmentedVolumeData"/>
|
|
779
782
|
</a>
|
|
780
783
|
</td>
|
|
781
784
|
<td>
|
|
782
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/ShadedVolumeStyle/
|
|
785
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/ShadedVolumeStyle/ShadedVolumeStyle.x3d" title="VolumeRendering » ShadedVolumeStyle">
|
|
783
786
|
<img src="https://create3000.github.io/media/examples/VolumeRendering/ShadedVolumeStyle/screenshot-small.png" alt="ShadedVolumeStyle"/>
|
|
784
787
|
</a>
|
|
785
788
|
</td>
|
|
786
789
|
<td>
|
|
787
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/ToneMappedVolumeStyle/
|
|
790
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/ToneMappedVolumeStyle/ToneMappedVolumeStyle.x3d" title="VolumeRendering » ToneMappedVolumeStyle">
|
|
788
791
|
<img src="https://create3000.github.io/media/examples/VolumeRendering/ToneMappedVolumeStyle/screenshot-small.png" alt="ToneMappedVolumeStyle"/>
|
|
789
792
|
</a>
|
|
790
793
|
</td>
|
|
791
794
|
<td>
|
|
792
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/VolumeData/
|
|
795
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/VolumeData/VolumeData.x3d" title="VolumeRendering » VolumeData">
|
|
793
796
|
<img src="https://create3000.github.io/media/examples/VolumeRendering/VolumeData/screenshot-small.png" alt="VolumeData"/>
|
|
794
797
|
</a>
|
|
795
798
|
</td>
|
|
796
799
|
<td>
|
|
797
|
-
<a href="https://create3000.github.io/media/examples/X_ITE/BlendMode/
|
|
800
|
+
<a href="https://create3000.github.io/media/examples/X_ITE/BlendMode/BlendMode.x3d" title="X_ITE » BlendMode">
|
|
798
801
|
<img src="https://create3000.github.io/media/examples/X_ITE/BlendMode/screenshot-small.png" alt="BlendMode"/>
|
|
799
802
|
</a>
|
|
800
803
|
</td>
|
|
801
804
|
</tr>
|
|
802
805
|
</table>
|
|
803
806
|
|
|
804
|
-
The VolumeRendering examples are only working if your browser supports WebGL 2, otherwise the examples left black.
|
|
805
|
-
{: .
|
|
807
|
+
>**Note:** The VolumeRendering examples are only working if your browser supports WebGL 2, otherwise the examples left black.
|
|
808
|
+
{: .prompt-info }
|
|
806
809
|
|
|
807
|
-
## Download
|
|
810
|
+
## Download X_ITE v{{ site.version }}
|
|
808
811
|
|
|
809
|
-
There is a ZIP archive available to locally install
|
|
812
|
+
There is a ZIP archive available to locally install X_ITE on your server. Compressed and uncompressed copies of X_ITE files are available. The uncompressed file (x_ite.js) is best used during development or debugging; the compressed file (x_ite.min.js) saves bandwidth and improves performance in production.
|
|
810
813
|
|
|
811
|
-
[Download
|
|
814
|
+
[Download X_ITE ZIP archive](https://create3000.github.io/code/x_ite/latest/x_ite.zip)
|
|
812
815
|
|
|
813
|
-
### You also
|
|
816
|
+
### You can also get it on NPM
|
|
814
817
|
|
|
815
818
|
```sh
|
|
816
819
|
$ npm install x_ite
|
|
817
820
|
```
|
|
818
821
|
|
|
819
|
-
It can be used in [Electron](https://www.electronjs.org) apps in the **renderer process** like this:
|
|
822
|
+
It can be used in [Electron](https://www.electronjs.org){:target="_blank"} apps in the **renderer process** like this:
|
|
820
823
|
|
|
821
824
|
```js
|
|
822
825
|
const X3D = require ("x_ite")
|
|
@@ -824,9 +827,9 @@ const X3D = require ("x_ite")
|
|
|
824
827
|
|
|
825
828
|
Make sure that contextIsolation is set to **false** when creating a BrowserWindow instance.
|
|
826
829
|
|
|
827
|
-
### Using
|
|
830
|
+
### Using X_ITE with a CDN
|
|
828
831
|
|
|
829
|
-
CDNs can offer a performance benefit by hosting
|
|
832
|
+
CDNs can offer a performance benefit by hosting X_ITE on servers spread across the globe. This also offers an advantage that if the visitor to your webpage has already downloaded a copy of X_ITE from the same CDN, it won't have to be re-downloaded. To use the X_ITE CDN, just reference the CSS and JavaScript file in the script element directly from the GitHub CDN or jsDelivr CDN domain.
|
|
830
833
|
|
|
831
834
|
### GitHub CDN
|
|
832
835
|
|
|
@@ -857,14 +860,14 @@ You can always replace »latest« by the version number you prefer.
|
|
|
857
860
|
If you are on production and everything works fine, then use a numbered version.
|
|
858
861
|
|
|
859
862
|
```html
|
|
860
|
-
<script src="https://cdn.jsdelivr.net/gh/create3000/x_ite@
|
|
863
|
+
<script src="https://cdn.jsdelivr.net/gh/create3000/x_ite@{{ site.version }}/dist/x_ite.min.js"></script>
|
|
861
864
|
```
|
|
862
865
|
|
|
863
|
-
## Embedding
|
|
866
|
+
## Embedding X_ITE within a Web Page
|
|
864
867
|
|
|
865
868
|
To display your X3D scene in a HTML5 page first save your scene as X3D XML Encoded file, X3D JSON Encoded file, or as X3D Classic Encoded file, i.e. create a file with the extension .x3d, .x3dj, .x3dv, or .wrl.
|
|
866
869
|
|
|
867
|
-
The HTML5 page is quite easy to create, the HTML5 code below shows you the minimum requirements. The path to the X3D scene is specified in the src attribute of the
|
|
870
|
+
The HTML5 page is quite easy to create, the HTML5 code below shows you the minimum requirements. The path to the X3D scene is specified in the *src* attribute of the \<x3d-canvas\> element.
|
|
868
871
|
|
|
869
872
|
```html
|
|
870
873
|
<!DOCTYPE html>
|
|
@@ -880,24 +883,22 @@ x3d-canvas {
|
|
|
880
883
|
</style>
|
|
881
884
|
</head>
|
|
882
885
|
<body>
|
|
883
|
-
<x3d-canvas src="path/to/your/X3D/world.x3d">
|
|
884
|
-
<p>Your browser may not support all features required by X_ITE.
|
|
885
|
-
For a better experience, keep your browser up to date.
|
|
886
|
-
<a href="http://outdatedbrowser.com">Check here for latest versions.</a>
|
|
887
|
-
</p>
|
|
888
|
-
</x3d-canvas>
|
|
886
|
+
<x3d-canvas src="path/to/your/X3D/world.x3d"></x3d-canvas>
|
|
889
887
|
</body>
|
|
890
888
|
</html>
|
|
891
889
|
```
|
|
892
890
|
|
|
893
|
-
To get
|
|
891
|
+
To get X_ITE working you must include the JavaScript file »x_ite.min.js«. After x_ite is successfully loaded a new HTML element \<x3d-canvas\> is available on your page.
|
|
892
|
+
|
|
893
|
+
>**Attention:** If you test a page locally on your desktop computer, you must setup a **localhost** server if you want to load a file via *src* attribute or Inline node, see [Setup a localhost Server](setup-a-localhost-server). Or use [DOM Integration](dom-integration) methods to directly combine HTML with X3D.
|
|
894
|
+
{: .prompt-danger }
|
|
894
895
|
|
|
895
|
-
|
|
896
|
-
{: .
|
|
896
|
+
>**Tip:** You can style the \<x3d-canvas\> element as every HTML element with CSS as well as you can place it everywhere within the DOM tree.
|
|
897
|
+
{: .prompt-tip }
|
|
897
898
|
|
|
898
899
|
### Supported File Formats
|
|
899
900
|
|
|
900
|
-
As of version 1.19,
|
|
901
|
+
As of version 1.19, X_ITE can now parse either X3D XML Encoding or X3D Classic Encoding. This gives authors the capability to use X_ITE also as VRML viewer.
|
|
901
902
|
|
|
902
903
|
Additionally files can be compressed using GZip compression.
|
|
903
904
|
|
|
@@ -908,13 +909,13 @@ Additionally files can be compressed using GZip compression.
|
|
|
908
909
|
| Classic VRML | .x3dv, .x3dvz | model/x3d+vrml |
|
|
909
910
|
| VRML | .wrl, .wrz | model/vrml |
|
|
910
911
|
|
|
911
|
-
For more information see [How to Configure Your Web Server](
|
|
912
|
+
For more information see [How to Configure Your Web Server](how-to-configure-your-web-server).
|
|
912
913
|
|
|
913
914
|
### Fallback Content
|
|
914
915
|
|
|
915
|
-
The
|
|
916
|
+
The \<x3d-canvas\> element is equal to the \<canvas\> element in that, it is easy to define some fallback content, to be displayed in older browsers not supporting it. You should always provide fallback content to be displayed by those browsers.
|
|
916
917
|
|
|
917
|
-
Providing fallback content is very straightforward: just insert the alternate content inside the
|
|
918
|
+
Providing fallback content is very straightforward: just insert the alternate content inside the \<x3d-canvas\> element. Browsers that don't support \<x3d-canvas\> will ignore the container and render the fallback content inside it. Browsers that do support \<x3d-canvas\> will ignore the content inside the container, and just render the canvas normally.
|
|
918
919
|
|
|
919
920
|
For example, we could provide a text description of the X3D element or provide a static image of the dynamically rendered content. This can look something like this:
|
|
920
921
|
|
|
@@ -930,59 +931,49 @@ For example, we could provide a text description of the X3D element or provide a
|
|
|
930
931
|
</x3d-canvas>
|
|
931
932
|
```
|
|
932
933
|
|
|
933
|
-
## Attributes of the x3d-canvas
|
|
934
|
+
## Attributes of the \<x3d-canvas\> Element
|
|
934
935
|
|
|
935
|
-
The HTML
|
|
936
|
+
The HTML **\<x3d-canvas\>** element defines the main content of the X3D document. The \<x3d-canvas\> element has several attributes that define different behaviors. All of these attributes are optional.
|
|
936
937
|
|
|
937
938
|
### cache
|
|
938
939
|
|
|
939
|
-
A Boolean value (`true` or `false`) to indicate whether files transferred over the internet should be cached on the local computer. The default value for the cache attribute is `true`. It works by appending "
|
|
940
|
-
{: .notice}
|
|
940
|
+
A Boolean value (`true` or `false`) to indicate whether files transferred over the internet should be cached on the local computer. The default value for the *cache* attribute is `true`. It works by appending "_={timestamp}" to the GET parameters of every request.
|
|
941
941
|
|
|
942
942
|
### contextMenu
|
|
943
943
|
|
|
944
|
-
A Boolean value (`true` or `false`) to indicate whether a context menu should be displayed on right click. The default value for the contextMenu attribute is `true`. The context menu can also be extended, [see here](#extending-the-context-menu).
|
|
945
|
-
{: .notice}
|
|
944
|
+
A Boolean value (`true` or `false`) to indicate whether a context menu should be displayed on right click. The default value for the *contextMenu* attribute is `true`. The context menu can also be extended, [see here](#extending-the-context-menu).
|
|
946
945
|
|
|
947
946
|
### notifications
|
|
948
947
|
|
|
949
|
-
A Boolean value (`true` or `false`) to indicate whether the notification bubble should be displayed. The default value for the notifications attribute is `true`.
|
|
950
|
-
{: .notice}
|
|
948
|
+
A Boolean value (`true` or `false`) to indicate whether the notification bubble should be displayed. The default value for the *notifications* attribute is `true`.
|
|
951
949
|
|
|
952
950
|
### onerror
|
|
953
951
|
|
|
954
952
|
Type: script code. This event is sent to an x3d-canvas element when an error occurs loading a scene.
|
|
955
|
-
{: .notice}
|
|
956
953
|
|
|
957
954
|
### oninitialized, onload
|
|
958
955
|
|
|
959
|
-
Type: script code. This event handler will be called on the x3d-canvas element when a scene has finished loading. This applies whether the scene is applied via the src attribute or when a scene is loaded or replaced by another world. If you change the scene, the event will fire again when the new scene loads. This event will not bubble up the element tree.
|
|
960
|
-
{: .notice}
|
|
956
|
+
Type: script code. This event handler will be called on the x3d-canvas element when a scene has finished loading. This applies whether the scene is applied via the *src* attribute or when a scene is loaded or replaced by another world. If you change the scene, the event will fire again when the new scene loads. This event will not bubble up the element tree.
|
|
961
957
|
|
|
962
958
|
### onshutdown
|
|
963
959
|
|
|
964
960
|
Type: script code. This event handler will be called on the x3d-canvas element when a scene is unloaded or replaced by another world.
|
|
965
|
-
{: .notice}
|
|
966
961
|
|
|
967
962
|
### preserveDrawingBuffer
|
|
968
963
|
|
|
969
|
-
A Boolean value (`true` or `false`). If the value is true the drawing buffers will not be cleared and will preserve their values. The default value for preserveDrawingBuffer is `false`. Set preserveDrawingBuffer to true if you want to save the image from the canvas. Keep in mind setting preserveDrawingBuffer to true can have performance implications.
|
|
970
|
-
{: .notice}
|
|
964
|
+
A Boolean value (`true` or `false`). If the value is true the drawing buffers will not be cleared and will preserve their values. The default value for the *preserveDrawingBuffer* attribute is `false`. Set *preserveDrawingBuffer* to true if you want to save the image from the canvas. Keep in mind setting *preserveDrawingBuffer* to true can have performance implications.
|
|
971
965
|
|
|
972
966
|
### splashScreen
|
|
973
967
|
|
|
974
|
-
A Boolean value (`true` or `false`) to indicate whether the splash screen should be displayed. The default value for the splashScreen attribute is `true`. The display of the splash screen can also be toggled via the browser option »SplashScreen« in JavaScript. Call `Browser .setBrowserOption ("SplashScreen", booleanValue)` to toggle the display of the splash screen.
|
|
975
|
-
{: .notice}
|
|
968
|
+
A Boolean value (`true` or `false`) to indicate whether the splash screen should be displayed. The default value for the *splashScreen* attribute is `true`. The display of the splash screen can also be toggled via the browser option »SplashScreen« in JavaScript. Call `Browser .setBrowserOption ("SplashScreen", booleanValue)` to toggle the display of the splash screen.
|
|
976
969
|
|
|
977
970
|
### src
|
|
978
971
|
|
|
979
|
-
A String value with the URL that should be loaded on page load. If no src attribute is specified or the src attribute is empty an empty scene is displayed.
|
|
980
|
-
{: .notice}
|
|
972
|
+
A String value with the URL that should be loaded on page load. If no *src* attribute is specified or the *src* attribute is empty an empty scene is displayed.
|
|
981
973
|
|
|
982
974
|
### url
|
|
983
975
|
|
|
984
|
-
A MFString value with urls that should be loaded on page load. If no url attribute is specified or the attribute is empty an empty scene is displayed. If both src and url attribute are specified the src attribute takes precedence.
|
|
985
|
-
{: .notice}
|
|
976
|
+
A MFString value with urls that should be loaded on page load. If no *url* attribute is specified or the attribute is empty an empty scene is displayed. If both src and *url* attribute are specified the *src* attribute takes precedence.
|
|
986
977
|
|
|
987
978
|
### Example
|
|
988
979
|
|
|
@@ -992,7 +983,7 @@ A MFString value with urls that should be loaded on page load. If no url attribu
|
|
|
992
983
|
|
|
993
984
|
### More Options
|
|
994
985
|
|
|
995
|
-
More options can be adjusted using the [Browser Object](reference/
|
|
986
|
+
More options can be adjusted using the [Browser Object](reference/browser-services#browser-object) and [Browser Options](reference/browser-services#browser-options) for scene specific adjustments.
|
|
996
987
|
|
|
997
988
|
## Keyboard Shortcuts
|
|
998
989
|
|
|
@@ -1018,6 +1009,10 @@ Go to next viewpoint.
|
|
|
1018
1009
|
|
|
1019
1010
|
Display browser timings.
|
|
1020
1011
|
|
|
1012
|
+
### Shift+F8
|
|
1013
|
+
|
|
1014
|
+
Copy the the current viewpoint of the active layer to clipboard.
|
|
1015
|
+
|
|
1021
1016
|
### Ctrl+S
|
|
1022
1017
|
|
|
1023
1018
|
If x3d-canvas attribute *debug* is `true`, toggle begin/end update of browser.
|
|
@@ -1042,13 +1037,9 @@ If x3d-canvas attribute *debug* is `true`, set shading to GOURAUD.
|
|
|
1042
1037
|
|
|
1043
1038
|
If x3d-canvas attribute *debug* is `true`, set shading to PHONG.
|
|
1044
1039
|
|
|
1045
|
-
### Shift+F8
|
|
1046
|
-
|
|
1047
|
-
Copy the the current viewpoint of the active layer to clipboard.
|
|
1048
|
-
|
|
1049
1040
|
## Extending the Context Menu
|
|
1050
1041
|
|
|
1051
|
-
The context menu is the jQuery Context Menu plugin, and it can be extended using the `items` syntax. The full documentation [can be found here](https://swisnl.github.io/jQuery-contextMenu/docs/items.html).
|
|
1042
|
+
The context menu is the jQuery Context Menu plugin, and it can be extended using the `items` syntax. The full documentation [can be found here](https://swisnl.github.io/jQuery-contextMenu/docs/items.html){:target="_blank"}.
|
|
1052
1043
|
|
|
1053
1044
|
### Example
|
|
1054
1045
|
|
|
@@ -1066,36 +1057,3 @@ Browser .getContextMenu () .setUserMenu (function ()
|
|
|
1066
1057
|
};
|
|
1067
1058
|
});
|
|
1068
1059
|
```
|
|
1069
|
-
|
|
1070
|
-
## Accessing the External Browser
|
|
1071
|
-
|
|
1072
|
-
X\_ITE is designed to provide access to a browser and its contained scene graph via JavaScript, either within an internal X3D Script node or an external HTML script.
|
|
1073
|
-
|
|
1074
|
-
[Learn more how to access the external browser.](Accessing-the-External-Browser.html)
|
|
1075
|
-
|
|
1076
|
-
## DOM Integration
|
|
1077
|
-
|
|
1078
|
-
DOM integration allows you to integrate 3D content seamlessly into your webpage, with just a JavaScript file included the scene can be written directly into the HTML or XHTML markup. There are no further plug-ins needed anymore.
|
|
1079
|
-
|
|
1080
|
-
[Learn more about how XHTML and X3D can operate together.](DOM-Integration.html)
|
|
1081
|
-
|
|
1082
|
-
We show you a simple example how you can manipulate the X3D DOM in JavaScript like you would do it with any HTML.
|
|
1083
|
-
|
|
1084
|
-
## Using Firefox, Chrome and Opera with Local Files
|
|
1085
|
-
|
|
1086
|
-
X\_ITE makes use of the XMLHttpRequest object to load files and there's no way round that. But that means files loading using the file:// scheme protocol are subject to the same origin policy and are handled as cross origin requests (CORS) and cross origin requests are only supported for protocol schemes: http, data and https. That means X\_ITE cannot have access to this files.
|
|
1087
|
-
|
|
1088
|
-
To work around this problem you must set up a localhost server, than you can access your local files under the web address http://**localhost**/... This can be done using XAMPP from the <https://www.apachefriends.org> website. XAMPP is a completely free, easy to install Apache distribution containing MariaDB, PHP, and Perl. The XAMPP open source package has been set up to be incredibly easy to install and to use.
|
|
1089
|
-
|
|
1090
|
-
MacOS users can use [Personal Web Server](https://apps.apple.com/de/app/personal-web-server/id1486323797?mt=12), which can serve files through a web server, and is very easy to use.
|
|
1091
|
-
|
|
1092
|
-
## Report a Bug
|
|
1093
|
-
|
|
1094
|
-
If you run into any bugs or encounter any other abnormal issues with X\_ITE, let us know!
|
|
1095
|
-
|
|
1096
|
-
Here's an example of a helpful bug report:
|
|
1097
|
-
|
|
1098
|
-
*I fell through a hole on the Resistance map. I was running along the wall near the pool of water and fell through a black hole in the wall. I got stuck and had to leave the match. This happened while playing Search and Destroy.*
|
|
1099
|
-
{: .notice--danger}
|
|
1100
|
-
|
|
1101
|
-
[X\_ITE Feedback Survey and Bug Report](https://github.com/create3000/x_ite/issues)
|