x_ite 10.0.2 → 10.0.3

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.
Files changed (50) hide show
  1. package/README.md +5 -5
  2. package/dist/X3DUOM.xml +1095 -0
  3. package/dist/assets/components/Annotation.js +13 -13
  4. package/dist/assets/components/Annotation.min.js +1 -1
  5. package/dist/assets/components/CADGeometry.js +14 -14
  6. package/dist/assets/components/CADGeometry.min.js +1 -1
  7. package/dist/assets/components/CubeMapTexturing.js +25 -25
  8. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  9. package/dist/assets/components/DIS.js +37 -13
  10. package/dist/assets/components/DIS.min.js +1 -1
  11. package/dist/assets/components/EventUtilities.js +9 -9
  12. package/dist/assets/components/EventUtilities.min.js +1 -1
  13. package/dist/assets/components/Geometry2D.js +18 -18
  14. package/dist/assets/components/Geometry2D.min.js +1 -1
  15. package/dist/assets/components/Geospatial.js +33 -33
  16. package/dist/assets/components/Geospatial.min.js +1 -1
  17. package/dist/assets/components/HAnim.js +30 -24
  18. package/dist/assets/components/HAnim.min.js +1 -1
  19. package/dist/assets/components/KeyDeviceSensor.js +8 -8
  20. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  21. package/dist/assets/components/Layout.js +27 -27
  22. package/dist/assets/components/Layout.min.js +1 -1
  23. package/dist/assets/components/NURBS.js +23 -23
  24. package/dist/assets/components/NURBS.min.js +1 -1
  25. package/dist/assets/components/ParticleSystems.js +26 -26
  26. package/dist/assets/components/ParticleSystems.min.js +1 -1
  27. package/dist/assets/components/Picking.js +18 -18
  28. package/dist/assets/components/Picking.min.js +1 -1
  29. package/dist/assets/components/RigidBodyPhysics.js +25 -17
  30. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  31. package/dist/assets/components/Scripting.js +38 -38
  32. package/dist/assets/components/Scripting.min.js +1 -1
  33. package/dist/assets/components/Text.js +24 -24
  34. package/dist/assets/components/Text.min.js +1 -1
  35. package/dist/assets/components/TextureProjection.js +15 -15
  36. package/dist/assets/components/TextureProjection.min.js +1 -1
  37. package/dist/assets/components/Texturing3D.js +31 -27
  38. package/dist/assets/components/Texturing3D.min.js +1 -1
  39. package/dist/assets/components/VolumeRendering.js +19 -19
  40. package/dist/assets/components/VolumeRendering.min.js +1 -1
  41. package/dist/assets/components/X_ITE.js +75 -19
  42. package/dist/assets/components/X_ITE.min.js +1 -1
  43. package/dist/x_ite.css +1 -1
  44. package/dist/x_ite.d.ts +80 -14
  45. package/dist/x_ite.js +255 -208
  46. package/dist/x_ite.min.js +1 -1
  47. package/dist/x_ite.min.mjs +1 -1
  48. package/dist/x_ite.mjs +255 -208
  49. package/dist/x_ite.zip +0 -0
  50. package/package.json +3 -2
package/dist/x_ite.d.ts CHANGED
@@ -1169,6 +1169,7 @@ interface X3DConstants
1169
1169
  readonly EdgeEnhancementVolumeStyle: number;
1170
1170
  readonly ElevationGrid: number;
1171
1171
  readonly EmissiveStrengthMaterialExtension: number;
1172
+ readonly EnvironmentLight: number;
1172
1173
  readonly EspduTransform: number;
1173
1174
  readonly ExplosionEmitter: number;
1174
1175
  readonly Extrusion: number;
@@ -1357,7 +1358,6 @@ interface X3DConstants
1357
1358
  readonly TwoSidedMaterial: number;
1358
1359
  readonly UniversalJoint: number;
1359
1360
  readonly UnlitMaterial: number;
1360
- readonly UnlitMaterialExtension: number;
1361
1361
  readonly Viewpoint: number;
1362
1362
  readonly ViewpointGroup: number;
1363
1363
  readonly Viewport: number;
@@ -6284,7 +6284,7 @@ interface DepthModeProxy extends X3DAppearanceChildNodeProxy
6284
6284
  */
6285
6285
  depthMask: boolean;
6286
6286
  /**
6287
- * Specifies the depth range mapping from normalized device coordinates to window or viewport coordinates.The first value is *zNear*, a GLclampf specifying the mapping of the near clipping plane to window or viewport coordinates. Clamped to the range 0 to 1 and must be less than or equal to zFar. The default value is 0.The second value is *zFar*, a GLclampf specifying the mapping of the far clipping plane to window or viewport coordinates. Clamped to the range 0 to 1. The default value is 1.
6287
+ * Specifies the depth range mapping from normalized device coordinates to window or viewport coordinates.The first value is *zNear*, a GLclampf specifying the mapping of the near clipping plane to window or viewport coordinates. Clamped to the range 0 to 1 and must be less than or equal to zFar. The default value is 0. The second value is *zFar*, a GLclampf specifying the mapping of the far clipping plane to window or viewport coordinates. Clamped to the range 0 to 1. The default value is 1.
6288
6288
  *
6289
6289
  * This field is of access type 'inputOutput' and type SFVec2f.
6290
6290
  */
@@ -7034,6 +7034,83 @@ interface EmissiveStrengthMaterialExtensionProxy extends X3DMaterialExtensionNod
7034
7034
  metadata: SFNode | null;
