x_ite 8.8.6 → 8.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Makefile +6 -0
- package/build/docs/nodes.pl +434 -0
- package/dist/assets/components/Annotation.js +14 -14
- package/dist/assets/components/Annotation.min.js +1 -1
- package/dist/assets/components/CADGeometry.js +13 -13
- package/dist/assets/components/CADGeometry.min.js +1 -1
- package/dist/assets/components/CubeMapTexturing.js +28 -28
- package/dist/assets/components/CubeMapTexturing.min.js +1 -1
- package/dist/assets/components/DIS.js +14 -14
- package/dist/assets/components/DIS.min.js +1 -1
- package/dist/assets/components/EventUtilities.js +9 -9
- package/dist/assets/components/EventUtilities.min.js +1 -1
- package/dist/assets/components/Geometry2D.js +19 -19
- package/dist/assets/components/Geometry2D.min.js +1 -1
- package/dist/assets/components/Geospatial.js +52 -40
- package/dist/assets/components/Geospatial.min.js +1 -1
- package/dist/assets/components/HAnim.js +19 -19
- package/dist/assets/components/HAnim.min.js +1 -1
- package/dist/assets/components/KeyDeviceSensor.js +8 -8
- package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
- package/dist/assets/components/Layout.js +27 -27
- package/dist/assets/components/Layout.min.js +1 -1
- package/dist/assets/components/NURBS.js +26 -26
- package/dist/assets/components/NURBS.min.js +1 -1
- package/dist/assets/components/ParticleSystems.js +76 -74
- package/dist/assets/components/ParticleSystems.min.js +1 -1
- package/dist/assets/components/Picking.js +18 -18
- package/dist/assets/components/Picking.min.js +1 -1
- package/dist/assets/components/RigidBodyPhysics.js +29 -30
- package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
- package/dist/assets/components/Scripting.js +37 -37
- package/dist/assets/components/Scripting.min.js +1 -1
- package/dist/assets/components/Text.js +24 -24
- package/dist/assets/components/Text.min.js +1 -1
- package/dist/assets/components/TextureProjector.js +23 -23
- package/dist/assets/components/TextureProjector.min.js +1 -1
- package/dist/assets/components/Texturing3D.js +30 -30
- package/dist/assets/components/Texturing3D.min.js +1 -1
- package/dist/assets/components/VolumeRendering.js +21 -21
- package/dist/assets/components/VolumeRendering.min.js +1 -1
- package/dist/assets/components/X_ITE.js +9 -9
- package/dist/assets/components/X_ITE.min.js +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.js +1002 -133
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/_config.yml +2 -2
- package/docs/_posts/components/CADGeometry/CADAssembly.md +47 -21
- package/docs/_posts/components/CADGeometry/CADFace.md +47 -21
- package/docs/_posts/components/CADGeometry/CADLayer.md +50 -21
- package/docs/_posts/components/CADGeometry/CADPart.md +56 -26
- package/docs/_posts/components/CADGeometry/IndexedQuadSet.md +55 -26
- package/docs/_posts/components/CADGeometry/QuadSet.md +52 -20
- package/docs/_posts/components/Core/MetadataBoolean.md +27 -36
- package/docs/_posts/components/Core/MetadataDouble.md +31 -16
- package/docs/_posts/components/Core/MetadataFloat.md +31 -16
- package/docs/_posts/components/Core/MetadataInteger.md +31 -16
- package/docs/_posts/components/Core/MetadataSet.md +30 -15
- package/docs/_posts/components/Core/MetadataString.md +31 -16
- package/docs/_posts/components/Core/WorldInfo.md +21 -10
- package/docs/_posts/components/CubeMapTexturing/ComposedCubeMapTexture.md +39 -30
- package/docs/_posts/components/CubeMapTexturing/GeneratedCubeMapTexture.md +19 -10
- package/docs/_posts/components/CubeMapTexturing/ImageCubeMapTexture.md +22 -18
- package/docs/_posts/components/DIS/DISEntityManager.md +43 -18
- package/docs/_posts/components/DIS/DISEntityTypeMapping.md +43 -34
- package/docs/_posts/components/DIS/EspduTransform.md +211 -78
- package/docs/_posts/components/DIS/ReceiverPdu.md +95 -45
- package/docs/_posts/components/DIS/SignalPdu.md +98 -44
- package/docs/_posts/components/DIS/TransmitterPdu.md +118 -68
- package/docs/_posts/components/EnvironmentalEffects/Background.md +80 -39
- package/docs/_posts/components/EnvironmentalEffects/Fog.md +39 -18
- package/docs/_posts/components/EnvironmentalEffects/FogCoordinate.md +10 -6
- package/docs/_posts/components/EnvironmentalEffects/LocalFog.md +21 -14
- package/docs/_posts/components/EnvironmentalEffects/TextureBackground.md +83 -31
- package/docs/_posts/components/EnvironmentalSensor/ProximitySensor.md +36 -8
- package/docs/_posts/components/EnvironmentalSensor/TransformSensor.md +31 -7
- package/docs/_posts/components/EnvironmentalSensor/VisibilitySensor.md +23 -7
- package/docs/_posts/components/EventUtilities/BooleanFilter.md +27 -14
- package/docs/_posts/components/EventUtilities/BooleanSequencer.md +46 -17
- package/docs/_posts/components/EventUtilities/BooleanToggle.md +29 -8
- package/docs/_posts/components/EventUtilities/BooleanTrigger.md +24 -7
- package/docs/_posts/components/EventUtilities/IntegerSequencer.md +46 -17
- package/docs/_posts/components/EventUtilities/IntegerTrigger.md +34 -9
- package/docs/_posts/components/EventUtilities/TimeTrigger.md +30 -9
- package/docs/_posts/components/Followers/ColorChaser.md +35 -11
- package/docs/_posts/components/Followers/ColorDamper.md +32 -12
- package/docs/_posts/components/Followers/CoordinateChaser.md +33 -9
- package/docs/_posts/components/Followers/CoordinateDamper.md +30 -10
- package/docs/_posts/components/Followers/OrientationChaser.md +34 -10
- package/docs/_posts/components/Followers/OrientationDamper.md +31 -11
- package/docs/_posts/components/Followers/PositionChaser.md +33 -9
- package/docs/_posts/components/Followers/PositionChaser2D.md +33 -9
- package/docs/_posts/components/Followers/PositionDamper.md +30 -10
- package/docs/_posts/components/Followers/PositionDamper2D.md +30 -10
- package/docs/_posts/components/Followers/ScalarChaser.md +33 -9
- package/docs/_posts/components/Followers/ScalarDamper.md +30 -10
- package/docs/_posts/components/Followers/TexCoordChaser2D.md +33 -9
- package/docs/_posts/components/Followers/TexCoordDamper2D.md +30 -10
- package/docs/_posts/components/Geometry2D/Arc2D.md +39 -14
- package/docs/_posts/components/Geometry2D/ArcClose2D.md +43 -19
- package/docs/_posts/components/Geometry2D/Circle2D.md +21 -10
- package/docs/_posts/components/Geometry2D/Disk2D.md +32 -14
- package/docs/_posts/components/Geometry2D/Polyline2D.md +25 -10
- package/docs/_posts/components/Geometry2D/Polypoint2D.md +16 -8
- package/docs/_posts/components/Geometry2D/Rectangle2D.md +23 -12
- package/docs/_posts/components/Geometry2D/TriangleSet2D.md +23 -12
- package/docs/_posts/components/Geometry3D/Box.md +26 -13
- package/docs/_posts/components/Geometry3D/Cone.md +31 -23
- package/docs/_posts/components/Geometry3D/Cylinder.md +32 -28
- package/docs/_posts/components/Geometry3D/ElevationGrid.md +75 -31
- package/docs/_posts/components/Geometry3D/Extrusion.md +100 -48
- package/docs/_posts/components/Geometry3D/IndexedFaceSet.md +95 -43
- package/docs/_posts/components/Geometry3D/Sphere.md +25 -13
- package/docs/_posts/components/Geospatial/GeoCoordinate.md +30 -14
- package/docs/_posts/components/Geospatial/GeoElevationGrid.md +85 -40
- package/docs/_posts/components/Geospatial/GeoLOD.md +69 -30
- package/docs/_posts/components/Geospatial/GeoLocation.md +66 -28
- package/docs/_posts/components/Geospatial/GeoMetadata.md +28 -22
- package/docs/_posts/components/Geospatial/GeoOrigin.md +34 -19
- package/docs/_posts/components/Geospatial/GeoPositionInterpolator.md +64 -18
- package/docs/_posts/components/Geospatial/GeoProximitySensor.md +67 -18
- package/docs/_posts/components/Geospatial/GeoTouchSensor.md +66 -21
- package/docs/_posts/components/Geospatial/GeoTransform.md +74 -30
- package/docs/_posts/components/Geospatial/GeoViewpoint.md +88 -41
- package/docs/_posts/components/Grouping/Group.md +34 -18
- package/docs/_posts/components/Grouping/StaticGroup.md +39 -18
- package/docs/_posts/components/Grouping/Switch.md +41 -22
- package/docs/_posts/components/Grouping/Transform.md +47 -30
- package/docs/_posts/components/HAnim/HAnimDisplacer.md +48 -37
- package/docs/_posts/components/HAnim/HAnimHumanoid.md +245 -55
- package/docs/_posts/components/HAnim/HAnimJoint.md +136 -70
- package/docs/_posts/components/HAnim/HAnimMotion.md +128 -18
- package/docs/_posts/components/HAnim/HAnimSegment.md +92 -52
- package/docs/_posts/components/HAnim/HAnimSite.md +95 -52
- package/docs/_posts/components/Interpolation/ColorInterpolator.md +41 -11
- package/docs/_posts/components/Interpolation/CoordinateInterpolator.md +39 -13
- package/docs/_posts/components/Interpolation/CoordinateInterpolator2D.md +43 -14
- package/docs/_posts/components/Interpolation/EaseInEaseOut.md +36 -12
- package/docs/_posts/components/Interpolation/NormalInterpolator.md +40 -10
- package/docs/_posts/components/Interpolation/OrientationInterpolator.md +40 -10
- package/docs/_posts/components/Interpolation/PositionInterpolator.md +40 -10
- package/docs/_posts/components/Interpolation/PositionInterpolator2D.md +43 -14
- package/docs/_posts/components/Interpolation/ScalarInterpolator.md +39 -13
- package/docs/_posts/components/Interpolation/SplinePositionInterpolator.md +41 -16
- package/docs/_posts/components/Interpolation/SplinePositionInterpolator2D.md +41 -16
- package/docs/_posts/components/Interpolation/SplineScalarInterpolator.md +40 -24
- package/docs/_posts/components/Interpolation/SquadOrientationInterpolator.md +35 -11
- package/docs/_posts/components/KeyDeviceSensor/KeySensor.md +51 -9
- package/docs/_posts/components/KeyDeviceSensor/StringSensor.md +31 -9
- package/docs/_posts/components/Layering/Layer.md +39 -14
- package/docs/_posts/components/Layering/LayerSet.md +21 -15
- package/docs/_posts/components/Layering/Viewport.md +34 -18
- package/docs/_posts/components/Layout/Layout.md +28 -17
- package/docs/_posts/components/Layout/LayoutGroup.md +37 -21
- package/docs/_posts/components/Layout/LayoutLayer.md +40 -15
- package/docs/_posts/components/Layout/ScreenFontStyle.md +74 -47
- package/docs/_posts/components/Layout/ScreenGroup.md +35 -19
- package/docs/_posts/components/Lighting/DirectionalLight.md +23 -15
- package/docs/_posts/components/Lighting/EnvironmentLight.md +7 -11
- package/docs/_posts/components/Lighting/PointLight.md +27 -15
- package/docs/_posts/components/Lighting/SpotLight.md +36 -23
- package/docs/_posts/components/NURBS/Contour2D.md +17 -9
- package/docs/_posts/components/NURBS/ContourPolyline2D.md +10 -6
- package/docs/_posts/components/NURBS/CoordinateDouble.md +13 -9
- package/docs/_posts/components/NURBS/NurbsCurve.md +16 -12
- package/docs/_posts/components/NURBS/NurbsCurve2D.md +15 -11
- package/docs/_posts/components/NURBS/NurbsOrientationInterpolator.md +31 -15
- package/docs/_posts/components/NURBS/NurbsPatchSurface.md +29 -23
- package/docs/_posts/components/NURBS/NurbsPositionInterpolator.md +30 -14
- package/docs/_posts/components/NURBS/NurbsSet.md +51 -17
- package/docs/_posts/components/NURBS/NurbsSurfaceInterpolator.md +48 -28
- package/docs/_posts/components/NURBS/NurbsSweptSurface.md +31 -14
- package/docs/_posts/components/NURBS/NurbsSwungSurface.md +25 -14
- package/docs/_posts/components/NURBS/NurbsTextureCoordinate.md +26 -22
- package/docs/_posts/components/NURBS/NurbsTrimmedSurface.md +36 -26
- package/docs/_posts/components/Navigation/Billboard.md +35 -19
- package/docs/_posts/components/Navigation/Collision.md +61 -24
- package/docs/_posts/components/Navigation/LOD.md +55 -25
- package/docs/_posts/components/Navigation/NavigationInfo.md +69 -26
- package/docs/_posts/components/Navigation/OrthoViewpoint.md +89 -38
- package/docs/_posts/components/Navigation/Viewpoint.md +95 -40
- package/docs/_posts/components/Navigation/ViewpointGroup.md +29 -18
- package/docs/_posts/components/Networking/Anchor.md +56 -58
- package/docs/_posts/components/Networking/Inline.md +44 -31
- package/docs/_posts/components/Networking/LoadSensor.md +43 -11
- package/docs/_posts/components/ParticleSystems/BoundedPhysicsModel.md +16 -8
- package/docs/_posts/components/ParticleSystems/ConeEmitter.md +31 -12
- package/docs/_posts/components/ParticleSystems/ExplosionEmitter.md +23 -12
- package/docs/_posts/components/ParticleSystems/ForcePhysicsModel.md +15 -8
- package/docs/_posts/components/ParticleSystems/ParticleSystem.md +110 -55
- package/docs/_posts/components/ParticleSystems/PointEmitter.md +25 -14
- package/docs/_posts/components/ParticleSystems/PolylineEmitter.md +28 -16
- package/docs/_posts/components/ParticleSystems/SurfaceEmitter.md +25 -14
- package/docs/_posts/components/ParticleSystems/VolumeEmitter.md +35 -16
- package/docs/_posts/components/ParticleSystems/WindPhysicsModel.md +12 -8
- package/docs/_posts/components/Picking/LinePickSensor.md +57 -31
- package/docs/_posts/components/Picking/PickableGroup.md +44 -26
- package/docs/_posts/components/Picking/PointPickSensor.md +47 -26
- package/docs/_posts/components/Picking/PrimitivePickSensor.md +43 -31
- package/docs/_posts/components/Picking/VolumePickSensor.md +43 -26
- package/docs/_posts/components/PointingDeviceSensor/CylinderSensor.md +46 -21
- package/docs/_posts/components/PointingDeviceSensor/PlaneSensor.md +43 -20
- package/docs/_posts/components/PointingDeviceSensor/SphereSensor.md +37 -15
- package/docs/_posts/components/PointingDeviceSensor/TouchSensor.md +50 -16
- package/docs/_posts/components/Rendering/ClipPlane.md +21 -16
- package/docs/_posts/components/Rendering/Color.md +14 -14
- package/docs/_posts/components/Rendering/ColorRGBA.md +13 -9
- package/docs/_posts/components/Rendering/Coordinate.md +11 -7
- package/docs/_posts/components/Rendering/IndexedLineSet.md +55 -27
- package/docs/_posts/components/Rendering/IndexedTriangleFanSet.md +44 -23
- package/docs/_posts/components/Rendering/IndexedTriangleSet.md +45 -24
- package/docs/_posts/components/Rendering/IndexedTriangleStripSet.md +45 -20
- package/docs/_posts/components/Rendering/LineSet.md +26 -14
- package/docs/_posts/components/Rendering/Normal.md +28 -6
- package/docs/_posts/components/Rendering/PointSet.md +24 -11
- package/docs/_posts/components/Rendering/TriangleFanSet.md +44 -19
- package/docs/_posts/components/Rendering/TriangleSet.md +44 -19
- package/docs/_posts/components/Rendering/TriangleStripSet.md +45 -20
- package/docs/_posts/components/RigidBodyPhysics/BallJoint.md +24 -12
- package/docs/_posts/components/RigidBodyPhysics/CollidableOffset.md +40 -17
- package/docs/_posts/components/RigidBodyPhysics/CollidableShape.md +37 -19
- package/docs/_posts/components/RigidBodyPhysics/CollisionCollection.md +24 -19
- package/docs/_posts/components/RigidBodyPhysics/CollisionSensor.md +21 -12
- package/docs/_posts/components/RigidBodyPhysics/CollisionSpace.md +36 -17
- package/docs/_posts/components/RigidBodyPhysics/Contact.md +20 -16
- package/docs/_posts/components/RigidBodyPhysics/DoubleAxisHingeJoint.md +43 -41
- package/docs/_posts/components/RigidBodyPhysics/MotorJoint.md +86 -34
- package/docs/_posts/components/RigidBodyPhysics/RigidBody.md +36 -26
- package/docs/_posts/components/RigidBodyPhysics/RigidBodyCollection.md +36 -20
- package/docs/_posts/components/RigidBodyPhysics/SingleAxisHingeJoint.md +33 -23
- package/docs/_posts/components/RigidBodyPhysics/SliderJoint.md +31 -19
- package/docs/_posts/components/RigidBodyPhysics/UniversalJoint.md +31 -23
- package/docs/_posts/components/Scripting/Script.md +43 -27
- package/docs/_posts/components/Shaders/ComposedShader.md +30 -17
- package/docs/_posts/components/Shaders/FloatVertexAttribute.md +18 -9
- package/docs/_posts/components/Shaders/Matrix3VertexAttribute.md +17 -8
- package/docs/_posts/components/Shaders/Matrix4VertexAttribute.md +17 -8
- package/docs/_posts/components/Shaders/PackagedShader.md +52 -46
- package/docs/_posts/components/Shaders/ProgramShader.md +35 -15
- package/docs/_posts/components/Shaders/ShaderPart.md +27 -18
- package/docs/_posts/components/Shaders/ShaderProgram.md +28 -17
- package/docs/_posts/components/Shape/AcousticProperties.md +38 -10
- package/docs/_posts/components/Shape/Appearance.md +30 -23
- package/docs/_posts/components/Shape/FillProperties.md +19 -12
- package/docs/_posts/components/Shape/LineProperties.md +18 -10
- package/docs/_posts/components/Shape/Material.md +64 -38
- package/docs/_posts/components/Shape/PhysicalMaterial.md +49 -25
- package/docs/_posts/components/Shape/PointProperties.md +23 -24
- package/docs/_posts/components/Shape/Shape.md +38 -20
- package/docs/_posts/components/Shape/TwoSidedMaterial.md +35 -36
- package/docs/_posts/components/Shape/UnlitMaterial.md +29 -17
- package/docs/_posts/components/Sound/Analyser.md +151 -18
- package/docs/_posts/components/Sound/AudioClip.md +82 -32
- package/docs/_posts/components/Sound/AudioDestination.md +85 -9
- package/docs/_posts/components/Sound/BiquadFilter.md +160 -17
- package/docs/_posts/components/Sound/BufferAudioSource.md +184 -28
- package/docs/_posts/components/Sound/ChannelMerger.md +70 -8
- package/docs/_posts/components/Sound/ChannelSelector.md +73 -9
- package/docs/_posts/components/Sound/ChannelSplitter.md +77 -9
- package/docs/_posts/components/Sound/Convolver.md +138 -14
- package/docs/_posts/components/Sound/Delay.md +134 -15
- package/docs/_posts/components/Sound/DynamicsCompressor.md +146 -19
- package/docs/_posts/components/Sound/Gain.md +128 -13
- package/docs/_posts/components/Sound/ListenerPointSource.md +121 -12
- package/docs/_posts/components/Sound/MicrophoneSource.md +101 -10
- package/docs/_posts/components/Sound/OscillatorSource.md +107 -12
- package/docs/_posts/components/Sound/PeriodicWave.md +48 -7
- package/docs/_posts/components/Sound/Sound.md +61 -22
- package/docs/_posts/components/Sound/SpatialSound.md +136 -17
- package/docs/_posts/components/Sound/StreamAudioDestination.md +89 -9
- package/docs/_posts/components/Sound/StreamAudioSource.md +101 -10
- package/docs/_posts/components/Sound/WaveShaper.md +138 -15
- package/docs/_posts/components/Text/FontStyle.md +75 -49
- package/docs/_posts/components/Text/Text.md +48 -26
- package/docs/_posts/components/TextureProjector/TextureProjector.md +63 -12
- package/docs/_posts/components/TextureProjector/TextureProjectorParallel.md +64 -12
- package/docs/_posts/components/Texturing/ImageTexture.md +28 -20
- package/docs/_posts/components/Texturing/MovieTexture.md +87 -40
- package/docs/_posts/components/Texturing/MultiTexture.md +47 -19
- package/docs/_posts/components/Texturing/MultiTextureCoordinate.md +27 -10
- package/docs/_posts/components/Texturing/MultiTextureTransform.md +32 -10
- package/docs/_posts/components/Texturing/PixelTexture.md +34 -14
- package/docs/_posts/components/Texturing/TextureCoordinate.md +20 -10
- package/docs/_posts/components/Texturing/TextureCoordinateGenerator.md +22 -12
- package/docs/_posts/components/Texturing/TextureProperties.md +45 -20
- package/docs/_posts/components/Texturing/TextureTransform.md +17 -8
- package/docs/_posts/components/Texturing3D/ComposedTexture3D.md +21 -13
- package/docs/_posts/components/Texturing3D/ImageTexture3D.md +32 -23
- package/docs/_posts/components/Texturing3D/ImageTextureAtlas.md +22 -16
- package/docs/_posts/components/Texturing3D/PixelTexture3D.md +28 -16
- package/docs/_posts/components/Texturing3D/TextureCoordinate3D.md +22 -10
- package/docs/_posts/components/Texturing3D/TextureCoordinate4D.md +21 -9
- package/docs/_posts/components/Texturing3D/TextureTransform3D.md +17 -8
- package/docs/_posts/components/Texturing3D/TextureTransformMatrix3D.md +20 -10
- package/docs/_posts/components/Time/TimeSensor.md +70 -27
- package/docs/_posts/components/VolumeRendering/BlendedVolumeStyle.md +41 -20
- package/docs/_posts/components/VolumeRendering/BoundaryEnhancementVolumeStyle.md +20 -10
- package/docs/_posts/components/VolumeRendering/CartoonVolumeStyle.md +24 -21
- package/docs/_posts/components/VolumeRendering/ComposedVolumeStyle.md +18 -10
- package/docs/_posts/components/VolumeRendering/EdgeEnhancementVolumeStyle.md +22 -14
- package/docs/_posts/components/VolumeRendering/IsoSurfaceVolumeData.md +59 -37
- package/docs/_posts/components/VolumeRendering/OpacityMapVolumeStyle.md +16 -8
- package/docs/_posts/components/VolumeRendering/ProjectionVolumeStyle.md +28 -6
- package/docs/_posts/components/VolumeRendering/SegmentedVolumeData.md +63 -30
- package/docs/_posts/components/VolumeRendering/ShadedVolumeStyle.md +27 -19
- package/docs/_posts/components/VolumeRendering/SilhouetteEnhancementVolumeStyle.md +21 -13
- package/docs/_posts/components/VolumeRendering/ToneMappedVolumeStyle.md +25 -16
- package/docs/_posts/components/VolumeRendering/VolumeData.md +43 -26
- package/docs/_posts/components/X_ITE/BlendMode.md +16 -9
- package/docs/_posts/getting-started.md +1 -0
- package/docs/_posts/laboratory/x3d-file-converter.md +1 -1
- package/docs/_tabs/playground.html +3 -1
- package/docs/assets/css/style.scss +4 -4
- package/package.json +1 -1
- package/src/x_ite/Base/X3DBaseNode.js +1 -1
- package/src/x_ite/Base/X3DInfoArray.js +2 -2
- package/src/x_ite/Browser/Core/X3DCoreContext.js +10 -3
- package/src/x_ite/Browser/DOMIntegration.js +13 -8
- package/src/x_ite/Browser/VERSION.js +1 -1
- package/src/x_ite/Components/Annotation/GroupAnnotation.js +1 -1
- package/src/x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture.js +3 -3
- package/src/x_ite/Components/DIS/DISEntityManager.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoLocation.js +1 -1
- package/src/x_ite/Components/Geospatial/GeoViewpoint.js +18 -6
- package/src/x_ite/Components/Grouping/Switch.js +1 -1
- package/src/x_ite/Components/HAnim/HAnimMotion.js +1 -1
- package/src/x_ite/Components/Layering/X3DLayerNode.js +1 -1
- package/src/x_ite/Components/Lighting/DirectionalLight.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsPatchSurface.js +1 -1
- package/src/x_ite/Components/NURBS/NurbsTrimmedSurface.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/Viewpoint.js +1 -1
- package/src/x_ite/Components/Navigation/X3DViewpointNode.js +1 -1
- package/src/x_ite/Components/Networking/LoadSensor.js +1 -1
- package/src/x_ite/Components/ParticleSystems/ConeEmitter.js +9 -9
- package/src/x_ite/Components/ParticleSystems/ExplosionEmitter.js +7 -7
- package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +1 -1
- package/src/x_ite/Components/ParticleSystems/PointEmitter.js +8 -8
- package/src/x_ite/Components/ParticleSystems/PolylineEmitter.js +9 -9
- package/src/x_ite/Components/ParticleSystems/SurfaceEmitter.js +7 -7
- package/src/x_ite/Components/ParticleSystems/VolumeEmitter.js +12 -10
- package/src/x_ite/Components/RigidBodyPhysics/Contact.js +1 -1
- package/src/x_ite/Components/RigidBodyPhysics/MotorJoint.js +6 -6
- package/src/x_ite/Components/RigidBodyPhysics/SingleAxisHingeJoint.js +0 -1
- package/src/x_ite/Components/RigidBodyPhysics/UniversalJoint.js +4 -4
- package/src/x_ite/Components/Shape/AcousticProperties.js +1 -1
- package/src/x_ite/Components/Shape/Appearance.js +1 -1
- package/src/x_ite/Components/Shape/FillProperties.js +1 -1
- package/src/x_ite/Components/Shape/Material.js +1 -1
- package/src/x_ite/Components/Shape/PhysicalMaterial.js +1 -1
- package/src/x_ite/Components/Shape/TwoSidedMaterial.js +1 -1
- package/src/x_ite/Components/Sound/Analyser.js +2 -2
- package/src/x_ite/Components/Sound/AudioDestination.js +2 -2
- package/src/x_ite/Components/Sound/BiquadFilter.js +3 -3
- package/src/x_ite/Components/Sound/BufferAudioSource.js +2 -2
- package/src/x_ite/Components/Sound/ChannelMerger.js +2 -2
- package/src/x_ite/Components/Sound/ChannelSelector.js +2 -2
- package/src/x_ite/Components/Sound/ChannelSplitter.js +2 -2
- package/src/x_ite/Components/Sound/Convolver.js +2 -2
- package/src/x_ite/Components/Sound/Delay.js +2 -2
- package/src/x_ite/Components/Sound/DynamicsCompressor.js +2 -2
- package/src/x_ite/Components/Sound/Gain.js +2 -2
- package/src/x_ite/Components/Sound/PeriodicWave.js +1 -1
- package/src/x_ite/Components/Sound/StreamAudioDestination.js +2 -2
- package/src/x_ite/Components/Sound/WaveShaper.js +3 -3
- package/src/x_ite/Components/TextureProjector/TextureProjector.js +4 -4
- package/src/x_ite/Components/TextureProjector/TextureProjectorParallel.js +5 -5
- package/src/x_ite/Components/Texturing/PixelTexture.js +1 -1
- package/src/x_ite/Components/Texturing/TextureProperties.js +1 -1
- package/src/x_ite/Components/VolumeRendering/IsoSurfaceVolumeData.js +1 -1
- package/src/x_ite/Components/VolumeRendering/SegmentedVolumeData.js +1 -1
- package/src/x_ite/Components/VolumeRendering/VolumeData.js +1 -1
- package/src/x_ite/Configuration/SupportedComponents.js +2 -2
- package/src/x_ite/Fields/ArrayFields.js +2 -2
- package/src/x_ite/Fields/SFColor.js +1 -1
- package/src/x_ite/Fields/SFMatrixPrototypeTemplate.js +1 -1
- package/src/x_ite/Fields/SFRotation.js +3 -3
- package/src/x_ite/Fields/SFVecPrototypeTemplate.js +1 -1
- package/src/x_ite/Parser/GoldenGate.js +16 -5
- package/src/x_ite/Parser/PLYAParser.js +615 -0
- package/src/x_ite/Parser/PLYBParser.js +222 -0
- package/src/x_ite/Parser/STLAParser.js +0 -1
- /package/build/{bin → docs}/components.js +0 -0
package/dist/x_ite.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* X_ITE v8.
|
|
1
|
+
/* X_ITE v8.9.0 */(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
2
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
3
|
module.exports = factory();
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ({
|
|
13
13
|
|
|
14
|
-
/***/
|
|
14
|
+
/***/ 63:
|
|
15
15
|
/***/ (function(module, exports, __webpack_require__) {
|
|
16
16
|
|
|
17
17
|
"use strict";
|
|
18
|
-
/* provided dependency */ var jQuery = __webpack_require__(
|
|
18
|
+
/* provided dependency */ var jQuery = __webpack_require__(109);
|
|
19
19
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;
|
|
20
20
|
|
|
21
21
|
/**
|
|
@@ -387,10 +387,10 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;
|
|
|
387
387
|
|
|
388
388
|
/***/ }),
|
|
389
389
|
|
|
390
|
-
/***/
|
|
390
|
+
/***/ 418:
|
|
391
391
|
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
|
392
392
|
|
|
393
|
-
/* provided dependency */ var jQuery = __webpack_require__(
|
|
393
|
+
/* provided dependency */ var jQuery = __webpack_require__(109);
|
|
394
394
|
/**
|
|
395
395
|
* @preserve jquery.fullscreen 1.1.5
|
|
396
396
|
* https://github.com/code-lts/jquery-fullscreen-plugin
|
|
@@ -586,7 +586,7 @@ installFullScreenHandlers();
|
|
|
586
586
|
|
|
587
587
|
/***/ }),
|
|
588
588
|
|
|
589
|
-
/***/
|
|
589
|
+
/***/ 90:
|
|
590
590
|
/***/ ((module, exports, __webpack_require__) => {
|
|
591
591
|
|
|
592
592
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -600,7 +600,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
600
600
|
(function (factory) {
|
|
601
601
|
if ( true ) {
|
|
602
602
|
// AMD. Register as an anonymous module.
|
|
603
|
-
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(
|
|
603
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(109)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
|
604
604
|
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
|
605
605
|
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
|
606
606
|
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
@@ -811,7 +811,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
|
811
811
|
|
|
812
812
|
/***/ }),
|
|
813
813
|
|
|
814
|
-
/***/
|
|
814
|
+
/***/ 109:
|
|
815
815
|
/***/ (function(module, exports) {
|
|
816
816
|
|
|
817
817
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
@@ -11523,7 +11523,7 @@ return jQuery;
|
|
|
11523
11523
|
|
|
11524
11524
|
/***/ }),
|
|
11525
11525
|
|
|
11526
|
-
/***/
|
|
11526
|
+
/***/ 207:
|
|
11527
11527
|
/***/ ((module) => {
|
|
11528
11528
|
|
|
11529
11529
|
/**
|
|
@@ -16302,7 +16302,7 @@ if (true) {
|
|
|
16302
16302
|
|
|
16303
16303
|
/***/ }),
|
|
16304
16304
|
|
|
16305
|
-
/***/
|
|
16305
|
+
/***/ 166:
|
|
16306
16306
|
/***/ (function(__unused_webpack_module, exports) {
|
|
16307
16307
|
|
|
16308
16308
|
|
|
@@ -19547,7 +19547,7 @@ if (true) {
|
|
|
19547
19547
|
|
|
19548
19548
|
/***/ }),
|
|
19549
19549
|
|
|
19550
|
-
/***/
|
|
19550
|
+
/***/ 842:
|
|
19551
19551
|
/***/ (function(module, exports) {
|
|
19552
19552
|
|
|
19553
19553
|
var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*
|
|
@@ -22766,9 +22766,9 @@ Object .assign (Object .setPrototypeOf (X3DInfoArray .prototype, Base_X3DChildOb
|
|
|
22766
22766
|
|
|
22767
22767
|
this .addEvent ();
|
|
22768
22768
|
},
|
|
22769
|
-
alias (alias,
|
|
22769
|
+
alias (alias, value)
|
|
22770
22770
|
{
|
|
22771
|
-
this [_index] .set (alias,
|
|
22771
|
+
this [_index] .set (alias, value);
|
|
22772
22772
|
|
|
22773
22773
|
this .addEvent ();
|
|
22774
22774
|
},
|
|
@@ -24047,7 +24047,7 @@ Object .assign (Object .setPrototypeOf (SFColor .prototype, Base_X3DField .proto
|
|
|
24047
24047
|
for (let i = 0; i < last; ++ i)
|
|
24048
24048
|
{
|
|
24049
24049
|
generator .string += generator .FloatFormat (value [i]);
|
|
24050
|
-
generator .string += generator .
|
|
24050
|
+
generator .string += generator .Space ();
|
|
24051
24051
|
}
|
|
24052
24052
|
|
|
24053
24053
|
generator .string += generator .FloatFormat (value [last]);
|
|
@@ -25031,7 +25031,7 @@ function SFMatrixPrototypeTemplate (Constructor, TypeName, Matrix, SFVec, double
|
|
|
25031
25031
|
for (let i = 0; i < last; ++ i)
|
|
25032
25032
|
{
|
|
25033
25033
|
generator .string += generator [_formatter] (value [i]);
|
|
25034
|
-
generator .string += generator .
|
|
25034
|
+
generator .string += generator .Space ();
|
|
25035
25035
|
}
|
|
25036
25036
|
|
|
25037
25037
|
generator .string += generator [_formatter] (value [last]);
|
|
@@ -25236,7 +25236,7 @@ function SFVecPrototypeTemplate (Constructor, TypeName, Vector, double)
|
|
|
25236
25236
|
for (let i = 0; i < last; ++ i)
|
|
25237
25237
|
{
|
|
25238
25238
|
generator .string += generator [_formatter] (generator .ToUnit (category, value [i]));
|
|
25239
|
-
generator .string += generator .
|
|
25239
|
+
generator .string += generator .Space ();
|
|
25240
25240
|
}
|
|
25241
25241
|
|
|
25242
25242
|
generator .string += generator [_formatter] (generator .ToUnit (category, value [last]));
|
|
@@ -30305,11 +30305,11 @@ Object .assign (Object .setPrototypeOf (SFRotation .prototype, Base_X3DField .pr
|
|
|
30305
30305
|
const { x, y, z, angle } = this .getValue ();
|
|
30306
30306
|
|
|
30307
30307
|
generator .string += generator .DoubleFormat (x);
|
|
30308
|
-
generator .string += generator .
|
|
30308
|
+
generator .string += generator .Space ();
|
|
30309
30309
|
generator .string += generator .DoubleFormat (y);
|
|
30310
|
-
generator .string += generator .
|
|
30310
|
+
generator .string += generator .Space ();
|
|
30311
30311
|
generator .string += generator .DoubleFormat (z);
|
|
30312
|
-
generator .string += generator .
|
|
30312
|
+
generator .string += generator .Space ();
|
|
30313
30313
|
generator .string += generator .DoubleFormat (generator .ToUnit ("angle", angle));
|
|
30314
30314
|
},
|
|
30315
30315
|
toVRMLStream (generator)
|
|
@@ -32661,7 +32661,7 @@ Object .assign (Object .setPrototypeOf (MFNode .prototype, Base_X3DObjectArrayFi
|
|
|
32661
32661
|
{
|
|
32662
32662
|
generator .string += generator .Indent ();
|
|
32663
32663
|
array [i] .toStream (generator);
|
|
32664
|
-
generator .string += generator .
|
|
32664
|
+
generator .string += generator .Break ();
|
|
32665
32665
|
}
|
|
32666
32666
|
|
|
32667
32667
|
generator .DecIndent ();
|
|
@@ -32709,7 +32709,7 @@ Object .assign (Object .setPrototypeOf (MFNode .prototype, Base_X3DObjectArrayFi
|
|
|
32709
32709
|
{
|
|
32710
32710
|
generator .string += generator .Indent ();
|
|
32711
32711
|
element .toVRMLStream (generator);
|
|
32712
|
-
generator .string += generator .
|
|
32712
|
+
generator .string += generator .Break ();
|
|
32713
32713
|
}
|
|
32714
32714
|
|
|
32715
32715
|
generator .DecIndent ();
|
|
@@ -33901,7 +33901,7 @@ Object .assign (Object .setPrototypeOf (X3DBaseNode .prototype, Base_X3DChildObj
|
|
|
33901
33901
|
},
|
|
33902
33902
|
addAlias (alias, field)
|
|
33903
33903
|
{
|
|
33904
|
-
this [_predefinedFields] .alias (alias, field
|
|
33904
|
+
this [_predefinedFields] .alias (alias, field);
|
|
33905
33905
|
|
|
33906
33906
|
if (field .isInitializable ())
|
|
33907
33907
|
Parser_HTMLSupport .addFieldName (alias);
|
|
@@ -34234,7 +34234,7 @@ x_ite_Namespace .set ("x_ite/Base/X3DBaseNode", X3DBaseNode_default_);
|
|
|
34234
34234
|
*
|
|
34235
34235
|
******************************************************************************/
|
|
34236
34236
|
|
|
34237
|
-
const VERSION_default_ = "8.
|
|
34237
|
+
const VERSION_default_ = "8.9.0";
|
|
34238
34238
|
;
|
|
34239
34239
|
|
|
34240
34240
|
x_ite_Namespace .set ("x_ite/Browser/VERSION", VERSION_default_);
|
|
@@ -38519,7 +38519,7 @@ const X3DUrlObject_default_ = X3DUrlObject;
|
|
|
38519
38519
|
x_ite_Namespace .set ("x_ite/Components/Networking/X3DUrlObject", X3DUrlObject_default_);
|
|
38520
38520
|
/* harmony default export */ const Networking_X3DUrlObject = (X3DUrlObject_default_);
|
|
38521
38521
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/X3DParser.js
|
|
38522
|
-
/* provided dependency */ var $ = __webpack_require__(
|
|
38522
|
+
/* provided dependency */ var $ = __webpack_require__(109);
|
|
38523
38523
|
/*******************************************************************************
|
|
38524
38524
|
*
|
|
38525
38525
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -38767,7 +38767,7 @@ const Expressions_default_ = Expressions;
|
|
|
38767
38767
|
x_ite_Namespace .set ("x_ite/Parser/Expressions", Expressions_default_);
|
|
38768
38768
|
/* harmony default export */ const Parser_Expressions = (Expressions_default_);
|
|
38769
38769
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/VRMLParser.js
|
|
38770
|
-
/* provided dependency */ var VRMLParser_$ = __webpack_require__(
|
|
38770
|
+
/* provided dependency */ var VRMLParser_$ = __webpack_require__(109);
|
|
38771
38771
|
/*******************************************************************************
|
|
38772
38772
|
*
|
|
38773
38773
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -41319,7 +41319,7 @@ const VRMLParser_default_ = VRMLParser;
|
|
|
41319
41319
|
x_ite_Namespace .set ("x_ite/Parser/VRMLParser", VRMLParser_default_);
|
|
41320
41320
|
/* harmony default export */ const Parser_VRMLParser = (VRMLParser_default_);
|
|
41321
41321
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/XMLParser.js
|
|
41322
|
-
/* provided dependency */ var XMLParser_$ = __webpack_require__(
|
|
41322
|
+
/* provided dependency */ var XMLParser_$ = __webpack_require__(109);
|
|
41323
41323
|
/*******************************************************************************
|
|
41324
41324
|
*
|
|
41325
41325
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -43291,7 +43291,7 @@ const URLs_default_ = URLs;
|
|
|
43291
43291
|
x_ite_Namespace .set ("x_ite/Browser/Networking/URLs", URLs_default_);
|
|
43292
43292
|
/* harmony default export */ const Networking_URLs = (URLs_default_);
|
|
43293
43293
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/GLTF2Parser.js
|
|
43294
|
-
/* provided dependency */ var GLTF2Parser_$ = __webpack_require__(
|
|
43294
|
+
/* provided dependency */ var GLTF2Parser_$ = __webpack_require__(109);
|
|
43295
43295
|
/*******************************************************************************
|
|
43296
43296
|
*
|
|
43297
43297
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -45756,7 +45756,7 @@ const GLTF2Parser_default_ = GLTF2Parser;
|
|
|
45756
45756
|
x_ite_Namespace .set ("x_ite/Parser/GLTF2Parser", GLTF2Parser_default_);
|
|
45757
45757
|
/* harmony default export */ const Parser_GLTF2Parser = (GLTF2Parser_default_);
|
|
45758
45758
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/GLB2Parser.js
|
|
45759
|
-
/* provided dependency */ var GLB2Parser_$ = __webpack_require__(
|
|
45759
|
+
/* provided dependency */ var GLB2Parser_$ = __webpack_require__(109);
|
|
45760
45760
|
/*******************************************************************************
|
|
45761
45761
|
*
|
|
45762
45762
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -45908,7 +45908,7 @@ const GLB2Parser_default_ = GLB2Parser;
|
|
|
45908
45908
|
x_ite_Namespace .set ("x_ite/Parser/GLB2Parser", GLB2Parser_default_);
|
|
45909
45909
|
/* harmony default export */ const Parser_GLB2Parser = (GLB2Parser_default_);
|
|
45910
45910
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/OBJParser.js
|
|
45911
|
-
/* provided dependency */ var OBJParser_$ = __webpack_require__(
|
|
45911
|
+
/* provided dependency */ var OBJParser_$ = __webpack_require__(109);
|
|
45912
45912
|
/*******************************************************************************
|
|
45913
45913
|
*
|
|
45914
45914
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -47056,7 +47056,6 @@ x_ite_Namespace .set ("x_ite/Parser/OBJParser", OBJParser_default_);
|
|
|
47056
47056
|
|
|
47057
47057
|
|
|
47058
47058
|
|
|
47059
|
-
|
|
47060
47059
|
// http://paulbourke.net/dataformats/stl/
|
|
47061
47060
|
// https://people.sc.fsu.edu/~jburkardt/data/obj/obj.html
|
|
47062
47061
|
|
|
@@ -47547,6 +47546,853 @@ const STLBParser_default_ = STLBParser;
|
|
|
47547
47546
|
|
|
47548
47547
|
x_ite_Namespace .set ("x_ite/Parser/STLBParser", STLBParser_default_);
|
|
47549
47548
|
/* harmony default export */ const Parser_STLBParser = (STLBParser_default_);
|
|
47549
|
+
;// CONCATENATED MODULE: ./src/x_ite/Parser/PLYAParser.js
|
|
47550
|
+
/*******************************************************************************
|
|
47551
|
+
*
|
|
47552
|
+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
47553
|
+
*
|
|
47554
|
+
* Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
|
|
47555
|
+
*
|
|
47556
|
+
* All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
|
|
47557
|
+
*
|
|
47558
|
+
* The copyright notice above does not evidence any actual of intended
|
|
47559
|
+
* publication of such source code, and is an unpublished work by create3000.
|
|
47560
|
+
* This material contains CONFIDENTIAL INFORMATION that is the property of
|
|
47561
|
+
* create3000.
|
|
47562
|
+
*
|
|
47563
|
+
* No permission is granted to copy, distribute, or create derivative works from
|
|
47564
|
+
* the contents of this software, in whole or in part, without the prior written
|
|
47565
|
+
* permission of create3000.
|
|
47566
|
+
*
|
|
47567
|
+
* NON-MILITARY USE ONLY
|
|
47568
|
+
*
|
|
47569
|
+
* All create3000 software are effectively free software with a non-military use
|
|
47570
|
+
* restriction. It is free. Well commented source is provided. You may reuse the
|
|
47571
|
+
* source in any way you please with the exception anything that uses it must be
|
|
47572
|
+
* marked to indicate is contains 'non-military use only' components.
|
|
47573
|
+
*
|
|
47574
|
+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
47575
|
+
*
|
|
47576
|
+
* Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
|
|
47577
|
+
*
|
|
47578
|
+
* This file is part of the X_ITE Project.
|
|
47579
|
+
*
|
|
47580
|
+
* X_ITE is free software: you can redistribute it and/or modify it under the
|
|
47581
|
+
* terms of the GNU General Public License version 3 only, as published by the
|
|
47582
|
+
* Free Software Foundation.
|
|
47583
|
+
*
|
|
47584
|
+
* X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
47585
|
+
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
47586
|
+
* A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
|
|
47587
|
+
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
47588
|
+
*
|
|
47589
|
+
* You should have received a copy of the GNU General Public License version 3
|
|
47590
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
47591
|
+
* copy of the GPLv3 License.
|
|
47592
|
+
*
|
|
47593
|
+
* For Silvio, Joy and Adi.
|
|
47594
|
+
*
|
|
47595
|
+
******************************************************************************/
|
|
47596
|
+
|
|
47597
|
+
|
|
47598
|
+
|
|
47599
|
+
|
|
47600
|
+
/*
|
|
47601
|
+
* Grammar
|
|
47602
|
+
*/
|
|
47603
|
+
|
|
47604
|
+
// Lexical elements
|
|
47605
|
+
const PLYAParser_Grammar = Parser_Expressions ({
|
|
47606
|
+
// General
|
|
47607
|
+
whitespaces: /[\x20\n\t\r]+/gy,
|
|
47608
|
+
whitespacesNoLineTerminator: /[\x20\t]+/gy,
|
|
47609
|
+
untilEndOfLine: /([^\r\n]+)/gy,
|
|
47610
|
+
line: /.*?\r?\n/gy,
|
|
47611
|
+
|
|
47612
|
+
// Keywords
|
|
47613
|
+
ply: /ply/gy,
|
|
47614
|
+
format: /format ascii 1.0/gy,
|
|
47615
|
+
comment: /\bcomment\b/gy,
|
|
47616
|
+
element: /\belement\b/gy,
|
|
47617
|
+
elementName: /\b(\S+)\b/gy,
|
|
47618
|
+
property: /\bproperty\b/gy,
|
|
47619
|
+
propertyList: /\blist\b/gy,
|
|
47620
|
+
propertyType: /\b(char|uchar|short|ushort|int|uint|float|double|int8|uint8|int16|uint16|int32|uint32|float32|float64)\b/gy,
|
|
47621
|
+
propertyName: /\b(\S+)\b/gy,
|
|
47622
|
+
endHeader: /\bend_header\b/gy,
|
|
47623
|
+
|
|
47624
|
+
double: /([+-]?(?:(?:(?:\d*\.\d+)|(?:\d+(?:\.)?))(?:[eE][+-]?\d+)?))/gy,
|
|
47625
|
+
int32: /((?:0[xX][\da-fA-F]+)|(?:[+-]?\d+))/gy,
|
|
47626
|
+
});
|
|
47627
|
+
|
|
47628
|
+
/*
|
|
47629
|
+
* Parser
|
|
47630
|
+
*/
|
|
47631
|
+
|
|
47632
|
+
function PLYAParser (scene)
|
|
47633
|
+
{
|
|
47634
|
+
Parser_X3DParser .call (this, scene);
|
|
47635
|
+
|
|
47636
|
+
this .comments = [ ];
|
|
47637
|
+
this .attrib = [ ];
|
|
47638
|
+
|
|
47639
|
+
this .typeMapping = new Map ([
|
|
47640
|
+
["char", this .int32],
|
|
47641
|
+
["uchar", this .int32],
|
|
47642
|
+
["short", this .int32],
|
|
47643
|
+
["ushort", this .int32],
|
|
47644
|
+
["int", this .int32],
|
|
47645
|
+
["uint", this .int32],
|
|
47646
|
+
["float", this .double],
|
|
47647
|
+
["double", this .double],
|
|
47648
|
+
["int8", this .int32],
|
|
47649
|
+
["uint8", this .int32],
|
|
47650
|
+
["int16", this .int32],
|
|
47651
|
+
["uint16", this .int32],
|
|
47652
|
+
["int32", this .int32],
|
|
47653
|
+
["uint32", this .int32],
|
|
47654
|
+
["float32", this .double],
|
|
47655
|
+
["float64", this .double],
|
|
47656
|
+
]);
|
|
47657
|
+
}
|
|
47658
|
+
|
|
47659
|
+
Object .assign (Object .setPrototypeOf (PLYAParser .prototype, Parser_X3DParser .prototype),
|
|
47660
|
+
{
|
|
47661
|
+
getEncoding ()
|
|
47662
|
+
{
|
|
47663
|
+
return "STRING";
|
|
47664
|
+
},
|
|
47665
|
+
setInput (input)
|
|
47666
|
+
{
|
|
47667
|
+
this .input = input;
|
|
47668
|
+
},
|
|
47669
|
+
isValid ()
|
|
47670
|
+
{
|
|
47671
|
+
return this .input .match (/^ply\r?\nformat ascii 1.0/);
|
|
47672
|
+
},
|
|
47673
|
+
parseIntoScene (resolve, reject)
|
|
47674
|
+
{
|
|
47675
|
+
this .ply ()
|
|
47676
|
+
.then (resolve)
|
|
47677
|
+
.catch (reject);
|
|
47678
|
+
},
|
|
47679
|
+
ply: async function ()
|
|
47680
|
+
{
|
|
47681
|
+
// Set profile and components.
|
|
47682
|
+
|
|
47683
|
+
const
|
|
47684
|
+
browser = this .getBrowser (),
|
|
47685
|
+
scene = this .getScene ();
|
|
47686
|
+
|
|
47687
|
+
scene .setEncoding ("PLY");
|
|
47688
|
+
scene .setProfile (browser .getProfile ("Interchange"));
|
|
47689
|
+
|
|
47690
|
+
await this .loadComponents ();
|
|
47691
|
+
await this .processElements (this .header ([ ]))
|
|
47692
|
+
|
|
47693
|
+
// Create nodes.
|
|
47694
|
+
|
|
47695
|
+
return this .getScene ();
|
|
47696
|
+
},
|
|
47697
|
+
whitespacesOrComments ()
|
|
47698
|
+
{
|
|
47699
|
+
while (this .whitespaces () || this .comment ())
|
|
47700
|
+
;
|
|
47701
|
+
},
|
|
47702
|
+
whitespaces ()
|
|
47703
|
+
{
|
|
47704
|
+
return PLYAParser_Grammar .whitespaces .parse (this);
|
|
47705
|
+
},
|
|
47706
|
+
whitespacesNoLineTerminator ()
|
|
47707
|
+
{
|
|
47708
|
+
PLYAParser_Grammar .whitespacesNoLineTerminator .parse (this);
|
|
47709
|
+
},
|
|
47710
|
+
comment ()
|
|
47711
|
+
{
|
|
47712
|
+
if (PLYAParser_Grammar .comment .parse (this) && PLYAParser_Grammar .untilEndOfLine .parse (this))
|
|
47713
|
+
{
|
|
47714
|
+
this .comments .push (this .result [1] .trim ());
|
|
47715
|
+
return true;
|
|
47716
|
+
}
|
|
47717
|
+
|
|
47718
|
+
return false;
|
|
47719
|
+
},
|
|
47720
|
+
double ()
|
|
47721
|
+
{
|
|
47722
|
+
this .whitespacesNoLineTerminator ();
|
|
47723
|
+
|
|
47724
|
+
if (PLYAParser_Grammar .double .parse (this))
|
|
47725
|
+
{
|
|
47726
|
+
this .value = parseFloat (this .result [1]);
|
|
47727
|
+
|
|
47728
|
+
return true;
|
|
47729
|
+
}
|
|
47730
|
+
|
|
47731
|
+
return false;
|
|
47732
|
+
},
|
|
47733
|
+
int32 ()
|
|
47734
|
+
{
|
|
47735
|
+
this .whitespacesNoLineTerminator ();
|
|
47736
|
+
|
|
47737
|
+
if (PLYAParser_Grammar .int32 .parse (this))
|
|
47738
|
+
{
|
|
47739
|
+
this .value = parseInt (this .result [1]);
|
|
47740
|
+
|
|
47741
|
+
return true;
|
|
47742
|
+
}
|
|
47743
|
+
|
|
47744
|
+
return false;
|
|
47745
|
+
},
|
|
47746
|
+
convertColor (value, type)
|
|
47747
|
+
{
|
|
47748
|
+
switch (type)
|
|
47749
|
+
{
|
|
47750
|
+
case "uchar":
|
|
47751
|
+
case "uint8":
|
|
47752
|
+
return value / 0xff;
|
|
47753
|
+
case "ushort":
|
|
47754
|
+
case "uint16":
|
|
47755
|
+
return value / 0xfffff;
|
|
47756
|
+
case "uint":
|
|
47757
|
+
case "uint32":
|
|
47758
|
+
return value / 0xffffffff;
|
|
47759
|
+
case "float":
|
|
47760
|
+
case "float32":
|
|
47761
|
+
case "double":
|
|
47762
|
+
case "float64":
|
|
47763
|
+
return value;
|
|
47764
|
+
}
|
|
47765
|
+
},
|
|
47766
|
+
header (elements)
|
|
47767
|
+
{
|
|
47768
|
+
PLYAParser_Grammar .ply .parse (this);
|
|
47769
|
+
PLYAParser_Grammar .whitespaces .parse (this);
|
|
47770
|
+
PLYAParser_Grammar .format .parse (this);
|
|
47771
|
+
|
|
47772
|
+
this .headings (elements);
|
|
47773
|
+
|
|
47774
|
+
const
|
|
47775
|
+
scene = this .getScene (),
|
|
47776
|
+
worldInfo = scene .createNode ("WorldInfo");
|
|
47777
|
+
|
|
47778
|
+
worldInfo .title = new URL (scene .worldURL) .pathname .split ('/') .at (-1);
|
|
47779
|
+
worldInfo .info = this .comments;
|
|
47780
|
+
|
|
47781
|
+
scene .rootNodes .push (worldInfo);
|
|
47782
|
+
|
|
47783
|
+
return elements;
|
|
47784
|
+
},
|
|
47785
|
+
headings (elements)
|
|
47786
|
+
{
|
|
47787
|
+
while (this .head (elements))
|
|
47788
|
+
;
|
|
47789
|
+
},
|
|
47790
|
+
head (elements)
|
|
47791
|
+
{
|
|
47792
|
+
if (this .element (elements))
|
|
47793
|
+
return true;
|
|
47794
|
+
|
|
47795
|
+
if (PLYAParser_Grammar .endHeader .parse (this))
|
|
47796
|
+
return false;
|
|
47797
|
+
|
|
47798
|
+
if (PLYAParser_Grammar .untilEndOfLine .parse (this))
|
|
47799
|
+
return true;
|
|
47800
|
+
|
|
47801
|
+
return false;
|
|
47802
|
+
},
|
|
47803
|
+
element (elements)
|
|
47804
|
+
{
|
|
47805
|
+
this .whitespacesOrComments ();
|
|
47806
|
+
|
|
47807
|
+
if (PLYAParser_Grammar .element .parse (this))
|
|
47808
|
+
{
|
|
47809
|
+
this .whitespacesNoLineTerminator ();
|
|
47810
|
+
|
|
47811
|
+
if (PLYAParser_Grammar .elementName .parse (this))
|
|
47812
|
+
{
|
|
47813
|
+
const name = this .result [1];
|
|
47814
|
+
|
|
47815
|
+
if (this .int32 ())
|
|
47816
|
+
{
|
|
47817
|
+
const element =
|
|
47818
|
+
{
|
|
47819
|
+
name: name,
|
|
47820
|
+
count: this .value,
|
|
47821
|
+
properties: [ ],
|
|
47822
|
+
};
|
|
47823
|
+
|
|
47824
|
+
this .properties (element .properties);
|
|
47825
|
+
|
|
47826
|
+
elements .push (element);
|
|
47827
|
+
return true;
|
|
47828
|
+
}
|
|
47829
|
+
}
|
|
47830
|
+
}
|
|
47831
|
+
|
|
47832
|
+
return false;
|
|
47833
|
+
},
|
|
47834
|
+
properties (properties)
|
|
47835
|
+
{
|
|
47836
|
+
while (this .property (properties))
|
|
47837
|
+
;
|
|
47838
|
+
},
|
|
47839
|
+
property (properties)
|
|
47840
|
+
{
|
|
47841
|
+
this .whitespacesOrComments ();
|
|
47842
|
+
|
|
47843
|
+
if (PLYAParser_Grammar .property .parse (this))
|
|
47844
|
+
{
|
|
47845
|
+
this .whitespacesNoLineTerminator ();
|
|
47846
|
+
|
|
47847
|
+
if (PLYAParser_Grammar .propertyType .parse (this))
|
|
47848
|
+
{
|
|
47849
|
+
const
|
|
47850
|
+
type = this .result [1],
|
|
47851
|
+
value = this .typeMapping .get (type);
|
|
47852
|
+
|
|
47853
|
+
this .whitespacesNoLineTerminator ();
|
|
47854
|
+
|
|
47855
|
+
if (PLYAParser_Grammar .propertyName .parse (this))
|
|
47856
|
+
{
|
|
47857
|
+
const name = this .result [1];
|
|
47858
|
+
|
|
47859
|
+
properties .push ({ type, value, name });
|
|
47860
|
+
return true;
|
|
47861
|
+
}
|
|
47862
|
+
}
|
|
47863
|
+
|
|
47864
|
+
if (PLYAParser_Grammar .propertyList .parse (this))
|
|
47865
|
+
{
|
|
47866
|
+
this .whitespacesNoLineTerminator ();
|
|
47867
|
+
|
|
47868
|
+
if (PLYAParser_Grammar .propertyType .parse (this))
|
|
47869
|
+
{
|
|
47870
|
+
const count = this .typeMapping .get (this .result [1]);
|
|
47871
|
+
|
|
47872
|
+
this .whitespacesNoLineTerminator ();
|
|
47873
|
+
|
|
47874
|
+
if (PLYAParser_Grammar .propertyType .parse (this))
|
|
47875
|
+
{
|
|
47876
|
+
const
|
|
47877
|
+
type = this .result [1],
|
|
47878
|
+
value = this .typeMapping .get (type);
|
|
47879
|
+
|
|
47880
|
+
this .whitespacesNoLineTerminator ();
|
|
47881
|
+
|
|
47882
|
+
if (PLYAParser_Grammar .propertyName .parse (this))
|
|
47883
|
+
{
|
|
47884
|
+
const name = this .result [1];
|
|
47885
|
+
|
|
47886
|
+
properties .push ({ count, type, value, name });
|
|
47887
|
+
return true;
|
|
47888
|
+
}
|
|
47889
|
+
}
|
|
47890
|
+
}
|
|
47891
|
+
}
|
|
47892
|
+
}
|
|
47893
|
+
|
|
47894
|
+
return false;
|
|
47895
|
+
},
|
|
47896
|
+
async processElements (elements)
|
|
47897
|
+
{
|
|
47898
|
+
// console .log (elements)
|
|
47899
|
+
|
|
47900
|
+
for (const element of elements)
|
|
47901
|
+
await this .processElement (element);
|
|
47902
|
+
|
|
47903
|
+
if (!this .coord)
|
|
47904
|
+
return;
|
|
47905
|
+
|
|
47906
|
+
const
|
|
47907
|
+
scene = this .getScene (),
|
|
47908
|
+
shape = scene .createNode ("Shape"),
|
|
47909
|
+
appearance = scene .createNode ("Appearance"),
|
|
47910
|
+
material = scene .createNode (this .geometry ? "Material" : "UnlitMaterial"),
|
|
47911
|
+
geometry = this .geometry ?? scene .createNode ("PointSet");
|
|
47912
|
+
|
|
47913
|
+
appearance .material = material;
|
|
47914
|
+
|
|
47915
|
+
if (this .texCoord)
|
|
47916
|
+
{
|
|
47917
|
+
const textureTransform = scene .createNode ("TextureTransform");
|
|
47918
|
+
|
|
47919
|
+
textureTransform .translation .y = -1;
|
|
47920
|
+
textureTransform .scale .y = -1;
|
|
47921
|
+
|
|
47922
|
+
appearance .textureTransform = textureTransform;
|
|
47923
|
+
}
|
|
47924
|
+
|
|
47925
|
+
if (geometry .getNodeTypeName () !== "PointSet")
|
|
47926
|
+
{
|
|
47927
|
+
geometry .solid = false;
|
|
47928
|
+
geometry .texCoord = this .texCoord;
|
|
47929
|
+
}
|
|
47930
|
+
|
|
47931
|
+
geometry .attrib = this .attrib;
|
|
47932
|
+
geometry .color = this .color;
|
|
47933
|
+
geometry .normal = this .normal;
|
|
47934
|
+
geometry .coord = this .coord;
|
|
47935
|
+
|
|
47936
|
+
shape .appearance = appearance;
|
|
47937
|
+
shape .geometry = geometry;
|
|
47938
|
+
|
|
47939
|
+
scene .rootNodes .push (shape);
|
|
47940
|
+
},
|
|
47941
|
+
async processElement (element)
|
|
47942
|
+
{
|
|
47943
|
+
switch (element .name)
|
|
47944
|
+
{
|
|
47945
|
+
case "vertex":
|
|
47946
|
+
await this .parseVertices (element);
|
|
47947
|
+
break;
|
|
47948
|
+
case "face":
|
|
47949
|
+
this .parseFaces (element);
|
|
47950
|
+
break;
|
|
47951
|
+
case "multi_texture_vertex":
|
|
47952
|
+
this .parseMultiTextureVertices (element);
|
|
47953
|
+
break;
|
|
47954
|
+
case "multi_texture_face":
|
|
47955
|
+
this .parseMultiTextureFaces (element);
|
|
47956
|
+
break;
|
|
47957
|
+
default:
|
|
47958
|
+
this .parseUnknown (element);
|
|
47959
|
+
break;
|
|
47960
|
+
}
|
|
47961
|
+
},
|
|
47962
|
+
async parseVertices ({ count, properties })
|
|
47963
|
+
{
|
|
47964
|
+
const
|
|
47965
|
+
scene = this .getScene (),
|
|
47966
|
+
colors = [ ],
|
|
47967
|
+
texCoord = scene .createNode ("TextureCoordinate"),
|
|
47968
|
+
texCoords = [ ],
|
|
47969
|
+
normal = scene .createNode ("Normal"),
|
|
47970
|
+
normals = [ ],
|
|
47971
|
+
coord = scene .createNode ("Coordinate"),
|
|
47972
|
+
points = [ ],
|
|
47973
|
+
attributes = new Map ();
|
|
47974
|
+
|
|
47975
|
+
for (const { name } of properties)
|
|
47976
|
+
{
|
|
47977
|
+
if (name .match (/^(?:red|green|blue|alpha|r|g|b|a|s|t|u|v|nx|ny|nz|x|y|z)$/))
|
|
47978
|
+
continue;
|
|
47979
|
+
|
|
47980
|
+
attributes .set (name, [ ]);
|
|
47981
|
+
}
|
|
47982
|
+
|
|
47983
|
+
// console .time ("vertices")
|
|
47984
|
+
|
|
47985
|
+
for (let i = 0; i < count; ++ i)
|
|
47986
|
+
{
|
|
47987
|
+
this .whitespaces ();
|
|
47988
|
+
|
|
47989
|
+
for (const { value, name, type } of properties)
|
|
47990
|
+
{
|
|
47991
|
+
if (!value .call (this))
|
|
47992
|
+
throw new Error (`Couldn't parse value for property ${name}.`);
|
|
47993
|
+
|
|
47994
|
+
switch (name)
|
|
47995
|
+
{
|
|
47996
|
+
default:
|
|
47997
|
+
attributes .get (name) .push (this .value);
|
|
47998
|
+
break;
|
|
47999
|
+
case "red": case "green": case "blue": case "alpha":
|
|
48000
|
+
case "r": case "g": case "b": case "a":
|
|
48001
|
+
colors .push (this .convertColor (this .value, type));
|
|
48002
|
+
break;
|
|
48003
|
+
case "s": case "t":
|
|
48004
|
+
case "u": case "v":
|
|
48005
|
+
texCoords .push (this .value);
|
|
48006
|
+
break;
|
|
48007
|
+
case "nx": case "ny": case "nz":
|
|
48008
|
+
normals .push (this .value);
|
|
48009
|
+
break;
|
|
48010
|
+
case "x": case "y": case "z":
|
|
48011
|
+
points .push (this .value);
|
|
48012
|
+
break;
|
|
48013
|
+
}
|
|
48014
|
+
}
|
|
48015
|
+
}
|
|
48016
|
+
|
|
48017
|
+
// console .timeEnd ("vertices")
|
|
48018
|
+
|
|
48019
|
+
// Attributes
|
|
48020
|
+
|
|
48021
|
+
if (attributes .size)
|
|
48022
|
+
{
|
|
48023
|
+
scene .addComponent (this .getBrowser () .getComponent ("Shaders", 1));
|
|
48024
|
+
|
|
48025
|
+
await this .loadComponents ();
|
|
48026
|
+
|
|
48027
|
+
for (const [name, value] of attributes)
|
|
48028
|
+
{
|
|
48029
|
+
const floatVertexAttribute = scene .createNode ("FloatVertexAttribute");
|
|
48030
|
+
|
|
48031
|
+
floatVertexAttribute .name = name;
|
|
48032
|
+
floatVertexAttribute .numComponents = 1;
|
|
48033
|
+
floatVertexAttribute .value = value;
|
|
48034
|
+
|
|
48035
|
+
this .attrib .push (floatVertexAttribute);
|
|
48036
|
+
}
|
|
48037
|
+
}
|
|
48038
|
+
|
|
48039
|
+
// Geometric properties
|
|
48040
|
+
|
|
48041
|
+
const
|
|
48042
|
+
pAlpha = properties .some (p => p .name .match (/^(?:alpha|a)$/)),
|
|
48043
|
+
alpha = pAlpha && colors .some ((v, i) => i % 4 === 3 && v < 1),
|
|
48044
|
+
color = scene .createNode (alpha ? "ColorRGBA" : "Color");
|
|
48045
|
+
|
|
48046
|
+
color .color = alpha || !pAlpha ? colors : colors .filter ((v, i) => i % 4 !== 3);
|
|
48047
|
+
texCoord .point = texCoords;
|
|
48048
|
+
normal .vector = normals;
|
|
48049
|
+
coord .point = points;
|
|
48050
|
+
|
|
48051
|
+
this .color = colors .length ? color : null;
|
|
48052
|
+
this .texCoord = texCoords .length ? texCoord : null;
|
|
48053
|
+
this .normal = normals .length ? normal : null;
|
|
48054
|
+
this .coord = coord;
|
|
48055
|
+
},
|
|
48056
|
+
parseFaces ({ count, properties })
|
|
48057
|
+
{
|
|
48058
|
+
const
|
|
48059
|
+
scene = this .getScene (),
|
|
48060
|
+
geometry = scene .createNode ("IndexedFaceSet"),
|
|
48061
|
+
coordIndex = [ ];
|
|
48062
|
+
|
|
48063
|
+
for (let i = 0; i < count; ++ i)
|
|
48064
|
+
{
|
|
48065
|
+
this .whitespaces ();
|
|
48066
|
+
|
|
48067
|
+
for (const { count, value, name } of properties)
|
|
48068
|
+
{
|
|
48069
|
+
if (!count .call (this))
|
|
48070
|
+
throw new Error (`Couldn't parse property count for ${name}.`);
|
|
48071
|
+
|
|
48072
|
+
const length = this .value;
|
|
48073
|
+
|
|
48074
|
+
for (let i = 0; i < length; ++ i)
|
|
48075
|
+
{
|
|
48076
|
+
if (!value .call (this))
|
|
48077
|
+
throw new Error (`Couldn't parse a property value for ${name}.`);
|
|
48078
|
+
|
|
48079
|
+
coordIndex .push (this .value);
|
|
48080
|
+
}
|
|
48081
|
+
|
|
48082
|
+
coordIndex .push (-1);
|
|
48083
|
+
}
|
|
48084
|
+
}
|
|
48085
|
+
|
|
48086
|
+
geometry .coordIndex = coordIndex;
|
|
48087
|
+
this .geometry = geometry;
|
|
48088
|
+
},
|
|
48089
|
+
parseMultiTextureVertices ({ count, properties })
|
|
48090
|
+
{
|
|
48091
|
+
const
|
|
48092
|
+
scene = this .getScene (),
|
|
48093
|
+
texCoord = scene .createNode ("TextureCoordinate"),
|
|
48094
|
+
texCoords = [ ];
|
|
48095
|
+
|
|
48096
|
+
for (let i = 0; i < count; ++ i)
|
|
48097
|
+
{
|
|
48098
|
+
this .whitespaces ();
|
|
48099
|
+
|
|
48100
|
+
for (const { value, name } of properties)
|
|
48101
|
+
{
|
|
48102
|
+
if (!value .call (this))
|
|
48103
|
+
throw new Error (`Couldn't parse value for property ${name}.`);
|
|
48104
|
+
|
|
48105
|
+
switch (name)
|
|
48106
|
+
{
|
|
48107
|
+
case "s": case "t":
|
|
48108
|
+
case "u": case "v":
|
|
48109
|
+
texCoords .push (this .value);
|
|
48110
|
+
break;
|
|
48111
|
+
}
|
|
48112
|
+
}
|
|
48113
|
+
}
|
|
48114
|
+
|
|
48115
|
+
texCoord .point = texCoords;
|
|
48116
|
+
|
|
48117
|
+
this .texCoord = texCoords .length ? texCoord : null;
|
|
48118
|
+
},
|
|
48119
|
+
parseMultiTextureFaces ({ count, properties })
|
|
48120
|
+
{
|
|
48121
|
+
const texCoordIndex = [ ];
|
|
48122
|
+
|
|
48123
|
+
for (let i = 0; i < count; ++ i)
|
|
48124
|
+
{
|
|
48125
|
+
for (const { count, value, name } of properties)
|
|
48126
|
+
{
|
|
48127
|
+
if (count)
|
|
48128
|
+
{
|
|
48129
|
+
if (!count .call (this))
|
|
48130
|
+
throw new Error (`Couldn't parse property count for ${name}.`);
|
|
48131
|
+
|
|
48132
|
+
const length = this .value;
|
|
48133
|
+
|
|
48134
|
+
for (let i = 0; i < length; ++ i)
|
|
48135
|
+
{
|
|
48136
|
+
if (!value .call (this))
|
|
48137
|
+
throw new Error (`Couldn't parse value for property ${name}.`);
|
|
48138
|
+
|
|
48139
|
+
texCoordIndex .push (this .value);
|
|
48140
|
+
}
|
|
48141
|
+
|
|
48142
|
+
texCoordIndex .push (-1);
|
|
48143
|
+
}
|
|
48144
|
+
else
|
|
48145
|
+
{
|
|
48146
|
+
if (!value .call (this))
|
|
48147
|
+
throw new Error (`Couldn't parse value for property ${name}.`);
|
|
48148
|
+
}
|
|
48149
|
+
}
|
|
48150
|
+
}
|
|
48151
|
+
|
|
48152
|
+
if (this .geometry)
|
|
48153
|
+
this .geometry .texCoordIndex = texCoordIndex;
|
|
48154
|
+
},
|
|
48155
|
+
parseUnknown ({ count })
|
|
48156
|
+
{
|
|
48157
|
+
this .whitespaces ();
|
|
48158
|
+
|
|
48159
|
+
for (let i = 0; i < count; ++ i)
|
|
48160
|
+
PLYAParser_Grammar .line .parse (this);
|
|
48161
|
+
},
|
|
48162
|
+
});
|
|
48163
|
+
|
|
48164
|
+
const PLYAParser_default_ = PLYAParser;
|
|
48165
|
+
;
|
|
48166
|
+
|
|
48167
|
+
x_ite_Namespace .set ("x_ite/Parser/PLYAParser", PLYAParser_default_);
|
|
48168
|
+
/* harmony default export */ const Parser_PLYAParser = (PLYAParser_default_);
|
|
48169
|
+
;// CONCATENATED MODULE: ./src/x_ite/Parser/PLYBParser.js
|
|
48170
|
+
/*******************************************************************************
|
|
48171
|
+
*
|
|
48172
|
+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
48173
|
+
*
|
|
48174
|
+
* Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
|
|
48175
|
+
*
|
|
48176
|
+
* All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
|
|
48177
|
+
*
|
|
48178
|
+
* The copyright notice above does not evidence any actual of intended
|
|
48179
|
+
* publication of such source code, and is an unpublished work by create3000.
|
|
48180
|
+
* This material contains CONFIDENTIAL INFORMATION that is the property of
|
|
48181
|
+
* create3000.
|
|
48182
|
+
*
|
|
48183
|
+
* No permission is granted to copy, distribute, or create derivative works from
|
|
48184
|
+
* the contents of this software, in whole or in part, without the prior written
|
|
48185
|
+
* permission of create3000.
|
|
48186
|
+
*
|
|
48187
|
+
* NON-MILITARY USE ONLY
|
|
48188
|
+
*
|
|
48189
|
+
* All create3000 software are effectively free software with a non-military use
|
|
48190
|
+
* restriction. It is free. Well commented source is provided. You may reuse the
|
|
48191
|
+
* source in any way you please with the exception anything that uses it must be
|
|
48192
|
+
* marked to indicate is contains 'non-military use only' components.
|
|
48193
|
+
*
|
|
48194
|
+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
48195
|
+
*
|
|
48196
|
+
* Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
|
|
48197
|
+
*
|
|
48198
|
+
* This file is part of the X_ITE Project.
|
|
48199
|
+
*
|
|
48200
|
+
* X_ITE is free software: you can redistribute it and/or modify it under the
|
|
48201
|
+
* terms of the GNU General Public License version 3 only, as published by the
|
|
48202
|
+
* Free Software Foundation.
|
|
48203
|
+
*
|
|
48204
|
+
* X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
48205
|
+
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
48206
|
+
* A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
|
|
48207
|
+
* details (a copy is included in the LICENSE file that accompanied this code).
|
|
48208
|
+
*
|
|
48209
|
+
* You should have received a copy of the GNU General Public License version 3
|
|
48210
|
+
* along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
|
|
48211
|
+
* copy of the GPLv3 License.
|
|
48212
|
+
*
|
|
48213
|
+
* For Silvio, Joy and Adi.
|
|
48214
|
+
*
|
|
48215
|
+
******************************************************************************/
|
|
48216
|
+
|
|
48217
|
+
|
|
48218
|
+
|
|
48219
|
+
function PLYBParser (scene)
|
|
48220
|
+
{
|
|
48221
|
+
Parser_PLYAParser .call (this, scene);
|
|
48222
|
+
|
|
48223
|
+
this .typeMapping = new Map ([
|
|
48224
|
+
["char", this .binaryInt8],
|
|
48225
|
+
["uchar", this .binaryUint8],
|
|
48226
|
+
["short", this .binaryInt16],
|
|
48227
|
+
["ushort", this .binaryUint16],
|
|
48228
|
+
["int", this .binaryInt32],
|
|
48229
|
+
["uint", this .binaryUint32],
|
|
48230
|
+
["float", this .binaryFloat32],
|
|
48231
|
+
["double", this .binaryFloat64],
|
|
48232
|
+
["int8", this .binaryInt8],
|
|
48233
|
+
["uint8", this .binaryUint8],
|
|
48234
|
+
["int16", this .binaryInt16],
|
|
48235
|
+
["uint16", this .binaryUint16],
|
|
48236
|
+
["int32", this .binaryInt32],
|
|
48237
|
+
["uint32", this .binaryUint32],
|
|
48238
|
+
["float32", this .binaryFloat32],
|
|
48239
|
+
["float64", this .binaryFloat64],
|
|
48240
|
+
]);
|
|
48241
|
+
|
|
48242
|
+
this .binaryInt8 .bytes = 1;
|
|
48243
|
+
this .binaryUint8 .bytes = 1;
|
|
48244
|
+
this .binaryInt16 .bytes = 2;
|
|
48245
|
+
this .binaryUint16 .bytes = 2;
|
|
48246
|
+
this .binaryInt32 .bytes = 4;
|
|
48247
|
+
this .binaryUint32 .bytes = 4;
|
|
48248
|
+
this .binaryFloat32 .bytes = 4;
|
|
48249
|
+
this .binaryFloat64 .bytes = 8;
|
|
48250
|
+
}
|
|
48251
|
+
|
|
48252
|
+
Object .assign (Object .setPrototypeOf (PLYBParser .prototype, Parser_PLYAParser .prototype),
|
|
48253
|
+
{
|
|
48254
|
+
getEncoding ()
|
|
48255
|
+
{
|
|
48256
|
+
return ["ARRAY_BUFFER", "STRING"];
|
|
48257
|
+
},
|
|
48258
|
+
setInput (inputs)
|
|
48259
|
+
{
|
|
48260
|
+
this .arrayBuffer = inputs [0];
|
|
48261
|
+
this .dataView = new DataView (this .arrayBuffer);
|
|
48262
|
+
this .input = inputs [1];
|
|
48263
|
+
this .magic = this .input .match (/^ply\r?\nformat (binary_(?:little|big)_endian) 1.0.*?end_header\r?\n/s);
|
|
48264
|
+
this .byteOffset = this .magic ?.[0] .length;
|
|
48265
|
+
this .littleEndian = this .magic ?.[1] === "binary_little_endian";
|
|
48266
|
+
},
|
|
48267
|
+
isValid ()
|
|
48268
|
+
{
|
|
48269
|
+
if (!(this .arrayBuffer instanceof ArrayBuffer))
|
|
48270
|
+
return false;
|
|
48271
|
+
|
|
48272
|
+
return !! this .magic;
|
|
48273
|
+
},
|
|
48274
|
+
binaryInt8 ()
|
|
48275
|
+
{
|
|
48276
|
+
this .value = this .dataView .getInt8 (this .byteOffset, this .littleEndian);
|
|
48277
|
+
this .byteOffset += 1;
|
|
48278
|
+
|
|
48279
|
+
return true;
|
|
48280
|
+
},
|
|
48281
|
+
binaryUint8 ()
|
|
48282
|
+
{
|
|
48283
|
+
this .value = this .dataView .getUint8 (this .byteOffset, this .littleEndian);
|
|
48284
|
+
this .byteOffset += 1;
|
|
48285
|
+
|
|
48286
|
+
return true;
|
|
48287
|
+
},
|
|
48288
|
+
binaryInt16 ()
|
|
48289
|
+
{
|
|
48290
|
+
this .value = this .dataView .getInt16 (this .byteOffset, this .littleEndian);
|
|
48291
|
+
this .byteOffset += 2;
|
|
48292
|
+
|
|
48293
|
+
return true;
|
|
48294
|
+
},
|
|
48295
|
+
binaryUint16 ()
|
|
48296
|
+
{
|
|
48297
|
+
this .value = this .dataView .getUint16 (this .byteOffset, this .littleEndian);
|
|
48298
|
+
this .byteOffset += 2;
|
|
48299
|
+
|
|
48300
|
+
return true;
|
|
48301
|
+
},
|
|
48302
|
+
binaryInt32 ()
|
|
48303
|
+
{
|
|
48304
|
+
this .value = this .dataView .getInt32 (this .byteOffset, this .littleEndian);
|
|
48305
|
+
this .byteOffset += 4;
|
|
48306
|
+
|
|
48307
|
+
return true;
|
|
48308
|
+
},
|
|
48309
|
+
binaryUint32 ()
|
|
48310
|
+
{
|
|
48311
|
+
this .value = this .dataView .getUint32 (this .byteOffset, this .littleEndian);
|
|
48312
|
+
this .byteOffset += 4;
|
|
48313
|
+
|
|
48314
|
+
return true;
|
|
48315
|
+
},
|
|
48316
|
+
binaryFloat32 ()
|
|
48317
|
+
{
|
|
48318
|
+
this .value = this .dataView .getFloat32 (this .byteOffset, this .littleEndian);
|
|
48319
|
+
this .byteOffset += 4;
|
|
48320
|
+
|
|
48321
|
+
return true;
|
|
48322
|
+
},
|
|
48323
|
+
binaryFloat64 ()
|
|
48324
|
+
{
|
|
48325
|
+
this .value = this .dataView .getFloat64 (this .byteOffset, this .littleEndian);
|
|
48326
|
+
this .byteOffset += 8;
|
|
48327
|
+
|
|
48328
|
+
return true;
|
|
48329
|
+
},
|
|
48330
|
+
processElements (elements)
|
|
48331
|
+
{
|
|
48332
|
+
this .whitespaces = Function .prototype;
|
|
48333
|
+
|
|
48334
|
+
return Parser_PLYAParser .prototype .processElements .call (this, elements);
|
|
48335
|
+
},
|
|
48336
|
+
parseUnknown ({ count, properties })
|
|
48337
|
+
{
|
|
48338
|
+
for (let i = 0; i < count; ++ i)
|
|
48339
|
+
{
|
|
48340
|
+
for (const { count, type } of properties)
|
|
48341
|
+
{
|
|
48342
|
+
if (count)
|
|
48343
|
+
{
|
|
48344
|
+
count .call (this);
|
|
48345
|
+
|
|
48346
|
+
this .byteOffset += this .value * this .typeMapping .get (type) .bytes;
|
|
48347
|
+
}
|
|
48348
|
+
else
|
|
48349
|
+
{
|
|
48350
|
+
this .byteOffset += this .typeMapping .get (type) .bytes;
|
|
48351
|
+
}
|
|
48352
|
+
}
|
|
48353
|
+
}
|
|
48354
|
+
},
|
|
48355
|
+
// parseUnknown ({ count, properties })
|
|
48356
|
+
// {
|
|
48357
|
+
// let string = "";
|
|
48358
|
+
|
|
48359
|
+
// for (let i = 0; i < count; ++ i)
|
|
48360
|
+
// {
|
|
48361
|
+
// for (const { count, type, value } of properties)
|
|
48362
|
+
// {
|
|
48363
|
+
// if (count === undefined)
|
|
48364
|
+
// {
|
|
48365
|
+
// value .call (this);
|
|
48366
|
+
|
|
48367
|
+
// string += this .value + " "
|
|
48368
|
+
// }
|
|
48369
|
+
// else
|
|
48370
|
+
// {
|
|
48371
|
+
// count .call (this);
|
|
48372
|
+
|
|
48373
|
+
// string += this .value + " "
|
|
48374
|
+
|
|
48375
|
+
// for (let i = 0, l = this .value; i < l; ++ i)
|
|
48376
|
+
// {
|
|
48377
|
+
// value .call (this);
|
|
48378
|
+
|
|
48379
|
+
// string += this .value + " "
|
|
48380
|
+
// }
|
|
48381
|
+
// }
|
|
48382
|
+
// }
|
|
48383
|
+
|
|
48384
|
+
// string += "\n"
|
|
48385
|
+
// }
|
|
48386
|
+
|
|
48387
|
+
// console .log (string .substring (0, 1000))
|
|
48388
|
+
// },
|
|
48389
|
+
});
|
|
48390
|
+
|
|
48391
|
+
const PLYBParser_default_ = PLYBParser;
|
|
48392
|
+
;
|
|
48393
|
+
|
|
48394
|
+
x_ite_Namespace .set ("x_ite/Parser/PLYBParser", PLYBParser_default_);
|
|
48395
|
+
/* harmony default export */ const Parser_PLYBParser = (PLYBParser_default_);
|
|
47550
48396
|
;// CONCATENATED MODULE: ./src/standard/Math/Numbers/Complex.js
|
|
47551
48397
|
/*******************************************************************************
|
|
47552
48398
|
*
|
|
@@ -48407,8 +49253,8 @@ const MatrixStack_default_ = MatrixStack;
|
|
|
48407
49253
|
x_ite_Namespace .set ("standard/Math/Utility/MatrixStack", MatrixStack_default_);
|
|
48408
49254
|
/* harmony default export */ const Utility_MatrixStack = (MatrixStack_default_);
|
|
48409
49255
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/SVGParser.js
|
|
48410
|
-
/* provided dependency */ var SVGParser_$ = __webpack_require__(
|
|
48411
|
-
/* provided dependency */ var libtess = __webpack_require__(
|
|
49256
|
+
/* provided dependency */ var SVGParser_$ = __webpack_require__(109);
|
|
49257
|
+
/* provided dependency */ var libtess = __webpack_require__(207);
|
|
48412
49258
|
/*******************************************************************************
|
|
48413
49259
|
*
|
|
48414
49260
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -51176,7 +52022,7 @@ const SVGParser_default_ = SVGParser;
|
|
|
51176
52022
|
x_ite_Namespace .set ("x_ite/Parser/SVGParser", SVGParser_default_);
|
|
51177
52023
|
/* harmony default export */ const Parser_SVGParser = (SVGParser_default_);
|
|
51178
52024
|
;// CONCATENATED MODULE: ./src/x_ite/Parser/GoldenGate.js
|
|
51179
|
-
/* provided dependency */ var GoldenGate_$ = __webpack_require__(
|
|
52025
|
+
/* provided dependency */ var GoldenGate_$ = __webpack_require__(109);
|
|
51180
52026
|
/*******************************************************************************
|
|
51181
52027
|
*
|
|
51182
52028
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -51235,6 +52081,8 @@ x_ite_Namespace .set ("x_ite/Parser/SVGParser", SVGParser_default_);
|
|
|
51235
52081
|
|
|
51236
52082
|
|
|
51237
52083
|
|
|
52084
|
+
|
|
52085
|
+
|
|
51238
52086
|
function GoldenGate (scene)
|
|
51239
52087
|
{
|
|
51240
52088
|
Parser_X3DParser .call (this, scene);
|
|
@@ -51284,14 +52132,21 @@ Object .assign (Object .setPrototypeOf (GoldenGate .prototype, Parser_X3DParser
|
|
|
51284
52132
|
},
|
|
51285
52133
|
getInput (encoding, x3dSyntax)
|
|
51286
52134
|
{
|
|
51287
|
-
if (
|
|
51288
|
-
|
|
52135
|
+
if (Array .isArray (encoding))
|
|
52136
|
+
{
|
|
52137
|
+
return encoding .map (encoding => this .getInput (encoding));
|
|
52138
|
+
}
|
|
52139
|
+
else
|
|
52140
|
+
{
|
|
52141
|
+
if (this .inputs .has (encoding))
|
|
52142
|
+
return this .inputs .get (encoding);
|
|
51289
52143
|
|
|
51290
|
-
|
|
52144
|
+
const input = this .createInput (encoding, x3dSyntax);
|
|
51291
52145
|
|
|
51292
|
-
|
|
52146
|
+
this .inputs .set (encoding, input);
|
|
51293
52147
|
|
|
51294
|
-
|
|
52148
|
+
return input;
|
|
52149
|
+
}
|
|
51295
52150
|
},
|
|
51296
52151
|
createInput (encoding, x3dSyntax)
|
|
51297
52152
|
{
|
|
@@ -51326,6 +52181,8 @@ GoldenGate .Parser = [
|
|
|
51326
52181
|
Parser_OBJParser,
|
|
51327
52182
|
Parser_STLAParser,
|
|
51328
52183
|
Parser_STLBParser,
|
|
52184
|
+
Parser_PLYAParser,
|
|
52185
|
+
Parser_PLYBParser,
|
|
51329
52186
|
];
|
|
51330
52187
|
|
|
51331
52188
|
const GoldenGate_default_ = GoldenGate;
|
|
@@ -51502,7 +52359,7 @@ const Plane3_default_ = Plane3;
|
|
|
51502
52359
|
x_ite_Namespace .set ("standard/Math/Geometry/Plane3", Plane3_default_);
|
|
51503
52360
|
/* harmony default export */ const Geometry_Plane3 = (Plane3_default_);
|
|
51504
52361
|
;// CONCATENATED MODULE: ./src/standard/Math/Geometry/Triangle3.js
|
|
51505
|
-
/* provided dependency */ var Triangle3_libtess = __webpack_require__(
|
|
52362
|
+
/* provided dependency */ var Triangle3_libtess = __webpack_require__(207);
|
|
51506
52363
|
/*******************************************************************************
|
|
51507
52364
|
*
|
|
51508
52365
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -58897,7 +59754,7 @@ const X3DTexture2DNode_default_ = X3DTexture2DNode;
|
|
|
58897
59754
|
x_ite_Namespace .set ("x_ite/Components/Texturing/X3DTexture2DNode", X3DTexture2DNode_default_);
|
|
58898
59755
|
/* harmony default export */ const Texturing_X3DTexture2DNode = (X3DTexture2DNode_default_);
|
|
58899
59756
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/ImageTexture.js
|
|
58900
|
-
/* provided dependency */ var ImageTexture_$ = __webpack_require__(
|
|
59757
|
+
/* provided dependency */ var ImageTexture_$ = __webpack_require__(109);
|
|
58901
59758
|
/*******************************************************************************
|
|
58902
59759
|
*
|
|
58903
59760
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -59429,7 +60286,7 @@ function X3DLayerNode (executionContext, defaultViewpoint, groupNode)
|
|
|
59429
60286
|
|
|
59430
60287
|
this .addType (Base_X3DConstants .X3DLayerNode);
|
|
59431
60288
|
|
|
59432
|
-
if (executionContext .getSpecificationVersion ()
|
|
60289
|
+
if (executionContext .getSpecificationVersion () <= 3.3)
|
|
59433
60290
|
this .addAlias ("isPickable", this ._pickable);
|
|
59434
60291
|
|
|
59435
60292
|
this .groupNode = groupNode;
|
|
@@ -61433,7 +62290,7 @@ Object .assign (Object .setPrototypeOf (X3DViewpointNode .prototype, Core_X3DBin
|
|
|
61433
62290
|
|
|
61434
62291
|
// VRML behavior
|
|
61435
62292
|
|
|
61436
|
-
if (this .getExecutionContext () .getSpecificationVersion ()
|
|
62293
|
+
if (this .getExecutionContext () .getSpecificationVersion () == 2.0)
|
|
61437
62294
|
{
|
|
61438
62295
|
if (this .getVRMLTransition ())
|
|
61439
62296
|
transitionType = "LINEAR";
|
|
@@ -61927,7 +62784,7 @@ Object .defineProperties (Viewpoint,
|
|
|
61927
62784
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "position", new x_ite_Fields .SFVec3f (0, 0, 10)),
|
|
61928
62785
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "orientation", new x_ite_Fields .SFRotation ()),
|
|
61929
62786
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "centerOfRotation", new x_ite_Fields .SFVec3f ()),
|
|
61930
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "fieldOfView", new x_ite_Fields .SFFloat (0.
|
|
62787
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "fieldOfView", new x_ite_Fields .SFFloat (0.785398)),
|
|
61931
62788
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "nearDistance", new x_ite_Fields .SFFloat (-1)),
|
|
61932
62789
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "farDistance", new x_ite_Fields .SFFloat (-1)),
|
|
61933
62790
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "viewAll", new x_ite_Fields .SFBool ()),
|
|
@@ -63437,7 +64294,7 @@ const X3DWorld_default_ = X3DWorld;
|
|
|
63437
64294
|
x_ite_Namespace .set ("x_ite/Execution/X3DWorld", X3DWorld_default_);
|
|
63438
64295
|
/* harmony default export */ const Execution_X3DWorld = (X3DWorld_default_);
|
|
63439
64296
|
;// CONCATENATED MODULE: ./src/x_ite/InputOutput/FileLoader.js
|
|
63440
|
-
/* provided dependency */ var FileLoader_$ = __webpack_require__(
|
|
64297
|
+
/* provided dependency */ var FileLoader_$ = __webpack_require__(109);
|
|
63441
64298
|
/*******************************************************************************
|
|
63442
64299
|
*
|
|
63443
64300
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -74498,7 +75355,7 @@ function Switch (executionContext)
|
|
|
74498
75355
|
|
|
74499
75356
|
this .addType (Base_X3DConstants .Switch);
|
|
74500
75357
|
|
|
74501
|
-
if (executionContext .getSpecificationVersion ()
|
|
75358
|
+
if (executionContext .getSpecificationVersion () == 2.0)
|
|
74502
75359
|
this .addAlias ("choice", this ._children);
|
|
74503
75360
|
|
|
74504
75361
|
this .childNode = null;
|
|
@@ -77945,7 +78802,7 @@ function DirectionalLight (executionContext)
|
|
|
77945
78802
|
|
|
77946
78803
|
this .addType (Base_X3DConstants .DirectionalLight);
|
|
77947
78804
|
|
|
77948
|
-
if (executionContext .getSpecificationVersion ()
|
|
78805
|
+
if (executionContext .getSpecificationVersion () == 2.0)
|
|
77949
78806
|
this ._global = true;
|
|
77950
78807
|
}
|
|
77951
78808
|
|
|
@@ -79211,7 +80068,7 @@ function Collision (executionContext)
|
|
|
79211
80068
|
|
|
79212
80069
|
this .addType (Base_X3DConstants .Collision);
|
|
79213
80070
|
|
|
79214
|
-
if (executionContext .getSpecificationVersion ()
|
|
80071
|
+
if (executionContext .getSpecificationVersion () == 2.0)
|
|
79215
80072
|
this .addAlias ("collide", this ._enabled); // VRML2
|
|
79216
80073
|
}
|
|
79217
80074
|
|
|
@@ -79400,7 +80257,7 @@ function LOD (executionContext)
|
|
|
79400
80257
|
|
|
79401
80258
|
this .addType (Base_X3DConstants .LOD);
|
|
79402
80259
|
|
|
79403
|
-
if (executionContext .getSpecificationVersion ()
|
|
80260
|
+
if (executionContext .getSpecificationVersion () == 2.0)
|
|
79404
80261
|
this .addAlias ("level", this ._children); // VRML2
|
|
79405
80262
|
|
|
79406
80263
|
this ._center .setUnit ("length");
|
|
@@ -81508,7 +82365,7 @@ function LoadSensor (executionContext)
|
|
|
81508
82365
|
|
|
81509
82366
|
this .addType (Base_X3DConstants .LoadSensor);
|
|
81510
82367
|
|
|
81511
|
-
if (executionContext .getSpecificationVersion ()
|
|
82368
|
+
if (executionContext .getSpecificationVersion () <= 3.3)
|
|
81512
82369
|
this .addAlias ("watchList", this ._children);
|
|
81513
82370
|
|
|
81514
82371
|
this .urlObjects = [ ];
|
|
@@ -87053,7 +87910,7 @@ const X3DShaderNode_default_ = X3DShaderNode;
|
|
|
87053
87910
|
x_ite_Namespace .set ("x_ite/Components/Shaders/X3DShaderNode", X3DShaderNode_default_);
|
|
87054
87911
|
/* harmony default export */ const Shaders_X3DShaderNode = (X3DShaderNode_default_);
|
|
87055
87912
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js
|
|
87056
|
-
/* provided dependency */ var X3DProgrammableShaderObject_$ = __webpack_require__(
|
|
87913
|
+
/* provided dependency */ var X3DProgrammableShaderObject_$ = __webpack_require__(109);
|
|
87057
87914
|
/*******************************************************************************
|
|
87058
87915
|
*
|
|
87059
87916
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -95776,7 +96633,7 @@ const ShaderCompiler_default_ = ShaderCompiler;
|
|
|
95776
96633
|
x_ite_Namespace .set ("x_ite/Browser/Shaders/ShaderCompiler", ShaderCompiler_default_);
|
|
95777
96634
|
/* harmony default export */ const Shaders_ShaderCompiler = (ShaderCompiler_default_);
|
|
95778
96635
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Shaders/ShaderPart.js
|
|
95779
|
-
/* provided dependency */ var ShaderPart_$ = __webpack_require__(
|
|
96636
|
+
/* provided dependency */ var ShaderPart_$ = __webpack_require__(109);
|
|
95780
96637
|
/*******************************************************************************
|
|
95781
96638
|
*
|
|
95782
96639
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -96311,7 +97168,7 @@ Object .defineProperties (AcousticProperties,
|
|
|
96311
97168
|
},
|
|
96312
97169
|
containerField:
|
|
96313
97170
|
{
|
|
96314
|
-
value: "
|
|
97171
|
+
value: "acousticProperties",
|
|
96315
97172
|
enumerable: true,
|
|
96316
97173
|
},
|
|
96317
97174
|
specificationRange:
|
|
@@ -96435,7 +97292,7 @@ const X3DAppearanceNode_default_ = X3DAppearanceNode;
|
|
|
96435
97292
|
x_ite_Namespace .set ("x_ite/Components/Shape/X3DAppearanceNode", X3DAppearanceNode_default_);
|
|
96436
97293
|
/* harmony default export */ const Shape_X3DAppearanceNode = (X3DAppearanceNode_default_);
|
|
96437
97294
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Shape/Appearance.js
|
|
96438
|
-
/* provided dependency */ var Appearance_$ = __webpack_require__(
|
|
97295
|
+
/* provided dependency */ var Appearance_$ = __webpack_require__(109);
|
|
96439
97296
|
/*******************************************************************************
|
|
96440
97297
|
*
|
|
96441
97298
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -96876,6 +97733,7 @@ Object .defineProperties (Appearance,
|
|
|
96876
97733
|
{
|
|
96877
97734
|
value: new Base_FieldDefinitionArray ([
|
|
96878
97735
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "metadata", new x_ite_Fields .SFNode ()),
|
|
97736
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "acousticProperties", new x_ite_Fields .SFNode ()),
|
|
96879
97737
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "alphaMode", new x_ite_Fields .SFString ("AUTO")),
|
|
96880
97738
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "alphaCutoff", new x_ite_Fields .SFFloat (0.5)),
|
|
96881
97739
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "pointProperties", new x_ite_Fields .SFNode ()),
|
|
@@ -96887,7 +97745,6 @@ Object .defineProperties (Appearance,
|
|
|
96887
97745
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "textureTransform", new x_ite_Fields .SFNode ()),
|
|
96888
97746
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "shaders", new x_ite_Fields .MFNode ()),
|
|
96889
97747
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "blendMode", new x_ite_Fields .SFNode ()),
|
|
96890
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "acousticProperties", new x_ite_Fields .SFNode ()),
|
|
96891
97748
|
]),
|
|
96892
97749
|
enumerable: true,
|
|
96893
97750
|
},
|
|
@@ -97070,8 +97927,8 @@ Object .defineProperties (FillProperties,
|
|
|
97070
97927
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "metadata", new x_ite_Fields .SFNode ()),
|
|
97071
97928
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "filled", new x_ite_Fields .SFBool (true)),
|
|
97072
97929
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "hatched", new x_ite_Fields .SFBool (true)),
|
|
97073
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "hatchColor", new x_ite_Fields .SFColor (1, 1, 1)),
|
|
97074
97930
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "hatchStyle", new x_ite_Fields .SFInt32 (1)),
|
|
97931
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "hatchColor", new x_ite_Fields .SFColor (1, 1, 1)),
|
|
97075
97932
|
]),
|
|
97076
97933
|
enumerable: true,
|
|
97077
97934
|
},
|
|
@@ -97878,7 +98735,7 @@ function Material (executionContext)
|
|
|
97878
98735
|
|
|
97879
98736
|
this .addType (Base_X3DConstants .Material);
|
|
97880
98737
|
|
|
97881
|
-
if (executionContext .getSpecificationVersion ()
|
|
98738
|
+
if (executionContext .getSpecificationVersion () <= 3.3)
|
|
97882
98739
|
this .getMaterialKey = getMaterialKey;
|
|
97883
98740
|
|
|
97884
98741
|
this .diffuseColor = new Float32Array (3);
|
|
@@ -98521,7 +99378,7 @@ Object .defineProperties (PhysicalMaterial,
|
|
|
98521
99378
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "baseColor", new x_ite_Fields .SFColor (1, 1, 1)),
|
|
98522
99379
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "baseTextureMapping", new x_ite_Fields .SFString ()),
|
|
98523
99380
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "baseTexture", new x_ite_Fields .SFNode ()),
|
|
98524
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "emissiveColor", new x_ite_Fields .SFColor (
|
|
99381
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "emissiveColor", new x_ite_Fields .SFColor ()),
|
|
98525
99382
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "emissiveTextureMapping", new x_ite_Fields .SFString ()),
|
|
98526
99383
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "emissiveTexture", new x_ite_Fields .SFNode ()),
|
|
98527
99384
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "metallic", new x_ite_Fields .SFFloat (1)),
|
|
@@ -99408,7 +100265,7 @@ Object .defineProperties (TwoSidedMaterial,
|
|
|
99408
100265
|
},
|
|
99409
100266
|
specificationRange:
|
|
99410
100267
|
{
|
|
99411
|
-
value: Object .freeze (["3.2", "
|
|
100268
|
+
value: Object .freeze (["3.2", "4.0"]),
|
|
99412
100269
|
enumerable: true,
|
|
99413
100270
|
},
|
|
99414
100271
|
fieldDefinitions:
|
|
@@ -99875,8 +100732,8 @@ Object .defineProperties (Analyser,
|
|
|
99875
100732
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "tailTime", new x_ite_Fields .SFTime ()),
|
|
99876
100733
|
|
|
99877
100734
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
99878
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
99879
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
100735
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
100736
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
99880
100737
|
|
|
99881
100738
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
99882
100739
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "resumeTime", new x_ite_Fields .SFTime ()),
|
|
@@ -100130,7 +100987,7 @@ const X3DSoundSourceNode_default_ = X3DSoundSourceNode;
|
|
|
100130
100987
|
x_ite_Namespace .set ("x_ite/Components/Sound/X3DSoundSourceNode", X3DSoundSourceNode_default_);
|
|
100131
100988
|
/* harmony default export */ const Sound_X3DSoundSourceNode = (X3DSoundSourceNode_default_);
|
|
100132
100989
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Sound/AudioClip.js
|
|
100133
|
-
/* provided dependency */ var AudioClip_$ = __webpack_require__(
|
|
100990
|
+
/* provided dependency */ var AudioClip_$ = __webpack_require__(109);
|
|
100134
100991
|
/*******************************************************************************
|
|
100135
100992
|
*
|
|
100136
100993
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -100601,8 +101458,8 @@ Object .defineProperties (AudioDestination,
|
|
|
100601
101458
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "maxChannelCount", new x_ite_Fields .SFInt32 (2)),
|
|
100602
101459
|
|
|
100603
101460
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
100604
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
100605
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
101461
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
101462
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
100606
101463
|
|
|
100607
101464
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "mediaDeviceID", new x_ite_Fields .SFString ()),
|
|
100608
101465
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "isActive", new x_ite_Fields .SFBool ()),
|
|
@@ -100714,11 +101571,11 @@ Object .defineProperties (BiquadFilter,
|
|
|
100714
101571
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "gain", new x_ite_Fields .SFFloat (1)),
|
|
100715
101572
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "qualityFactor", new x_ite_Fields .SFFloat (1)),
|
|
100716
101573
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "tailTime", new x_ite_Fields .SFTime ()),
|
|
100717
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "type", new x_ite_Fields .SFString ("
|
|
101574
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "type", new x_ite_Fields .SFString ("LOWPASS")),
|
|
100718
101575
|
|
|
100719
101576
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
100720
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
100721
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
101577
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
101578
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
100722
101579
|
|
|
100723
101580
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
100724
101581
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "resumeTime", new x_ite_Fields .SFTime ()),
|
|
@@ -100865,8 +101722,8 @@ Object .defineProperties (BufferAudioSource,
|
|
|
100865
101722
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "bufferLength", new x_ite_Fields .SFInt32 ()),
|
|
100866
101723
|
|
|
100867
101724
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
100868
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
100869
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
101725
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
101726
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
100870
101727
|
|
|
100871
101728
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "loop", new x_ite_Fields .SFBool ()),
|
|
100872
101729
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
@@ -101060,8 +101917,8 @@ Object .defineProperties (ChannelMerger,
|
|
|
101060
101917
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "gain", new x_ite_Fields .SFFloat (1)),
|
|
101061
101918
|
|
|
101062
101919
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
101063
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
101064
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
101920
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
101921
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
101065
101922
|
|
|
101066
101923
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "children", new x_ite_Fields .MFNode ()),
|
|
101067
101924
|
]),
|
|
@@ -101170,8 +102027,8 @@ Object .defineProperties (ChannelSelector,
|
|
|
101170
102027
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelSelection", new x_ite_Fields .SFInt32 (0)),
|
|
101171
102028
|
|
|
101172
102029
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
101173
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
101174
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
102030
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
102031
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
101175
102032
|
|
|
101176
102033
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "children", new x_ite_Fields .MFNode ()),
|
|
101177
102034
|
]),
|
|
@@ -101279,8 +102136,8 @@ Object .defineProperties (ChannelSplitter,
|
|
|
101279
102136
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "gain", new x_ite_Fields .SFFloat (1)),
|
|
101280
102137
|
|
|
101281
102138
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
101282
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
101283
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
102139
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
102140
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
101284
102141
|
|
|
101285
102142
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "children", new x_ite_Fields .MFNode ()),
|
|
101286
102143
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "outputs", new x_ite_Fields .MFNode ()),
|
|
@@ -101392,8 +102249,8 @@ Object .defineProperties (Convolver,
|
|
|
101392
102249
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "tailTime", new x_ite_Fields .SFTime ()),
|
|
101393
102250
|
|
|
101394
102251
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
101395
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
101396
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
102252
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
102253
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
101397
102254
|
|
|
101398
102255
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
101399
102256
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "resumeTime", new x_ite_Fields .SFTime ()),
|
|
@@ -101512,8 +102369,8 @@ Object .defineProperties (Delay,
|
|
|
101512
102369
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "tailTime", new x_ite_Fields .SFTime ()),
|
|
101513
102370
|
|
|
101514
102371
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
101515
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
101516
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
102372
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
102373
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
101517
102374
|
|
|
101518
102375
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
101519
102376
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "resumeTime", new x_ite_Fields .SFTime ()),
|
|
@@ -101636,8 +102493,8 @@ Object .defineProperties (DynamicsCompressor,
|
|
|
101636
102493
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "tailTime", new x_ite_Fields .SFTime ()),
|
|
101637
102494
|
|
|
101638
102495
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
101639
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
101640
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
102496
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
102497
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
101641
102498
|
|
|
101642
102499
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
101643
102500
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "resumeTime", new x_ite_Fields .SFTime ()),
|
|
@@ -101754,8 +102611,8 @@ Object .defineProperties (Gain,
|
|
|
101754
102611
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "tailTime", new x_ite_Fields .SFTime ()),
|
|
101755
102612
|
|
|
101756
102613
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
101757
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
101758
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
102614
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
102615
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
101759
102616
|
|
|
101760
102617
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
101761
102618
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "resumeTime", new x_ite_Fields .SFTime ()),
|
|
@@ -102220,9 +103077,9 @@ Object .defineProperties (PeriodicWave,
|
|
|
102220
103077
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "metadata", new x_ite_Fields .SFNode ()),
|
|
102221
103078
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "description", new x_ite_Fields .SFString ()),
|
|
102222
103079
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "enabled", new x_ite_Fields .SFBool (true)),
|
|
103080
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "type", new x_ite_Fields .SFString ("SQUARE")),
|
|
102223
103081
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "optionsReal", new x_ite_Fields .MFFloat ()),
|
|
102224
103082
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "optionsImag", new x_ite_Fields .MFFloat ()),
|
|
102225
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "type", new x_ite_Fields .SFString ("square")),
|
|
102226
103083
|
]),
|
|
102227
103084
|
enumerable: true,
|
|
102228
103085
|
},
|
|
@@ -102757,8 +103614,8 @@ Object .defineProperties (StreamAudioDestination,
|
|
|
102757
103614
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "streamIdentifier", new x_ite_Fields .MFString ()),
|
|
102758
103615
|
|
|
102759
103616
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
102760
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
102761
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
103617
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
103618
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
102762
103619
|
|
|
102763
103620
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "mediaDeviceID", new x_ite_Fields .SFString ()),
|
|
102764
103621
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "isActive", new x_ite_Fields .SFBool ()),
|
|
@@ -102982,12 +103839,12 @@ Object .defineProperties (WaveShaper,
|
|
|
102982
103839
|
|
|
102983
103840
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "gain", new x_ite_Fields .SFFloat (1)),
|
|
102984
103841
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "curve", new x_ite_Fields .MFFloat ()),
|
|
102985
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "oversample", new x_ite_Fields .SFString ("
|
|
103842
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "oversample", new x_ite_Fields .SFString ("NONE")),
|
|
102986
103843
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "tailTime", new x_ite_Fields .SFTime ()),
|
|
102987
103844
|
|
|
102988
103845
|
new Base_X3DFieldDefinition (Base_X3DConstants .outputOnly, "channelCount", new x_ite_Fields .SFInt32 ()),
|
|
102989
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("
|
|
102990
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("
|
|
103846
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelCountMode", new x_ite_Fields .SFString ("MAX")),
|
|
103847
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "channelInterpretation", new x_ite_Fields .SFString ("SPEAKERS")),
|
|
102991
103848
|
|
|
102992
103849
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "startTime", new x_ite_Fields .SFTime ()),
|
|
102993
103850
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "resumeTime", new x_ite_Fields .SFTime ()),
|
|
@@ -103241,8 +104098,8 @@ const GIFMedia_default_ = GifMedia;
|
|
|
103241
104098
|
x_ite_Namespace .set ("x_ite/Browser/Texturing/GIFMedia", GIFMedia_default_);
|
|
103242
104099
|
/* harmony default export */ const GIFMedia = (GIFMedia_default_);
|
|
103243
104100
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/MovieTexture.js
|
|
103244
|
-
/* provided dependency */ var MovieTexture_$ = __webpack_require__(
|
|
103245
|
-
/* provided dependency */ var SuperGif = __webpack_require__(
|
|
104101
|
+
/* provided dependency */ var MovieTexture_$ = __webpack_require__(109);
|
|
104102
|
+
/* provided dependency */ var SuperGif = __webpack_require__(842);
|
|
103246
104103
|
/*******************************************************************************
|
|
103247
104104
|
*
|
|
103248
104105
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -104407,7 +105264,7 @@ const MultiTextureTransform_default_ = MultiTextureTransform;
|
|
|
104407
105264
|
x_ite_Namespace .set ("x_ite/Components/Texturing/MultiTextureTransform", MultiTextureTransform_default_);
|
|
104408
105265
|
/* harmony default export */ const Texturing_MultiTextureTransform = (MultiTextureTransform_default_);
|
|
104409
105266
|
;// CONCATENATED MODULE: ./src/x_ite/Components/Texturing/PixelTexture.js
|
|
104410
|
-
/* provided dependency */ var PixelTexture_$ = __webpack_require__(
|
|
105267
|
+
/* provided dependency */ var PixelTexture_$ = __webpack_require__(109);
|
|
104411
105268
|
/*******************************************************************************
|
|
104412
105269
|
*
|
|
104413
105270
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -104682,7 +105539,7 @@ Object .defineProperties (PixelTexture,
|
|
|
104682
105539
|
value: new Base_FieldDefinitionArray ([
|
|
104683
105540
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "metadata", new x_ite_Fields .SFNode ()),
|
|
104684
105541
|
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "description", new x_ite_Fields .SFString ()),
|
|
104685
|
-
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "image", new x_ite_Fields .SFImage (
|
|
105542
|
+
new Base_X3DFieldDefinition (Base_X3DConstants .inputOutput, "image", new x_ite_Fields .SFImage ()),
|
|
104686
105543
|
new Base_X3DFieldDefinition (Base_X3DConstants .initializeOnly, "repeatS", new x_ite_Fields .SFBool (true)),
|
|
104687
105544
|
new Base_X3DFieldDefinition (Base_X3DConstants .initializeOnly, "repeatT", new x_ite_Fields .SFBool (true)),
|
|
104688
105545
|
new Base_X3DFieldDefinition (Base_X3DConstants .initializeOnly, "textureProperties", new x_ite_Fields .SFNode ()),
|
|
@@ -105215,7 +106072,7 @@ function TextureProperties (executionContext)
|
|
|
105215
106072
|
|
|
105216
106073
|
this .addType (Base_X3DConstants .TextureProperties);
|
|
105217
106074
|
|
|
105218
|
-
if (executionContext .getSpecificationVersion ()
|
|
106075
|
+
if (executionContext .getSpecificationVersion () <= 3.3)
|
|
105219
106076
|
{
|
|
105220
106077
|
this ._minificationFilter = "DEFAULT";
|
|
105221
106078
|
this ._magnificationFilter = "DEFAULT";
|
|
@@ -106588,7 +107445,7 @@ const gettext_default_ = gettext;
|
|
|
106588
107445
|
x_ite_Namespace .set ("locale/gettext", gettext_default_);
|
|
106589
107446
|
/* harmony default export */ const locale_gettext = (gettext_default_);
|
|
106590
107447
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/BrowserTimings.js
|
|
106591
|
-
/* provided dependency */ var BrowserTimings_$ = __webpack_require__(
|
|
107448
|
+
/* provided dependency */ var BrowserTimings_$ = __webpack_require__(109);
|
|
106592
107449
|
/*******************************************************************************
|
|
106593
107450
|
*
|
|
106594
107451
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -107018,7 +107875,7 @@ const TextureQuality_default_ = TextureQuality;
|
|
|
107018
107875
|
x_ite_Namespace .set ("x_ite/Browser/Core/TextureQuality", TextureQuality_default_);
|
|
107019
107876
|
/* harmony default export */ const Core_TextureQuality = (TextureQuality_default_);
|
|
107020
107877
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/BrowserOptions.js
|
|
107021
|
-
/* provided dependency */ var BrowserOptions_$ = __webpack_require__(
|
|
107878
|
+
/* provided dependency */ var BrowserOptions_$ = __webpack_require__(109);
|
|
107022
107879
|
/*******************************************************************************
|
|
107023
107880
|
*
|
|
107024
107881
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -107599,7 +108456,7 @@ const RenderingProperties_default_ = RenderingProperties;
|
|
|
107599
108456
|
x_ite_Namespace .set ("x_ite/Browser/Core/RenderingProperties", RenderingProperties_default_);
|
|
107600
108457
|
/* harmony default export */ const Core_RenderingProperties = (RenderingProperties_default_);
|
|
107601
108458
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/Notification.js
|
|
107602
|
-
/* provided dependency */ var Notification_$ = __webpack_require__(
|
|
108459
|
+
/* provided dependency */ var Notification_$ = __webpack_require__(109);
|
|
107603
108460
|
/*******************************************************************************
|
|
107604
108461
|
*
|
|
107605
108462
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -107721,8 +108578,8 @@ const Notification_default_ = Notification;
|
|
|
107721
108578
|
x_ite_Namespace .set ("x_ite/Browser/Core/Notification", Notification_default_);
|
|
107722
108579
|
/* harmony default export */ const Core_Notification = (Notification_default_);
|
|
107723
108580
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/ContextMenu.js
|
|
107724
|
-
/* provided dependency */ var jquery_fullscreen = __webpack_require__(
|
|
107725
|
-
/* provided dependency */ var ContextMenu_$ = __webpack_require__(
|
|
108581
|
+
/* provided dependency */ var jquery_fullscreen = __webpack_require__(418);
|
|
108582
|
+
/* provided dependency */ var ContextMenu_$ = __webpack_require__(109);
|
|
107726
108583
|
/*******************************************************************************
|
|
107727
108584
|
*
|
|
107728
108585
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -110440,7 +111297,7 @@ const DataStorage_default_ = DataStorage;
|
|
|
110440
111297
|
x_ite_Namespace .set ("standard/Utility/DataStorage", DataStorage_default_);
|
|
110441
111298
|
/* harmony default export */ const Utility_DataStorage = (DataStorage_default_);
|
|
110442
111299
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Core/X3DCoreContext.js
|
|
110443
|
-
/* provided dependency */ var X3DCoreContext_$ = __webpack_require__(
|
|
111300
|
+
/* provided dependency */ var X3DCoreContext_$ = __webpack_require__(109);
|
|
110444
111301
|
/*******************************************************************************
|
|
110445
111302
|
*
|
|
110446
111303
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -110863,11 +111720,18 @@ Object .assign (X3DCoreContext .prototype,
|
|
|
110863
111720
|
},
|
|
110864
111721
|
parseUrlAttribute (urlCharacters)
|
|
110865
111722
|
{
|
|
110866
|
-
|
|
111723
|
+
try
|
|
111724
|
+
{
|
|
111725
|
+
const url = new x_ite_Fields .MFString ();
|
|
110867
111726
|
|
|
110868
|
-
|
|
111727
|
+
url .fromString ("[" + urlCharacters + "]", this .getExecutionContext ());
|
|
110869
111728
|
|
|
110870
|
-
|
|
111729
|
+
return url;
|
|
111730
|
+
}
|
|
111731
|
+
catch
|
|
111732
|
+
{
|
|
111733
|
+
throw new Error ("Couldn't parse url attribute.");
|
|
111734
|
+
}
|
|
110871
111735
|
},
|
|
110872
111736
|
callBrowserEventHandler: (() =>
|
|
110873
111737
|
{
|
|
@@ -112468,8 +113332,8 @@ const X3DViewer_default_ = X3DViewer;
|
|
|
112468
113332
|
x_ite_Namespace .set ("x_ite/Browser/Navigation/X3DViewer", X3DViewer_default_);
|
|
112469
113333
|
/* harmony default export */ const Navigation_X3DViewer = (X3DViewer_default_);
|
|
112470
113334
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/ExamineViewer.js
|
|
112471
|
-
/* provided dependency */ var jquery_mousewheel = __webpack_require__(
|
|
112472
|
-
/* provided dependency */ var ExamineViewer_$ = __webpack_require__(
|
|
113335
|
+
/* provided dependency */ var jquery_mousewheel = __webpack_require__(90);
|
|
113336
|
+
/* provided dependency */ var ExamineViewer_$ = __webpack_require__(109);
|
|
112473
113337
|
/*******************************************************************************
|
|
112474
113338
|
*
|
|
112475
113339
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -113341,8 +114205,8 @@ const ExamineViewer_default_ = ExamineViewer;
|
|
|
113341
114205
|
x_ite_Namespace .set ("x_ite/Browser/Navigation/ExamineViewer", ExamineViewer_default_);
|
|
113342
114206
|
/* harmony default export */ const Navigation_ExamineViewer = (ExamineViewer_default_);
|
|
113343
114207
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/X3DFlyViewer.js
|
|
113344
|
-
/* provided dependency */ var X3DFlyViewer_jquery_mousewheel = __webpack_require__(
|
|
113345
|
-
/* provided dependency */ var X3DFlyViewer_$ = __webpack_require__(
|
|
114208
|
+
/* provided dependency */ var X3DFlyViewer_jquery_mousewheel = __webpack_require__(90);
|
|
114209
|
+
/* provided dependency */ var X3DFlyViewer_$ = __webpack_require__(109);
|
|
113346
114210
|
/*******************************************************************************
|
|
113347
114211
|
*
|
|
113348
114212
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -114312,8 +115176,8 @@ const FlyViewer_default_ = FlyViewer;
|
|
|
114312
115176
|
x_ite_Namespace .set ("x_ite/Browser/Navigation/FlyViewer", FlyViewer_default_);
|
|
114313
115177
|
/* harmony default export */ const Navigation_FlyViewer = (FlyViewer_default_);
|
|
114314
115178
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/PlaneViewer.js
|
|
114315
|
-
/* provided dependency */ var PlaneViewer_jquery_mousewheel = __webpack_require__(
|
|
114316
|
-
/* provided dependency */ var PlaneViewer_$ = __webpack_require__(
|
|
115179
|
+
/* provided dependency */ var PlaneViewer_jquery_mousewheel = __webpack_require__(90);
|
|
115180
|
+
/* provided dependency */ var PlaneViewer_$ = __webpack_require__(109);
|
|
114317
115181
|
/*******************************************************************************
|
|
114318
115182
|
*
|
|
114319
115183
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -114644,8 +115508,8 @@ const NoneViewer_default_ = NoneViewer;
|
|
|
114644
115508
|
x_ite_Namespace .set ("x_ite/Browser/Navigation/NoneViewer", NoneViewer_default_);
|
|
114645
115509
|
/* harmony default export */ const Navigation_NoneViewer = (NoneViewer_default_);
|
|
114646
115510
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Navigation/LookAtViewer.js
|
|
114647
|
-
/* provided dependency */ var LookAtViewer_jquery_mousewheel = __webpack_require__(
|
|
114648
|
-
/* provided dependency */ var LookAtViewer_$ = __webpack_require__(
|
|
115511
|
+
/* provided dependency */ var LookAtViewer_jquery_mousewheel = __webpack_require__(90);
|
|
115512
|
+
/* provided dependency */ var LookAtViewer_$ = __webpack_require__(109);
|
|
114649
115513
|
/*******************************************************************************
|
|
114650
115514
|
*
|
|
114651
115515
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -115782,8 +116646,8 @@ const X3DPickingContext_default_ = X3DPickingContext;
|
|
|
115782
116646
|
x_ite_Namespace .set ("x_ite/Browser/Picking/X3DPickingContext", X3DPickingContext_default_);
|
|
115783
116647
|
/* harmony default export */ const Picking_X3DPickingContext = (X3DPickingContext_default_);
|
|
115784
116648
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/PointingDeviceSensor/PointingDevice.js
|
|
115785
|
-
/* provided dependency */ var PointingDevice_jquery_mousewheel = __webpack_require__(
|
|
115786
|
-
/* provided dependency */ var PointingDevice_$ = __webpack_require__(
|
|
116649
|
+
/* provided dependency */ var PointingDevice_jquery_mousewheel = __webpack_require__(90);
|
|
116650
|
+
/* provided dependency */ var PointingDevice_$ = __webpack_require__(109);
|
|
115787
116651
|
/*******************************************************************************
|
|
115788
116652
|
*
|
|
115789
116653
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -116823,8 +117687,8 @@ const MultiSampleFrameBuffer_default_ = MultiSampleFrameBuffer;
|
|
|
116823
117687
|
x_ite_Namespace .set ("x_ite/Rendering/MultiSampleFrameBuffer", MultiSampleFrameBuffer_default_);
|
|
116824
117688
|
/* harmony default export */ const Rendering_MultiSampleFrameBuffer = (MultiSampleFrameBuffer_default_);
|
|
116825
117689
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Rendering/X3DRenderingContext.js
|
|
116826
|
-
/* provided dependency */ var X3DRenderingContext_$ = __webpack_require__(
|
|
116827
|
-
/* provided dependency */ var ResizeSensor = __webpack_require__(
|
|
117690
|
+
/* provided dependency */ var X3DRenderingContext_$ = __webpack_require__(109);
|
|
117691
|
+
/* provided dependency */ var ResizeSensor = __webpack_require__(63);
|
|
116828
117692
|
/*******************************************************************************
|
|
116829
117693
|
*
|
|
116830
117694
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -119049,7 +119913,7 @@ const Components_default_ = Components;
|
|
|
119049
119913
|
x_ite_Namespace .set ("x_ite/Components", Components_default_);
|
|
119050
119914
|
/* harmony default export */ const x_ite_Components = ((/* unused pure expression or super */ null && (Components_default_)));
|
|
119051
119915
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/DOMIntegration.js
|
|
119052
|
-
/* provided dependency */ var DOMIntegration_$ = __webpack_require__(
|
|
119916
|
+
/* provided dependency */ var DOMIntegration_$ = __webpack_require__(109);
|
|
119053
119917
|
/*******************************************************************************
|
|
119054
119918
|
* MIT License
|
|
119055
119919
|
*
|
|
@@ -119187,15 +120051,17 @@ class DOMIntegration
|
|
|
119187
120051
|
|
|
119188
120052
|
processAttribute (mutation, element)
|
|
119189
120053
|
{
|
|
119190
|
-
const
|
|
120054
|
+
const
|
|
120055
|
+
parser = this .parser,
|
|
120056
|
+
node = DOMIntegration_$.data (element, "node");
|
|
119191
120057
|
|
|
119192
|
-
if (
|
|
120058
|
+
if (node)
|
|
119193
120059
|
{
|
|
119194
120060
|
const
|
|
119195
120061
|
attributeName = mutation .attributeName,
|
|
119196
120062
|
attribute = element .attributes .getNamedItem (attributeName);
|
|
119197
120063
|
|
|
119198
|
-
parser .nodeAttribute (attribute,
|
|
120064
|
+
parser .nodeAttribute (attribute, node);
|
|
119199
120065
|
}
|
|
119200
120066
|
else
|
|
119201
120067
|
{
|
|
@@ -119205,11 +120071,14 @@ class DOMIntegration
|
|
|
119205
120071
|
parentNode = element .parentNode,
|
|
119206
120072
|
node = DOMIntegration_$.data (parentNode, "node");
|
|
119207
120073
|
|
|
119208
|
-
|
|
119209
|
-
|
|
119210
|
-
|
|
119211
|
-
|
|
119212
|
-
|
|
120074
|
+
if (node)
|
|
120075
|
+
{
|
|
120076
|
+
parser .pushExecutionContext (node .getExecutionContext ());
|
|
120077
|
+
parser .pushParent (node);
|
|
120078
|
+
parser .childElement (element);
|
|
120079
|
+
parser .popParent ();
|
|
120080
|
+
parser .popExecutionContext ();
|
|
120081
|
+
}
|
|
119213
120082
|
}
|
|
119214
120083
|
}
|
|
119215
120084
|
|
|
@@ -119450,7 +120319,7 @@ const DOMIntegration_default_ = DOMIntegration;
|
|
|
119450
120319
|
x_ite_Namespace .set ("x_ite/Browser/DOMIntegration", DOMIntegration_default_);
|
|
119451
120320
|
/* harmony default export */ const Browser_DOMIntegration = (DOMIntegration_default_);
|
|
119452
120321
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/Legacy.js
|
|
119453
|
-
/* provided dependency */ var Legacy_$ = __webpack_require__(
|
|
120322
|
+
/* provided dependency */ var Legacy_$ = __webpack_require__(109);
|
|
119454
120323
|
/*******************************************************************************
|
|
119455
120324
|
*
|
|
119456
120325
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -119862,7 +120731,7 @@ SupportedComponents .add ("HAnim",
|
|
|
119862
120731
|
external: true,
|
|
119863
120732
|
});
|
|
119864
120733
|
|
|
119865
|
-
SupportedComponents .alias ("H-Anim", "HAnim");
|
|
120734
|
+
SupportedComponents .alias ("H-Anim", SupportedComponents .get ("HAnim"));
|
|
119866
120735
|
|
|
119867
120736
|
SupportedComponents .add ("Interpolation",
|
|
119868
120737
|
{
|
|
@@ -119950,7 +120819,7 @@ SupportedComponents .add ("TextureProjector",
|
|
|
119950
120819
|
external: true,
|
|
119951
120820
|
});
|
|
119952
120821
|
|
|
119953
|
-
SupportedComponents .alias ("ProjectiveTextureMapping", "TextureProjector");
|
|
120822
|
+
SupportedComponents .alias ("ProjectiveTextureMapping", SupportedComponents .get ("TextureProjector"));
|
|
119954
120823
|
|
|
119955
120824
|
SupportedComponents .add ("Rendering",
|
|
119956
120825
|
{
|
|
@@ -120281,7 +121150,7 @@ const SupportedProfiles_default_ = SupportedProfiles;
|
|
|
120281
121150
|
x_ite_Namespace .set ("x_ite/Configuration/SupportedProfiles", SupportedProfiles_default_);
|
|
120282
121151
|
/* harmony default export */ const Configuration_SupportedProfiles = (SupportedProfiles_default_);
|
|
120283
121152
|
;// CONCATENATED MODULE: ./src/x_ite/Browser/X3DBrowser.js
|
|
120284
|
-
/* provided dependency */ var X3DBrowser_$ = __webpack_require__(
|
|
121153
|
+
/* provided dependency */ var X3DBrowser_$ = __webpack_require__(109);
|
|
120285
121154
|
/*******************************************************************************
|
|
120286
121155
|
*
|
|
120287
121156
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -121405,8 +122274,8 @@ const MicroTime_default_ = undefined;
|
|
|
121405
122274
|
x_ite_Namespace .set ("standard/Time/MicroTime", MicroTime_default_);
|
|
121406
122275
|
/* harmony default export */ const MicroTime = ((/* unused pure expression or super */ null && (MicroTime_default_)));
|
|
121407
122276
|
;// CONCATENATED MODULE: ./src/lib/jquery.js
|
|
121408
|
-
/* provided dependency */ var jquery_$ = __webpack_require__(
|
|
121409
|
-
/* provided dependency */ var pako = __webpack_require__(
|
|
122277
|
+
/* provided dependency */ var jquery_$ = __webpack_require__(109);
|
|
122278
|
+
/* provided dependency */ var pako = __webpack_require__(166);
|
|
121410
122279
|
Object .assign (jquery_$,
|
|
121411
122280
|
{
|
|
121412
122281
|
decodeText (input)
|
|
@@ -121471,14 +122340,14 @@ const jquery_default_ = jquery_$;
|
|
|
121471
122340
|
x_ite_Namespace .set ("lib/jquery", jquery_default_);
|
|
121472
122341
|
/* harmony default export */ const jquery = ((/* unused pure expression or super */ null && (jquery_default_)));
|
|
121473
122342
|
;// CONCATENATED MODULE: ./src/lib/libtess.js
|
|
121474
|
-
/* provided dependency */ var libtess_libtess = __webpack_require__(
|
|
122343
|
+
/* provided dependency */ var libtess_libtess = __webpack_require__(207);
|
|
121475
122344
|
const libtess_default_ = libtess_libtess;
|
|
121476
122345
|
;
|
|
121477
122346
|
|
|
121478
122347
|
x_ite_Namespace .set ("lib/libtess", libtess_default_);
|
|
121479
122348
|
/* harmony default export */ const lib_libtess = ((/* unused pure expression or super */ null && (libtess_default_)));
|
|
121480
122349
|
;// CONCATENATED MODULE: ./src/x_ite/X3D.js
|
|
121481
|
-
/* provided dependency */ var X3D_$ = __webpack_require__(
|
|
122350
|
+
/* provided dependency */ var X3D_$ = __webpack_require__(109);
|
|
121482
122351
|
/*******************************************************************************
|
|
121483
122352
|
*
|
|
121484
122353
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -121735,7 +122604,7 @@ const X3D_default_ = X3D;
|
|
|
121735
122604
|
x_ite_Namespace .set ("x_ite/X3D", X3D_default_);
|
|
121736
122605
|
/* harmony default export */ const x_ite_X3D = (X3D_default_);
|
|
121737
122606
|
;// CONCATENATED MODULE: ./src/x_ite/X3DCanvasElement.js
|
|
121738
|
-
/* provided dependency */ var X3DCanvasElement_$ = __webpack_require__(
|
|
122607
|
+
/* provided dependency */ var X3DCanvasElement_$ = __webpack_require__(109);
|
|
121739
122608
|
/*******************************************************************************
|
|
121740
122609
|
*
|
|
121741
122610
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
@@ -122004,7 +122873,7 @@ x_ite_Namespace .set ("shim", shim_default_);
|
|
|
122004
122873
|
|
|
122005
122874
|
// Assign X3D to global namespace.
|
|
122006
122875
|
|
|
122007
|
-
window [Symbol .for ("X_ITE.X3D-8.
|
|
122876
|
+
window [Symbol .for ("X_ITE.X3D-8.9.0")] = x_ite_X3D;
|
|
122008
122877
|
|
|
122009
122878
|
customElements .define ("x3d-canvas", x_ite_X3DCanvasElement);
|
|
122010
122879
|
|