7035
7035
  }
7036
7036
 
7037
+ /** EnvironmentLight ... This node only affects PhysicalMaterial nodes and SpecularGlossinessMaterial nodes. */
7038
+ interface EnvironmentLightProxy extends X3DLightNodeProxy
7039
+ {
7040
+ /**
7041
+ * Brightness of ambient (nondirectional background) emission from the light. Interchange profile
7042
+ *
7043
+ * This field is of access type 'inputOutput' and type SFFloat.
7044
+ */
7045
+ ambientIntensity: number;
7046
+ /**
7047
+ * *color* of light, applied to colors of objects.
7048
+ *
7049
+ * This field is of access type 'inputOutput' and type SFColor.
7050
+ */
7051
+ color: SFColor;
7052
+ /**
7053
+ * Input/Output field *diffuseCoefficients*.
7054
+ *
7055
+ * This field is of access type 'inputOutput' and type MFFloat.
7056
+ */
7057
+ diffuseCoefficients: MFFloat;
7058
+ /**
7059
+ * Input/Output field *diffuseTexture*.
7060
+ *
7061
+ * This field is of access type 'inputOutput' and type SFNode.
7062
+ */
7063
+ diffuseTexture: SFNode | null;
7064
+ /**
7065
+ * Global lights illuminate all objects within their volume of lighting influence. Scoped lights only illuminate objects within the same transformation hierarchy.
7066
+ *
7067
+ * This field is of access type 'inputOutput' and type SFBool.
7068
+ */
7069
+ global: boolean;
7070
+ /**
7071
+ * Brightness of direct emission from the light.
7072
+ *
7073
+ * This field is of access type 'inputOutput' and type SFFloat.
7074
+ */
7075
+ intensity: number;
7076
+ /**
7077
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
7078
+ *
7079
+ * This field is of access type 'inputOutput' and type SFNode.
7080
+ */
7081
+ metadata: SFNode | null;
7082
+ /**
7083
+ * Enables/disables this light source.
7084
+ *
7085
+ * This field is of access type 'inputOutput' and type SFBool.
7086
+ */
7087
+ on: boolean;
7088
+ /**
7089
+ * Input/Output field *rotation*.
7090
+ *
7091
+ * This field is of access type 'inputOutput' and type SFRotation.
7092
+ */
7093
+ rotation: SFRotation;
7094
+ /**
7095
+ * *shadowIntensity* field defines how much light is obscured by shapes that cast shadows, ranging from 0 (light not obscured, no visible shadows) to 1 (light completely obscured, full-intensity shadows).
7096
+ *
7097
+ * This field is of access type 'inputOutput' and type SFFloat.
7098
+ */
7099
+ shadowIntensity: number;
7100
+ /**
7101
+ * *shadows* field indicates whether or not this light casts a shadow behind illuminated X3DShapeNode geometry.
7102
+ *
7103
+ * This field is of access type 'inputOutput' and type SFBool.
7104
+ */
7105
+ shadows: boolean;
7106
+ /**
7107
+ * Input/Output field *specularTexture*.
7108
+ *
7109
+ * This field is of access type 'inputOutput' and type SFNode.
7110
+ */
7111
+ specularTexture: SFNode | null;
7112
+ }
7113
+
7037
7114
  /** EspduTransform is a networked Transform node that can contain most nodes. */
7038
7115
  interface EspduTransformProxy extends X3DGroupingNodeProxy, X3DNetworkSensorNodeProxy
7039
7116
  {
@@ -19732,17 +19809,6 @@ interface UnlitMaterialProxy extends X3DOneSidedMaterialNodeProxy
19732
19809
  transparency: number;
19733
19810
  }
19734
19811
 
19735
- /** UnlitMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
19736
- interface UnlitMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
19737
- {
19738
- /**
19739
- * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
19740
- *
19741
- * This field is of access type 'inputOutput' and type SFNode.
19742
- */
19743
- metadata: SFNode | null;
19744
- }
19745
-
19746
19812
  /** Viewpoint provides a specific location and direction where the user may view the scene. */
19747
19813
  interface ViewpointProxy extends X3DViewpointNodeProxy
19748
19814
  {
@@ -22183,6 +22249,7 @@ type ConcreteNodeTypes = {
22183
22249
  EdgeEnhancementVolumeStyle: EdgeEnhancementVolumeStyleProxy,
22184
22250
  ElevationGrid: ElevationGridProxy,
22185
22251
  EmissiveStrengthMaterialExtension: EmissiveStrengthMaterialExtensionProxy,
22252
+ EnvironmentLight: EnvironmentLightProxy,
22186
22253
  EspduTransform: EspduTransformProxy,
22187
22254
  ExplosionEmitter: ExplosionEmitterProxy,
22188
22255
  Extrusion: ExtrusionProxy,
@@ -22371,7 +22438,6 @@ type ConcreteNodeTypes = {
22371
22438
  TwoSidedMaterial: TwoSidedMaterialProxy,
22372
22439
  UniversalJoint: UniversalJointProxy,
22373
22440
  UnlitMaterial: UnlitMaterialProxy,
22374
- UnlitMaterialExtension: UnlitMaterialExtensionProxy,
22375
22441
  Viewpoint: ViewpointProxy,
22376
22442
  ViewpointGroup: ViewpointGroupProxy,
22377
22443
  Viewport: ViewportProxy,