x_ite 8.8.7 → 8.9.1

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 (352) hide show
  1. package/Makefile +6 -0
  2. package/README.md +3 -7
  3. package/build/docs/nodes.pl +434 -0
  4. package/dist/assets/components/Annotation.js +13 -13
  5. package/dist/assets/components/Annotation.min.js +1 -1
  6. package/dist/assets/components/CADGeometry.js +13 -13
  7. package/dist/assets/components/CADGeometry.min.js +1 -1
  8. package/dist/assets/components/CubeMapTexturing.js +26 -26
  9. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  10. package/dist/assets/components/DIS.js +14 -14
  11. package/dist/assets/components/DIS.min.js +1 -1
  12. package/dist/assets/components/EventUtilities.js +9 -9
  13. package/dist/assets/components/EventUtilities.min.js +1 -1
  14. package/dist/assets/components/Geometry2D.js +19 -19
  15. package/dist/assets/components/Geometry2D.min.js +1 -1
  16. package/dist/assets/components/Geospatial.js +33 -33
  17. package/dist/assets/components/Geospatial.min.js +1 -1
  18. package/dist/assets/components/HAnim.js +129 -90
  19. package/dist/assets/components/HAnim.min.js +1 -1
  20. package/dist/assets/components/KeyDeviceSensor.js +8 -8
  21. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  22. package/dist/assets/components/Layout.js +27 -27
  23. package/dist/assets/components/Layout.min.js +1 -1
  24. package/dist/assets/components/NURBS.js +24 -24
  25. package/dist/assets/components/NURBS.min.js +1 -1
  26. package/dist/assets/components/ParticleSystems.js +24 -24
  27. package/dist/assets/components/ParticleSystems.min.js +1 -1
  28. package/dist/assets/components/Picking.js +18 -18
  29. package/dist/assets/components/Picking.min.js +1 -1
  30. package/dist/assets/components/RigidBodyPhysics.js +18 -18
  31. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  32. package/dist/assets/components/Scripting.js +37 -37
  33. package/dist/assets/components/Scripting.min.js +1 -1
  34. package/dist/assets/components/Text.js +24 -24
  35. package/dist/assets/components/Text.min.js +1 -1
  36. package/dist/assets/components/TextureProjector.js +14 -14
  37. package/dist/assets/components/TextureProjector.min.js +1 -1
  38. package/dist/assets/components/Texturing3D.js +30 -30
  39. package/dist/assets/components/Texturing3D.min.js +1 -1
  40. package/dist/assets/components/VolumeRendering.js +18 -18
  41. package/dist/assets/components/VolumeRendering.min.js +1 -1
  42. package/dist/assets/components/X_ITE.js +9 -9
  43. package/dist/assets/components/X_ITE.min.js +1 -1
  44. package/dist/x_ite.css +1 -1
  45. package/dist/x_ite.js +1320 -166
  46. package/dist/x_ite.min.js +1 -1
  47. package/dist/x_ite.zip +0 -0
  48. package/docs/_config.yml +2 -2
  49. package/docs/_posts/components/CADGeometry/CADAssembly.md +45 -19
  50. package/docs/_posts/components/CADGeometry/CADFace.md +44 -18
  51. package/docs/_posts/components/CADGeometry/CADLayer.md +48 -19
  52. package/docs/_posts/components/CADGeometry/CADPart.md +54 -24
  53. package/docs/_posts/components/CADGeometry/IndexedQuadSet.md +55 -26
  54. package/docs/_posts/components/CADGeometry/QuadSet.md +52 -20
  55. package/docs/_posts/components/Core/MetadataBoolean.md +29 -18
  56. package/docs/_posts/components/Core/MetadataDouble.md +31 -16
  57. package/docs/_posts/components/Core/MetadataFloat.md +31 -16
  58. package/docs/_posts/components/Core/MetadataInteger.md +31 -16
  59. package/docs/_posts/components/Core/MetadataSet.md +30 -15
  60. package/docs/_posts/components/Core/MetadataString.md +31 -16
  61. package/docs/_posts/components/Core/WorldInfo.md +21 -10
  62. package/docs/_posts/components/CubeMapTexturing/ComposedCubeMapTexture.md +30 -25
  63. package/docs/_posts/components/CubeMapTexturing/GeneratedCubeMapTexture.md +19 -10
  64. package/docs/_posts/components/CubeMapTexturing/ImageCubeMapTexture.md +22 -18
  65. package/docs/_posts/components/DIS/DISEntityManager.md +40 -15
  66. package/docs/_posts/components/DIS/DISEntityTypeMapping.md +34 -25
  67. package/docs/_posts/components/DIS/EspduTransform.md +174 -41
  68. package/docs/_posts/components/DIS/ReceiverPdu.md +77 -27
  69. package/docs/_posts/components/DIS/SignalPdu.md +82 -28
  70. package/docs/_posts/components/DIS/TransmitterPdu.md +86 -36
  71. package/docs/_posts/components/EnvironmentalEffects/Background.md +80 -39
  72. package/docs/_posts/components/EnvironmentalEffects/Fog.md +39 -18
  73. package/docs/_posts/components/EnvironmentalEffects/FogCoordinate.md +10 -6
  74. package/docs/_posts/components/EnvironmentalEffects/LocalFog.md +21 -14
  75. package/docs/_posts/components/EnvironmentalEffects/TextureBackground.md +83 -31
  76. package/docs/_posts/components/EnvironmentalSensor/ProximitySensor.md +36 -8
  77. package/docs/_posts/components/EnvironmentalSensor/TransformSensor.md +31 -7
  78. package/docs/_posts/components/EnvironmentalSensor/VisibilitySensor.md +23 -7
  79. package/docs/_posts/components/EventUtilities/BooleanFilter.md +23 -10
  80. package/docs/_posts/components/EventUtilities/BooleanSequencer.md +46 -17
  81. package/docs/_posts/components/EventUtilities/BooleanToggle.md +29 -8
  82. package/docs/_posts/components/EventUtilities/BooleanTrigger.md +24 -7
  83. package/docs/_posts/components/EventUtilities/IntegerSequencer.md +46 -17
  84. package/docs/_posts/components/EventUtilities/IntegerTrigger.md +34 -9
  85. package/docs/_posts/components/EventUtilities/TimeTrigger.md +30 -9
  86. package/docs/_posts/components/Followers/ColorChaser.md +35 -11
  87. package/docs/_posts/components/Followers/ColorDamper.md +32 -12
  88. package/docs/_posts/components/Followers/CoordinateChaser.md +33 -9
  89. package/docs/_posts/components/Followers/CoordinateDamper.md +30 -10
  90. package/docs/_posts/components/Followers/OrientationChaser.md +34 -10
  91. package/docs/_posts/components/Followers/OrientationDamper.md +31 -11
  92. package/docs/_posts/components/Followers/PositionChaser.md +33 -9
  93. package/docs/_posts/components/Followers/PositionChaser2D.md +33 -9
  94. package/docs/_posts/components/Followers/PositionDamper.md +30 -10
  95. package/docs/_posts/components/Followers/PositionDamper2D.md +30 -10
  96. package/docs/_posts/components/Followers/ScalarChaser.md +33 -9
  97. package/docs/_posts/components/Followers/ScalarDamper.md +30 -10
  98. package/docs/_posts/components/Followers/TexCoordChaser2D.md +33 -9
  99. package/docs/_posts/components/Followers/TexCoordDamper2D.md +30 -10
  100. package/docs/_posts/components/Geometry2D/Arc2D.md +39 -14
  101. package/docs/_posts/components/Geometry2D/ArcClose2D.md +43 -19
  102. package/docs/_posts/components/Geometry2D/Circle2D.md +21 -10
  103. package/docs/_posts/components/Geometry2D/Disk2D.md +32 -14
  104. package/docs/_posts/components/Geometry2D/Polyline2D.md +24 -9
  105. package/docs/_posts/components/Geometry2D/Polypoint2D.md +16 -8
  106. package/docs/_posts/components/Geometry2D/Rectangle2D.md +23 -12
  107. package/docs/_posts/components/Geometry2D/TriangleSet2D.md +23 -12
  108. package/docs/_posts/components/Geometry3D/Box.md +26 -13
  109. package/docs/_posts/components/Geometry3D/Cone.md +30 -22
  110. package/docs/_posts/components/Geometry3D/Cylinder.md +30 -26
  111. package/docs/_posts/components/Geometry3D/ElevationGrid.md +73 -29
  112. package/docs/_posts/components/Geometry3D/Extrusion.md +100 -48
  113. package/docs/_posts/components/Geometry3D/IndexedFaceSet.md +92 -38
  114. package/docs/_posts/components/Geometry3D/Sphere.md +25 -13
  115. package/docs/_posts/components/Geospatial/GeoCoordinate.md +30 -14
  116. package/docs/_posts/components/Geospatial/GeoElevationGrid.md +82 -37
  117. package/docs/_posts/components/Geospatial/GeoLOD.md +66 -27
  118. package/docs/_posts/components/Geospatial/GeoLocation.md +64 -26
  119. package/docs/_posts/components/Geospatial/GeoMetadata.md +28 -22
  120. package/docs/_posts/components/Geospatial/GeoOrigin.md +34 -19
  121. package/docs/_posts/components/Geospatial/GeoPositionInterpolator.md +64 -18
  122. package/docs/_posts/components/Geospatial/GeoProximitySensor.md +67 -18
  123. package/docs/_posts/components/Geospatial/GeoTouchSensor.md +63 -18
  124. package/docs/_posts/components/Geospatial/GeoTransform.md +72 -28
  125. package/docs/_posts/components/Geospatial/GeoViewpoint.md +79 -40
  126. package/docs/_posts/components/Grouping/Group.md +32 -16
  127. package/docs/_posts/components/Grouping/StaticGroup.md +37 -16
  128. package/docs/_posts/components/Grouping/Switch.md +39 -20
  129. package/docs/_posts/components/Grouping/Transform.md +45 -28
  130. package/docs/_posts/components/HAnim/HAnimDisplacer.md +38 -27
  131. package/docs/_posts/components/HAnim/HAnimHumanoid.md +215 -56
  132. package/docs/_posts/components/HAnim/HAnimJoint.md +104 -38
  133. package/docs/_posts/components/HAnim/HAnimMotion.md +120 -10
  134. package/docs/_posts/components/HAnim/HAnimSegment.md +72 -32
  135. package/docs/_posts/components/HAnim/HAnimSite.md +75 -32
  136. package/docs/_posts/components/Interpolation/ColorInterpolator.md +41 -11
  137. package/docs/_posts/components/Interpolation/CoordinateInterpolator.md +39 -13
  138. package/docs/_posts/components/Interpolation/CoordinateInterpolator2D.md +43 -14
  139. package/docs/_posts/components/Interpolation/EaseInEaseOut.md +36 -12
  140. package/docs/_posts/components/Interpolation/NormalInterpolator.md +40 -10
  141. package/docs/_posts/components/Interpolation/OrientationInterpolator.md +40 -10
  142. package/docs/_posts/components/Interpolation/PositionInterpolator.md +40 -10
  143. package/docs/_posts/components/Interpolation/PositionInterpolator2D.md +43 -14
  144. package/docs/_posts/components/Interpolation/ScalarInterpolator.md +39 -13
  145. package/docs/_posts/components/Interpolation/SplinePositionInterpolator.md +41 -16
  146. package/docs/_posts/components/Interpolation/SplinePositionInterpolator2D.md +41 -16
  147. package/docs/_posts/components/Interpolation/SplineScalarInterpolator.md +40 -24
  148. package/docs/_posts/components/Interpolation/SquadOrientationInterpolator.md +35 -11
  149. package/docs/_posts/components/KeyDeviceSensor/KeySensor.md +51 -9
  150. package/docs/_posts/components/KeyDeviceSensor/StringSensor.md +31 -9
  151. package/docs/_posts/components/Layering/Layer.md +27 -14
  152. package/docs/_posts/components/Layering/LayerSet.md +19 -13
  153. package/docs/_posts/components/Layering/Viewport.md +31 -15
  154. package/docs/_posts/components/Layout/Layout.md +27 -16
  155. package/docs/_posts/components/Layout/LayoutGroup.md +34 -18
  156. package/docs/_posts/components/Layout/LayoutLayer.md +28 -15
  157. package/docs/_posts/components/Layout/ScreenFontStyle.md +72 -45
  158. package/docs/_posts/components/Layout/ScreenGroup.md +32 -16
  159. package/docs/_posts/components/Lighting/DirectionalLight.md +19 -11
  160. package/docs/_posts/components/Lighting/EnvironmentLight.md +2 -6
  161. package/docs/_posts/components/Lighting/PointLight.md +23 -11
  162. package/docs/_posts/components/Lighting/SpotLight.md +32 -19
  163. package/docs/_posts/components/NURBS/Contour2D.md +17 -9
  164. package/docs/_posts/components/NURBS/ContourPolyline2D.md +10 -6
  165. package/docs/_posts/components/NURBS/CoordinateDouble.md +13 -9
  166. package/docs/_posts/components/NURBS/NurbsCurve.md +15 -11
  167. package/docs/_posts/components/NURBS/NurbsCurve2D.md +14 -10
  168. package/docs/_posts/components/NURBS/NurbsOrientationInterpolator.md +28 -12
  169. package/docs/_posts/components/NURBS/NurbsPatchSurface.md +19 -13
  170. package/docs/_posts/components/NURBS/NurbsPositionInterpolator.md +27 -11
  171. package/docs/_posts/components/NURBS/NurbsSet.md +48 -14
  172. package/docs/_posts/components/NURBS/NurbsSurfaceInterpolator.md +31 -11
  173. package/docs/_posts/components/NURBS/NurbsSweptSurface.md +31 -14
  174. package/docs/_posts/components/NURBS/NurbsSwungSurface.md +25 -14
  175. package/docs/_posts/components/NURBS/NurbsTextureCoordinate.md +11 -7
  176. package/docs/_posts/components/NURBS/NurbsTrimmedSurface.md +26 -16
  177. package/docs/_posts/components/Navigation/Billboard.md +33 -17
  178. package/docs/_posts/components/Navigation/Collision.md +59 -22
  179. package/docs/_posts/components/Navigation/LOD.md +53 -23
  180. package/docs/_posts/components/Navigation/NavigationInfo.md +68 -25
  181. package/docs/_posts/components/Navigation/OrthoViewpoint.md +80 -37
  182. package/docs/_posts/components/Navigation/Viewpoint.md +86 -39
  183. package/docs/_posts/components/Navigation/ViewpointGroup.md +28 -17
  184. package/docs/_posts/components/Networking/Anchor.md +54 -56
  185. package/docs/_posts/components/Networking/Inline.md +42 -29
  186. package/docs/_posts/components/Networking/LoadSensor.md +41 -9
  187. package/docs/_posts/components/ParticleSystems/BoundedPhysicsModel.md +16 -8
  188. package/docs/_posts/components/ParticleSystems/ConeEmitter.md +25 -10
  189. package/docs/_posts/components/ParticleSystems/ExplosionEmitter.md +18 -11
  190. package/docs/_posts/components/ParticleSystems/ForcePhysicsModel.md +15 -8
  191. package/docs/_posts/components/ParticleSystems/ParticleSystem.md +92 -46
  192. package/docs/_posts/components/ParticleSystems/PointEmitter.md +19 -12
  193. package/docs/_posts/components/ParticleSystems/PolylineEmitter.md +23 -15
  194. package/docs/_posts/components/ParticleSystems/SurfaceEmitter.md +21 -14
  195. package/docs/_posts/components/ParticleSystems/VolumeEmitter.md +25 -18
  196. package/docs/_posts/components/ParticleSystems/WindPhysicsModel.md +11 -7
  197. package/docs/_posts/components/Picking/LinePickSensor.md +37 -15
  198. package/docs/_posts/components/Picking/PickableGroup.md +40 -22
  199. package/docs/_posts/components/Picking/PointPickSensor.md +29 -12
  200. package/docs/_posts/components/Picking/PrimitivePickSensor.md +25 -17
  201. package/docs/_posts/components/Picking/VolumePickSensor.md +25 -12
  202. package/docs/_posts/components/PointingDeviceSensor/CylinderSensor.md +43 -18
  203. package/docs/_posts/components/PointingDeviceSensor/PlaneSensor.md +40 -17
  204. package/docs/_posts/components/PointingDeviceSensor/SphereSensor.md +35 -13
  205. package/docs/_posts/components/PointingDeviceSensor/TouchSensor.md +48 -14
  206. package/docs/_posts/components/Rendering/ClipPlane.md +20 -15
  207. package/docs/_posts/components/Rendering/Color.md +14 -14
  208. package/docs/_posts/components/Rendering/ColorRGBA.md +13 -9
  209. package/docs/_posts/components/Rendering/Coordinate.md +11 -7
  210. package/docs/_posts/components/Rendering/IndexedLineSet.md +58 -24
  211. package/docs/_posts/components/Rendering/IndexedTriangleFanSet.md +44 -23
  212. package/docs/_posts/components/Rendering/IndexedTriangleSet.md +45 -24
  213. package/docs/_posts/components/Rendering/IndexedTriangleStripSet.md +45 -20
  214. package/docs/_posts/components/Rendering/LineSet.md +26 -14
  215. package/docs/_posts/components/Rendering/Normal.md +28 -6
  216. package/docs/_posts/components/Rendering/PointSet.md +24 -11
  217. package/docs/_posts/components/Rendering/TriangleFanSet.md +44 -19
  218. package/docs/_posts/components/Rendering/TriangleSet.md +44 -19
  219. package/docs/_posts/components/Rendering/TriangleStripSet.md +45 -20
  220. package/docs/_posts/components/RigidBodyPhysics/BallJoint.md +22 -10
  221. package/docs/_posts/components/RigidBodyPhysics/CollidableOffset.md +37 -14
  222. package/docs/_posts/components/RigidBodyPhysics/CollidableShape.md +34 -16
  223. package/docs/_posts/components/RigidBodyPhysics/CollisionCollection.md +17 -12
  224. package/docs/_posts/components/RigidBodyPhysics/CollisionSensor.md +21 -12
  225. package/docs/_posts/components/RigidBodyPhysics/CollisionSpace.md +31 -12
  226. package/docs/_posts/components/RigidBodyPhysics/Contact.md +19 -15
  227. package/docs/_posts/components/RigidBodyPhysics/DoubleAxisHingeJoint.md +33 -27
  228. package/docs/_posts/components/RigidBodyPhysics/MotorJoint.md +63 -11
  229. package/docs/_posts/components/RigidBodyPhysics/RigidBody.md +22 -12
  230. package/docs/_posts/components/RigidBodyPhysics/RigidBodyCollection.md +30 -14
  231. package/docs/_posts/components/RigidBodyPhysics/SingleAxisHingeJoint.md +26 -14
  232. package/docs/_posts/components/RigidBodyPhysics/SliderJoint.md +24 -12
  233. package/docs/_posts/components/RigidBodyPhysics/UniversalJoint.md +23 -15
  234. package/docs/_posts/components/Scripting/Script.md +43 -27
  235. package/docs/_posts/components/Shaders/ComposedShader.md +30 -17
  236. package/docs/_posts/components/Shaders/FloatVertexAttribute.md +18 -9
  237. package/docs/_posts/components/Shaders/Matrix3VertexAttribute.md +17 -8
  238. package/docs/_posts/components/Shaders/Matrix4VertexAttribute.md +17 -8
  239. package/docs/_posts/components/Shaders/PackagedShader.md +36 -30
  240. package/docs/_posts/components/Shaders/ProgramShader.md +35 -15
  241. package/docs/_posts/components/Shaders/ShaderPart.md +27 -18
  242. package/docs/_posts/components/Shaders/ShaderProgram.md +28 -17
  243. package/docs/_posts/components/Shape/AcousticProperties.md +34 -6
  244. package/docs/_posts/components/Shape/Appearance.md +29 -22
  245. package/docs/_posts/components/Shape/FillProperties.md +19 -12
  246. package/docs/_posts/components/Shape/LineProperties.md +18 -10
  247. package/docs/_posts/components/Shape/Material.md +64 -38
  248. package/docs/_posts/components/Shape/PhysicalMaterial.md +49 -25
  249. package/docs/_posts/components/Shape/PointProperties.md +21 -14
  250. package/docs/_posts/components/Shape/Shape.md +35 -17
  251. package/docs/_posts/components/Shape/TwoSidedMaterial.md +35 -36
  252. package/docs/_posts/components/Shape/UnlitMaterial.md +29 -17
  253. package/docs/_posts/components/Sound/Analyser.md +133 -4
  254. package/docs/_posts/components/Sound/AudioClip.md +64 -30
  255. package/docs/_posts/components/Sound/AudioDestination.md +76 -4
  256. package/docs/_posts/components/Sound/BiquadFilter.md +143 -4
  257. package/docs/_posts/components/Sound/BufferAudioSource.md +165 -13
  258. package/docs/_posts/components/Sound/ChannelMerger.md +62 -4
  259. package/docs/_posts/components/Sound/ChannelSelector.md +64 -4
  260. package/docs/_posts/components/Sound/ChannelSplitter.md +68 -4
  261. package/docs/_posts/components/Sound/Convolver.md +124 -4
  262. package/docs/_posts/components/Sound/Delay.md +119 -4
  263. package/docs/_posts/components/Sound/DynamicsCompressor.md +127 -4
  264. package/docs/_posts/components/Sound/Gain.md +115 -4
  265. package/docs/_posts/components/Sound/ListenerPointSource.md +109 -4
  266. package/docs/_posts/components/Sound/MicrophoneSource.md +91 -4
  267. package/docs/_posts/components/Sound/OscillatorSource.md +95 -4
  268. package/docs/_posts/components/Sound/PeriodicWave.md +43 -5
  269. package/docs/_posts/components/Sound/Sound.md +53 -20
  270. package/docs/_posts/components/Sound/SpatialSound.md +120 -4
  271. package/docs/_posts/components/Sound/StreamAudioDestination.md +80 -4
  272. package/docs/_posts/components/Sound/StreamAudioSource.md +91 -4
  273. package/docs/_posts/components/Sound/WaveShaper.md +123 -4
  274. package/docs/_posts/components/Text/FontStyle.md +73 -47
  275. package/docs/_posts/components/Text/Text.md +48 -26
  276. package/docs/_posts/components/TextureProjector/TextureProjector.md +55 -6
  277. package/docs/_posts/components/TextureProjector/TextureProjectorParallel.md +56 -6
  278. package/docs/_posts/components/Texturing/ImageTexture.md +28 -20
  279. package/docs/_posts/components/Texturing/MovieTexture.md +69 -38
  280. package/docs/_posts/components/Texturing/MultiTexture.md +47 -19
  281. package/docs/_posts/components/Texturing/MultiTextureCoordinate.md +27 -10
  282. package/docs/_posts/components/Texturing/MultiTextureTransform.md +32 -10
  283. package/docs/_posts/components/Texturing/PixelTexture.md +34 -14
  284. package/docs/_posts/components/Texturing/TextureCoordinate.md +20 -10
  285. package/docs/_posts/components/Texturing/TextureCoordinateGenerator.md +22 -12
  286. package/docs/_posts/components/Texturing/TextureProperties.md +44 -19
  287. package/docs/_posts/components/Texturing/TextureTransform.md +17 -8
  288. package/docs/_posts/components/Texturing3D/ComposedTexture3D.md +21 -13
  289. package/docs/_posts/components/Texturing3D/ImageTexture3D.md +32 -23
  290. package/docs/_posts/components/Texturing3D/ImageTextureAtlas.md +22 -16
  291. package/docs/_posts/components/Texturing3D/PixelTexture3D.md +25 -13
  292. package/docs/_posts/components/Texturing3D/TextureCoordinate3D.md +22 -10
  293. package/docs/_posts/components/Texturing3D/TextureCoordinate4D.md +21 -9
  294. package/docs/_posts/components/Texturing3D/TextureTransform3D.md +17 -8
  295. package/docs/_posts/components/Texturing3D/TextureTransformMatrix3D.md +20 -10
  296. package/docs/_posts/components/Time/TimeSensor.md +66 -23
  297. package/docs/_posts/components/VolumeRendering/BlendedVolumeStyle.md +36 -15
  298. package/docs/_posts/components/VolumeRendering/BoundaryEnhancementVolumeStyle.md +15 -5
  299. package/docs/_posts/components/VolumeRendering/CartoonVolumeStyle.md +20 -17
  300. package/docs/_posts/components/VolumeRendering/ComposedVolumeStyle.md +15 -7
  301. package/docs/_posts/components/VolumeRendering/EdgeEnhancementVolumeStyle.md +16 -8
  302. package/docs/_posts/components/VolumeRendering/IsoSurfaceVolumeData.md +43 -21
  303. package/docs/_posts/components/VolumeRendering/OpacityMapVolumeStyle.md +16 -8
  304. package/docs/_posts/components/VolumeRendering/ProjectionVolumeStyle.md +17 -7
  305. package/docs/_posts/components/VolumeRendering/SegmentedVolumeData.md +50 -17
  306. package/docs/_posts/components/VolumeRendering/ShadedVolumeStyle.md +18 -10
  307. package/docs/_posts/components/VolumeRendering/SilhouetteEnhancementVolumeStyle.md +16 -8
  308. package/docs/_posts/components/VolumeRendering/ToneMappedVolumeStyle.md +20 -11
  309. package/docs/_posts/components/VolumeRendering/VolumeData.md +32 -15
  310. package/docs/_posts/components/X_ITE/BlendMode.md +9 -2
  311. package/docs/_posts/getting-started.md +4 -7
  312. package/docs/_posts/laboratory/x3d-file-converter.md +1 -1
  313. package/docs/laboratory/gltf-sample-viewer.html +52 -4
  314. package/package.json +2 -1
  315. package/src/standard/Math/Geometry/Box2.js +12 -2
  316. package/src/standard/Math/Geometry/Box3.js +12 -2
  317. package/src/x_ite/Base/X3DObjectArrayField.js +3 -2
  318. package/src/x_ite/Base/X3DTypedArrayField.js +3 -2
  319. package/src/x_ite/Browser/Core/X3DCoreContext.js +10 -3
  320. package/src/x_ite/Browser/DOMIntegration.js +13 -8
  321. package/src/x_ite/Browser/VERSION.js +1 -1
  322. package/src/x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture.js +1 -1
  323. package/src/x_ite/Components/DIS/DISEntityManager.js +1 -1
  324. package/src/x_ite/Components/Grouping/Switch.js +1 -1
  325. package/src/x_ite/Components/HAnim/HAnimHumanoid.js +105 -68
  326. package/src/x_ite/Components/HAnim/HAnimMotion.js +3 -3
  327. package/src/x_ite/Components/Layering/X3DLayerNode.js +1 -1
  328. package/src/x_ite/Components/Lighting/DirectionalLight.js +1 -1
  329. package/src/x_ite/Components/Navigation/Collision.js +1 -1
  330. package/src/x_ite/Components/Navigation/LOD.js +1 -1
  331. package/src/x_ite/Components/Navigation/X3DViewpointNode.js +1 -1
  332. package/src/x_ite/Components/Networking/LoadSensor.js +1 -1
  333. package/src/x_ite/Components/ParticleSystems/ParticleSystem.js +1 -1
  334. package/src/x_ite/Components/Rendering/X3DComposedGeometryNode.js +1 -1
  335. package/src/x_ite/Components/Shape/AcousticProperties.js +1 -1
  336. package/src/x_ite/Components/Shape/Appearance.js +1 -1
  337. package/src/x_ite/Components/Shape/Material.js +1 -1
  338. package/src/x_ite/Components/Shape/TwoSidedMaterial.js +1 -1
  339. package/src/x_ite/Components/Sound/PeriodicWave.js +1 -1
  340. package/src/x_ite/Components/Texturing/TextureProperties.js +1 -1
  341. package/src/x_ite/Fields/ArrayFields.js +9 -7
  342. package/src/x_ite/Fields/SFColor.js +1 -1
  343. package/src/x_ite/Fields/SFMatrixPrototypeTemplate.js +1 -1
  344. package/src/x_ite/Fields/SFRotation.js +3 -3
  345. package/src/x_ite/Fields/SFVecPrototypeTemplate.js +1 -1
  346. package/src/x_ite/Parser/GLTF2Parser.js +316 -55
  347. package/src/x_ite/Parser/GoldenGate.js +16 -5
  348. package/src/x_ite/Parser/PLYAParser.js +615 -0
  349. package/src/x_ite/Parser/PLYBParser.js +222 -0
  350. package/src/x_ite/Parser/STLAParser.js +0 -1
  351. package/src/x_ite/Parser/SVGParser.js +1 -1
  352. /package/build/{bin → docs}/components.js +0 -0
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  title: TransmitterPdu
3
- date: 2022-01-07
3
+ date: 2023-01-07
4
4
  nav: components-DIS
5
5
  categories: [components, DIS]
6
6
  tags: [TransmitterPdu, DIS]
@@ -15,7 +15,7 @@ tags: [TransmitterPdu, DIS]
15
15
 
16
16
  TransmitterPdu is a networked Protocol Data Unit (PDU) information node that provides detailed information about a radio transmitter modeled in a simulation.
17
17
 
18
- The TransmitterPdu node belongs to the **DIS** component and its default container field is *children.* It is available since X3D version 3.0 or later.
18
+ The TransmitterPdu node belongs to the **DIS** component and its default container field is *children.* It is available from X3D version 3.0 or higher.
19
19
 
20
20
  ## Hierarchy
21
21
 
@@ -33,16 +33,20 @@ The TransmitterPdu node belongs to the **DIS** component and its default contain
33
33
 
34
34
  ### SFNode [in, out] **metadata** NULL <small>[X3DMetadataObject]</small>
35
35
 
36
- Metadata are not part of the X3D world and not interpreted by the X3D browser, but they can be accessed via the ECMAScript interface.
36
+ Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
37
+
38
+ #### Hint
39
+
40
+ - [X3D Architecture 7.2.4 Metadata](https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-CD1/Part01/components/core.html#Metadata){:target="_blank"}
37
41
 
38
42
  ### SFBool [in, out] **visible** TRUE
39
43
 
40
44
  Whether or not renderable content within this node is visually displayed.
41
45
 
42
- #### Hint
46
+ #### Hints
43
47
 
44
- - The visible field has no effect on animation behaviors, event passing or other non-visual characteristics.
45
- - Content must be visible to be collidable and to be pickable.
48
+ - The *visible* field has no effect on animation behaviors, event passing or other non-visual characteristics.
49
+ - Content must be *visible* to be collidable and to be pickable.
46
50
 
47
51
  ### SFBool [in, out] **bboxDisplay** FALSE
48
52
 
@@ -56,13 +60,22 @@ Whether to display bounding box for associated geometry, aligned with world coor
56
60
 
57
61
  Bounding box size is usually omitted, and can easily be calculated automatically by an X3D player at scene-loading time with minimal computational cost. Bounding box size can also be defined as an optional authoring hint that suggests an optimization or constraint.
58
62
 
59
- #### Hint
63
+ #### Hints
60
64
 
61
65
  - Can be useful for collision computations or inverse-kinematics (IK) engines.
66
+ - Precomputation and inclusion of bounding box information can speed up the initialization of large detailed models, with a corresponding cost of increased file size.
67
+ - [X3D Architecture, 10.2.2 Bounding boxes](https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-CD1/Part01/components/grouping.html#BoundingBoxes){:target="_blank"}
68
+ - [X3D Architecture, 10.3.1 X3DBoundedObject](https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-CD1/Part01/components/grouping.html#X3DBoundedObject){:target="_blank"}
62
69
 
63
70
  ### SFVec3f [ ] **bboxCenter** 0 0 0 <small>(-∞,∞)</small>
64
71
 
65
- Bounding box center: optional hint for position offset from origin of local coordinate system.
72
+ Bounding box center accompanies bboxSize and provides an optional hint for bounding box position offset from origin of local coordinate system.
73
+
74
+ #### Hints
75
+
76
+ - Precomputation and inclusion of bounding box information can speed up the initialization of large detailed models, with a corresponding cost of increased file size.
77
+ - [X3D Architecture, 10.2.2 Bounding boxes](https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-CD1/Part01/components/grouping.html#BoundingBoxes){:target="_blank"}
78
+ - [X3D Architecture, 10.3.1 X3DBoundedObject](https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-CD1/Part01/components/grouping.html#X3DBoundedObject){:target="_blank"}
66
79
 
67
80
  ### SFBool [in, out] **enabled** TRUE
68
81
 
@@ -70,11 +83,15 @@ Enables/disables the sensor node.
70
83
 
71
84
  ### SFBool [out] **isActive**
72
85
 
73
- Have we had a network update recently?.
86
+ Confirm whether there has been a recent network update.
87
+
88
+ #### Warning
89
+
90
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
74
91
 
75
92
  ### SFString [in, out] **address** "localhost"
76
93
 
77
- Multicast network address, or else "localhost" example: 224.2.181.145.
94
+ Multicast network *address*, or else 'localhost'. Example: 224.2.181.145.
78
95
 
79
96
  ### SFVec3f [in, out] **antennaLocation** 0 0 0 <small>(-∞,∞)</small>
80
97
 
@@ -82,7 +99,7 @@ World coordinates for antenna location.
82
99
 
83
100
  ### SFInt32 [in, out] **antennaPatternLength** 0 <small>[0,65535]</small>
84
101
 
85
- Input/Output field antennaPatternLength.
102
+ Input/Output field *antennaPatternLength*.
86
103
 
87
104
  ### SFInt32 [in, out] **antennaPatternType** 0 <small>[0,65535]</small>
88
105
 
@@ -90,7 +107,7 @@ Antenna shape pattern: 0 for omnidirectional, 1 for beam, 2 for spherical harmon
90
107
 
91
108
  ### SFInt32 [in, out] **applicationID** 1 <small>[0,65535]</small>
92
109
 
93
- Each simulation application that can respond to simulation management PDUs needs to have a unique applicationID.
110
+ Each simulation application that can respond to simulation management PDUs needs to have a unique *applicationID*.
94
111
 
95
112
  ### SFInt32 [in, out] **cryptoKeyID** 0 <small>[0,65535]</small>
96
113
 
@@ -98,15 +115,15 @@ Nonzero value corresponding to the simulated cryptographic key. Enumerations val
98
115
 
99
116
  ### SFInt32 [in, out] **cryptoSystem** 0 <small>[0,65535]</small>
100
117
 
101
- Indicates type of crypto system being used, even if the encryption equipment is not keyed. Value 0 for No Encryption Device, higher enumerations values correspond to other specific equipment..
118
+ Indicates type of crypto system being used, even if the encryption equipment is not keyed. Value 0 for No Encryption Device, higher enumerations values correspond to other specific equipment.
102
119
 
103
120
  ### SFInt32 [in, out] **entityID** 0 <small>[0,65535]</small>
104
121
 
105
- *entityID* unique ID for entity within that application.
122
+ EntityID unique ID for entity within that application.
106
123
 
107
124
  ### SFInt32 [in, out] **frequency**
108
125
 
109
- Transmission frequency in Hz. If the radio is in frequency hopping mode, this field may be set to the center of the frequency hopping band currently in use, or to some other appropriate value.
126
+ Transmission *frequency* in Hz. If the radio is in *frequency* hopping mode, this field may be set to the center of the *frequency* hopping band currently in use, or to some other appropriate value.
110
127
 
111
128
  ### SFInt32 [in, out] **inputSource** 0 <small>[0,255]</small>
112
129
 
@@ -114,15 +131,15 @@ Source of transmission input. Enumerations value 0 for Other, 1 for Pilot, 2 for
114
131
 
115
132
  ### SFInt32 [in, out] **lengthOfModulationParameters** 0 <small>[0,255]</small>
116
133
 
117
- Input/Output field lengthOfModulationParameters.
134
+ Input/Output field *lengthOfModulationParameters*.
118
135
 
119
136
  ### SFInt32 [in, out] **modulationTypeDetail** 0 <small>[0,65535]</small>
120
137
 
121
- Enumeration containing detailed information depending on the major modulation type.
138
+ Integer enumeration containing detailed information depending on the major modulation type.
122
139
 
123
140
  ### SFInt32 [in, out] **modulationTypeMajor** 0 <small>[0,65535]</small>
124
141
 
125
- Enumeration containing major classification of the modulation type. Enumerations value 0 for No Statement, 1 for Amplitude, 2 for Amplitude and Angle, 3 for Angle, 4 for Combination, 5 for Pulse, 6 for Unmodulated, 7 for Carrier Phase Shift Modulation (CPSM).
142
+ Integer enumeration containing major classification of the modulation type. Enumerations value 0 for No Statement, 1 for Amplitude, 2 for Amplitude and Angle, 3 for Angle, 4 for Combination, 5 for Pulse, 6 for Unmodulated, 7 for Carrier Phase Shift Modulation (CPSM).
126
143
 
127
144
  ### SFInt32 [in, out] **modulationTypeSpreadSpectrum** 0 <small>[0,65535]</small>
128
145
 
@@ -146,35 +163,36 @@ Whether this entity is ignoring the network, sending DIS packets to the network,
146
163
 
147
164
  #### Warnings
148
165
 
149
- - Do not wrap extra quotation marks around these SFString enumeration values, since "quotation" "marks" are only used for MFString values. Network activity may have associated security issues.
166
+ - Do not wrap extra quotation marks around these SFString enumeration values, since "quotation" "marks" are only used for MFString values.
167
+ - Network activity may have associated security issues.
150
168
 
151
169
  ### SFInt32 [in, out] **port** 0 <small>[0,65535]</small>
152
170
 
153
- Multicast network port, for example: 62040.
171
+ Multicast network *port*, for example: 3000.
154
172
 
155
173
  ### SFFloat [in, out] **power** 0 <small>(0,∞)</small>
156
174
 
157
- *power* that radio would be capable of outputting if on and transmitting, independent of actual transmit state of the radio.
175
+ Power that radio would be capable of outputting if on and transmitting, independent of actual transmit state of the radio.
158
176
 
159
177
  ### SFInt32 [in, out] **radioEntityTypeCategory** 0 <small>[0,255]</small>
160
178
 
161
- Enumeration containing EntityType of transmitter radio. Enumerations value: 0 for Other, 1 for Generic Radio or Simple Intercom, 2 for HAVE QUICK, 3 for HAVE QUICK II, 4 for HAVE QUICK IIA, 5 for SINCGARS, 6 for CCTT SINCGARS, 7 for EPLRS (Enhanced Position Location Reporting System), 8 for JTIDS/MIDS, 9 for Link 11, 10 for Link 11B, 11 for L-Band SATCOM, 12 for Enhanced SINCGARS 7.3, 13 for Navigation Aid.
179
+ Integer enumeration containing EntityType of transmitter radio. Enumerations value: 0 for Other, 1 for Generic Radio or Simple Intercom, 2 for HAVE QUICK, 3 for HAVE QUICK II, 4 for HAVE QUICK IIA, 5 for SINCGARS, 6 for CCTT SINCGARS, 7 for EPLRS (Enhanced Position Location Reporting System), 8 for JTIDS/MIDS, 9 for Link 11, 10 for Link 11B, 11 for L-Band SATCOM, 12 for Enhanced SINCGARS 7.3, 13 for Navigation Aid.
162
180
 
163
181
  ### SFInt32 [in, out] **radioEntityTypeCountry** 0 <small>[0,65535]</small>
164
182
 
165
- Enumerations value for country to which the design of the entity or its design specification is attributed.
183
+ Integer enumerations value for country to which the design of the entity or its design specification is attributed.
166
184
 
167
185
  ### SFInt32 [in, out] **radioEntityTypeDomain** 0 <small>[0,255]</small>
168
186
 
169
- Enumerations value for domain in which the entity operates: LAND, AIR, SURFACE, SUBSURFACE, SPACE or OTHER.
187
+ Integer enumerations value for domain in which the entity operates: LAND, AIR, SURFACE, SUBSURFACE, SPACE or OTHER.
170
188
 
171
189
  ### SFInt32 [in, out] **radioEntityTypeKind** 0 <small>[0,255]</small>
172
190
 
173
- Enumerations value for whether entity is a PLATFORM, MUNITION, LIFE_FORM, ENVIRONMENTAL, CULTURAL_FEATURE, SUPPLY, RADIO, EXPENDABLE, SENSOR_EMITTER or OTHER.
191
+ Integer enumerations value for whether entity is a PLATFORM, MUNITION, LIFE_FORM, ENVIRONMENTAL, CULTURAL_FEATURE, SUPPLY, RADIO, EXPENDABLE, SENSOR_EMITTER or OTHER.
174
192
 
175
193
  ### SFInt32 [in, out] **radioEntityTypeNomenclature** 0 <small>[0,255]</small>
176
194
 
177
- Enumerations value indicating nomenclature (name) for a particular emitter. See DIS enumerations reference for value/name pairs.
195
+ Integer enumerations value indicating nomenclature (name) for a particular emitter. See DIS enumerations reference for value/name pairs.
178
196
 
179
197
  ### SFInt32 [in, out] **radioEntityTypeNomenclatureVersion** 0 <small>[0,65535]</small>
180
198
 
@@ -188,6 +206,10 @@ Identifies a particular radio within a given entity.
188
206
 
189
207
  Seconds between read updates, 0 means no reading.
190
208
 
209
+ #### Hint
210
+
211
+ - *readInterval* is a nonnegative SFTime duration interval, not an absolute clock time.
212
+
191
213
  ### SFVec3f [in, out] **relativeAntennaLocation** 0 0 0 <small>(-∞,∞)</small>
192
214
 
193
215
  Relative coordinates for antenna location.
@@ -198,7 +220,7 @@ Whether RTP headers are prepended to DIS PDUs.
198
220
 
199
221
  ### SFInt32 [in, out] **siteID** 0 <small>[0,65535]</small>
200
222
 
201
- Simulation/exercise siteID of the participating LAN or organization.
223
+ Simulation/exercise *siteID* of the participating LAN or organization.
202
224
 
203
225
  ### SFFloat [in, out] **transmitFrequencyBandwidth** 0 <small>(-∞,∞)</small>
204
226
 
@@ -216,34 +238,62 @@ Select geometry to render: -1 for no geometry, 0 for text trace, 1 for default g
216
238
 
217
239
  Seconds between write updates, 0 means no writing (sending).
218
240
 
241
+ #### Hint
242
+
243
+ - *writeInterval* is a nonnegative SFTime duration interval, not an absolute clock time.
244
+
219
245
  ### SFBool [out] **isNetworkReader**
220
246
 
221
- Whether networkMode="remote" (listen to network as copy of remote entity)
247
+ Whether networkMode='remote' (listen to network as copy of remote entity).
248
+
249
+ #### Warning
250
+
251
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
222
252
 
223
253
  ### SFBool [out] **isNetworkWriter**
224
254
 
225
- Whether networkMode="master" (output to network as master entity at writeInterval)
255
+ Whether networkMode='master' (output to network as master entity at writeInterval).
256
+
257
+ #### Warning
258
+
259
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
226
260
 
227
261
  ### SFBool [out] **isRtpHeaderHeard**
228
262
 
229
263
  Whether incoming DIS packets have an RTP header prepended.
230
264
 
265
+ #### Warning
266
+
267
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
268
+
231
269
  ### SFBool [out] **isStandAlone**
232
270
 
233
- Whether networkMode="local" (ignore network but still respond to local events)
271
+ Whether networkMode='local' (ignore network but still respond to local events).
272
+
273
+ #### Warning
274
+
275
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
234
276
 
235
277
  ### SFTime [out] **timestamp**
236
278
 
237
- DIS timestamp in X3D units (seconds since 1 January 1970).
279
+ DIS *timestamp* in X3D units (value 0.0 matches 1 January 1970) in seconds.
280
+
281
+ #### Warning
238
282
 
239
- ## Description
283
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
284
+
285
+ ## Advisories
240
286
 
241
287
  ### Hints
242
288
 
243
289
  - TransmitterPdu packets use the IEEE Distributed Interactive Simulation (DIS) protocol.
244
- - Include `<component name='DIS' level='1'/>`
290
+ - [Savage Developers Guide on DIS](https://savage.nps.edu/Savage/developers.html#DIS){:target="_blank"}
291
+ - [X3D for Advanced Modeling (X3D4AM) slideset](https://x3dgraphics.com/slidesets/X3dForAdvancedModeling/DistributedInteractiveSimulation.pdf){:target="_blank"}
245
292
 
246
- ## External Links
293
+ ### Warning
247
294
 
248
- - [X3D Specification of TransmitterPdu](https://www.web3d.org/documents/specifications/19775-1/V4.0/Part01/components/dis.html#TransmitterPdu){:target="_blank"}
249
- - [Savage Developers Guide on DIS](https://savage.nps.edu/Savage/developers.html#DIS){:target="_blank"}
295
+ - Requires X3D `profile='Full'` or else include `<component name='DIS' level='1'/>`
296
+
297
+ ## See Also
298
+
299
+ - [X3D Specification of TransmitterPdu node](https://www.web3d.org/documents/specifications/19775-1/V4.0/Part01/components/dis.html#TransmitterPdu){:target="_blank"}
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  title: Background
3
- date: 2022-01-07
3
+ date: 2023-01-07
4
4
  nav: components-EnvironmentalEffects
5
5
  categories: [components, EnvironmentalEffects]
6
6
  tags: [Background, EnvironmentalEffects]
@@ -13,9 +13,9 @@ tags: [Background, EnvironmentalEffects]
13
13
 
14
14
  ## Overview
15
15
 
16
- Background simulates ground and sky, using vertical arrays of wraparound color values, Background can also provide backdrop textures on all six sides.
16
+ Background simulates ground and sky, using vertical arrays of wraparound color values. Background can also provide url addresses for backdrop textures on all six sides.
17
17
 
18
- The Background node belongs to the **EnvironmentalEffects** component and its default container field is *children.* It is available since X3D version 2.0 or later.
18
+ The Background node belongs to the **EnvironmentalEffects** component and its default container field is *children.* It is available from X3D version 2.0 or higher.
19
19
 
20
20
  ## Hierarchy
21
21
 
@@ -31,11 +31,23 @@ The Background node belongs to the **EnvironmentalEffects** component and its de
31
31
 
32
32
  ### SFNode [in, out] **metadata** NULL <small>[X3DMetadataObject]</small>
33
33
 
34
- Metadata are not part of the X3D world and not interpreted by the X3D browser, but they can be accessed via the ECMAScript interface.
34
+ Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
35
+
36
+ #### Hint
37
+
38
+ - [X3D Architecture 7.2.4 Metadata](https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-CD1/Part01/components/core.html#Metadata){:target="_blank"}
35
39
 
36
40
  ### SFBool [in] **set_bind**
37
41
 
38
- Input event set_bind=true makes this node active, input event set_bind=false makes this node inactive. Thus setting set_bind true/false will pop/push (enable/disable) this node.
42
+ Input event *set_bind*=true makes this node active, input event *set_bind*=false makes this node inactive. Thus setting *set_bind* true/false will pop/push (enable/disable) this node.
43
+
44
+ #### Hint
45
+
46
+ - Paired node operations can be established by connecting *set_bind* and isBound fields of corresponding bindable nodes.
47
+
48
+ #### Warning
49
+
50
+ - It is an error to define this transient inputOnly field in an X3D file, instead only use it a destination for ROUTE events.
39
51
 
40
52
  ### MFString [in, out] **frontUrl** [ ] <small>[URI]</small>
41
53
 
@@ -43,11 +55,13 @@ Image background panorama between ground/sky backdrop and scene's geometry.
43
55
 
44
56
  #### Hints
45
57
 
46
- - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc." XML encoding for quotation mark " is &amp;quot; (which is called a character entity). Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
58
+ - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc."
59
+ - Alternative XML encoding for quotation mark " is &amp;quot; (which is an example of a character entity).
60
+ - Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
47
61
 
48
62
  #### Warning
49
63
 
50
- - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https and other operating systems are not.
64
+ - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https url addresses and paths in Unix-based operating systems are all case sensitive and intolerant of uppercase/lowercase mismatches.
51
65
 
52
66
  ### MFString [in, out] **backUrl** [ ] <small>[URI]</small>
53
67
 
@@ -55,11 +69,13 @@ Image background panorama between ground/sky backdrop and scene's geometry.
55
69
 
56
70
  #### Hints
57
71
 
58
- - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc." XML encoding for quotation mark " is &amp;quot; (which is called a character entity). Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
72
+ - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc."
73
+ - Alternative XML encoding for quotation mark " is &amp;quot; (which is an example of a character entity).
74
+ - Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
59
75
 
60
76
  #### Warning
61
77
 
62
- - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https and other operating systems are not.
78
+ - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https url addresses and paths in Unix-based operating systems are all case sensitive and intolerant of uppercase/lowercase mismatches.
63
79
 
64
80
  ### MFString [in, out] **leftUrl** [ ] <small>[URI]</small>
65
81
 
@@ -67,11 +83,13 @@ Image background panorama between ground/sky backdrop and scene's geometry.
67
83
 
68
84
  #### Hints
69
85
 
70
- - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc." XML encoding for quotation mark " is &amp;quot; (which is called a character entity). Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
86
+ - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc."
87
+ - Alternative XML encoding for quotation mark " is &amp;quot; (which is an example of a character entity).
88
+ - Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
71
89
 
72
90
  #### Warning
73
91
 
74
- - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https and other operating systems are not.
92
+ - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https url addresses and paths in Unix-based operating systems are all case sensitive and intolerant of uppercase/lowercase mismatches.
75
93
 
76
94
  ### MFString [in, out] **rightUrl** [ ] <small>[URI]</small>
77
95
 
@@ -79,11 +97,13 @@ Image background panorama between ground/sky backdrop and scene's geometry.
79
97
 
80
98
  #### Hints
81
99
 
82
- - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc." XML encoding for quotation mark " is &amp;quot; (which is called a character entity). Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
100
+ - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc."
101
+ - Alternative XML encoding for quotation mark " is &amp;quot; (which is an example of a character entity).
102
+ - Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
83
103
 
84
104
  #### Warning
85
105
 
86
- - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https and other operating systems are not.
106
+ - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https url addresses and paths in Unix-based operating systems are all case sensitive and intolerant of uppercase/lowercase mismatches.
87
107
 
88
108
  ### MFString [in, out] **topUrl** [ ] <small>[URI]</small>
89
109
 
@@ -91,11 +111,13 @@ Image background panorama between ground/sky backdrop and scene's geometry.
91
111
 
92
112
  #### Hints
93
113
 
94
- - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc." XML encoding for quotation mark " is &amp;quot; (which is called a character entity). Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
114
+ - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc."
115
+ - Alternative XML encoding for quotation mark " is &amp;quot; (which is an example of a character entity).
116
+ - Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
95
117
 
96
118
  #### Warning
97
119
 
98
- - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https and other operating systems are not.
120
+ - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https url addresses and paths in Unix-based operating systems are all case sensitive and intolerant of uppercase/lowercase mismatches.
99
121
 
100
122
  ### MFString [in, out] **bottomUrl** [ ] <small>[URI]</small>
101
123
 
@@ -103,87 +125,106 @@ Image background panorama between ground/sky backdrop and scene's geometry.
103
125
 
104
126
  #### Hints
105
127
 
106
- - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc." XML encoding for quotation mark " is &amp;quot; (which is called a character entity). Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
128
+ - MFString arrays can have multiple values, so separate each individual string by quote marks "https://www.web3d.org" "https://www.web3d.org/about" "etc."
129
+ - Alternative XML encoding for quotation mark " is &amp;quot; (which is an example of a character entity).
130
+ - Can replace embedded blank(s) in url queries with %20 for each blank character. Interchange profile hint: this field may be ignored, applying the default value regardless.
107
131
 
108
132
  #### Warning
109
133
 
110
- - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https and other operating systems are not.
134
+ - Strictly match directory and filename capitalization for http links! This is important for portability. Some operating systems are forgiving of capitalization mismatches, but http/https url addresses and paths in Unix-based operating systems are all case sensitive and intolerant of uppercase/lowercase mismatches.
111
135
 
112
136
  ### MFFloat [in, out] **skyAngle** [ ] <small>[0,π]</small>
113
137
 
114
138
  The angle array values increase from 0.0 zenith (straight up) to π/2=1.570796 (horizon) to π=3.14159 (nadir).
115
139
 
140
+ #### Hint
141
+
142
+ - [Radian units for angular measure](https://en.wikipedia.org/wiki/Radian){:target="_blank"}
143
+
116
144
  #### Warnings
117
145
 
118
- - You must have one more skyColor value than skyAngle values. Colors at skyAngle=0 are ignored. Interchange profile hint: this field may be ignored, applying the default value regardless.
146
+ - You must have one more skyColor value than *skyAngle* values.
147
+ - Colors at *skyAngle*=0 are ignored. Interchange profile hint: this field may be ignored, applying the default value regardless.
119
148
 
120
149
  ### MFColor [in, out] **skyColor** 0 0 0 <small>[0,1]</small>
121
150
 
122
151
  Color of the sky at various angles on the sky sphere. First value is color of sky at 0.0 radians representing the zenith (straight up).
123
152
 
124
- #### Hint
153
+ #### Hints
125
154
 
126
155
  - Setting the same color at two consecutive angles produces a solid color band.
156
+ - [X3D Scene Authoring Hints, Color](https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Color){:target="_blank"}
127
157
 
128
158
  #### Warning
129
159
 
130
- - You must have one more skyColor value than skyAngle values. Interchange profile hint: only one color might be rendered, others can be ignored.
131
-
132
- #### See Also
133
-
134
- - [X3D Scene Authoring Hints, Color](https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Color){:target="_blank"}
160
+ - You must have one more *skyColor* value than skyAngle values. Interchange profile hint: only one color might be rendered, others can be ignored.
135
161
 
136
162
  ### MFFloat [in, out] **groundAngle** [ ] <small>[0,π/2]</small>
137
163
 
138
164
  The angle array values increase from 0.0 nadir (straight down) to π/2=1.570796 (horizon).
139
165
 
166
+ #### Hint
167
+
168
+ - [Radian units for angular measure](https://en.wikipedia.org/wiki/Radian){:target="_blank"}
169
+
140
170
  #### Warnings
141
171
 
142
- - You must have one more groundColor value than groundAngle values. Colors at groundAngle=0 are ignored. Interchange profile hint: this field may be ignored, applying the default value regardless.
172
+ - You must have one more groundColor value than *groundAngle* values.
173
+ - Colors at *groundAngle*=0 are ignored. Interchange profile hint: this field may be ignored, applying the default value regardless.
143
174
 
144
175
  ### MFColor [in, out] **groundColor** [ ] <small>[0,1]</small>
145
176
 
146
177
  Color of the ground at the various angles on the ground partial sphere. First value is color of ground at 0.0 radians representing the nadir (straight down).
147
178
 
148
- #### Hint
179
+ #### Hints
149
180
 
150
181
  - Setting the same color at two consecutive angles produces a solid color band.
182
+ - [X3D Scene Authoring Hints, Color](https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Color){:target="_blank"}
151
183
 
152
184
  #### Warning
153
185
 
154
- - You must have one more groundColor value than groundAngle values. Interchange profile hint: this field may be ignored, applying the default value regardless.
155
-
156
- #### See Also
157
-
158
- - [X3D Scene Authoring Hints, Color](https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Color){:target="_blank"}
186
+ - You must have one more *groundColor* value than groundAngle values. Interchange profile hint: this field may be ignored, applying the default value regardless.
159
187
 
160
188
  ### SFFloat [in, out] **transparency** 0 <small>[0,1]</small>
161
189
 
162
- How "clear" the background is, allows underlying page to show through: 1.0 is completely transparent, 0.0 is completely opaque. Interchange profile hint: transparency < .5 opaque, transparency > .5 transparent.
190
+ How "clear" the background is, allows underlying page to show through: 1.0 is completely transparent, 0.0 is completely opaque. Interchange profile hint: *transparency* \< .5 opaque, *transparency* \> .5 transparent.
163
191
 
164
192
  ### SFBool [out] **isBound**
165
193
 
166
194
  Event true sent when node becomes active, event false sent when unbound by another node.
167
195
 
196
+ #### Hint
197
+
198
+ - Paired node operations can be established by connecting set_bind and *isBound* fields of corresponding bindable nodes.
199
+
200
+ #### Warning
201
+
202
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
203
+
168
204
  ### SFTime [out] **bindTime**
169
205
 
170
206
  Event sent when node becomes active/inactive.
171
207
 
172
- ## Description
208
+ #### Warning
173
209
 
174
- ### Hint
210
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
175
211
 
176
- - NavigationInfo, Background, TextureBackground, Fog, OrthoViewpoint and Viewpoint are bindable nodes, meaning that no more than one of each node type can be active at a given time.
212
+ ## Advisories
213
+
214
+ ### Hints
215
+
216
+ - Background, Fog, GeoViewpoint, NavigationInfo, OrthoViewpoint, TextureBackground and Viewpoint are bindable nodes, meaning that no more than one of each node type can be active at a given time.
217
+ - Background node is not sensed by LoadSensor due to node typing and multiple-image ambiguity, alternatively utilize TextureBackground node with multiple ImageTexture nodes each referenced inside LoadSensor.
218
+ - [X3D Example Archives, Basic, Universal Media Panoramas](https://www.web3d.org/x3d/content/examples/Basic/UniversalMediaPanoramas){:target="_blank"}
177
219
 
178
220
  ### Warning
179
221
 
180
- - Results are undefined if a bindable node (Viewpoint, OrthoViewpoint, NavigationInfo, Fog, Background, TextureBackground) is a contained child of LOD or Switch.
222
+ - Results are undefined if a bindable node (Background, Fog, NavigationInfo, OrthoViewpoint, TextureBackground, Viewpoint) is a contained descendant node of either LOD or Switch. Avoid this authoring pattern.
181
223
 
182
224
  ## Example
183
225
 
184
226
  <x3d-canvas src="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/Background.x3d" update="auto"></x3d-canvas>
185
227
 
186
- ## External Links
228
+ ## See Also
187
229
 
188
- - [X3D Specification of Background](https://www.web3d.org/documents/specifications/19775-1/V4.0/Part01/components/environmentalEffects.html#Background){:target="_blank"}
189
- - [X3D Example Archives, Basic, Universal Media Panoramas](https://www.web3d.org/x3d/content/examples/Basic/UniversalMediaPanoramas){:target="_blank"}
230
+ - [X3D Specification of Background node](https://www.web3d.org/documents/specifications/19775-1/V4.0/Part01/components/environmentalEffects.html#Background){:target="_blank"}
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  title: Fog
3
- date: 2022-01-07
3
+ date: 2023-01-07
4
4
  nav: components-EnvironmentalEffects
5
5
  categories: [components, EnvironmentalEffects]
6
6
  tags: [Fog, EnvironmentalEffects]
@@ -15,7 +15,7 @@ tags: [Fog, EnvironmentalEffects]
15
15
 
16
16
  Fog simulates atmospheric effects by blending distant objects with fog color.
17
17
 
18
- The Fog node belongs to the **EnvironmentalEffects** component and its default container field is *children.* It is available since X3D version 2.0 or later.
18
+ The Fog node belongs to the **EnvironmentalEffects** component and its default container field is *children.* It is available from X3D version 2.0 or higher.
19
19
 
20
20
  ## Hierarchy
21
21
 
@@ -32,11 +32,23 @@ The Fog node belongs to the **EnvironmentalEffects** component and its default c
32
32
 
33
33
  ### SFNode [in, out] **metadata** NULL <small>[X3DMetadataObject]</small>
34
34
 
35
- Metadata are not part of the X3D world and not interpreted by the X3D browser, but they can be accessed via the ECMAScript interface.
35
+ Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
36
+
37
+ #### Hint
38
+
39
+ - [X3D Architecture 7.2.4 Metadata](https://www.web3d.org/specifications/X3Dv4Draft/ISO-IEC19775-1v4-CD1/Part01/components/core.html#Metadata){:target="_blank"}
36
40
 
37
41
  ### SFBool [in] **set_bind**
38
42
 
39
- Setting set_bind true makes this node active setting set_bind false makes this node inactive. Thus setting set_bind true/false will pop/push (enable/disable) this node.
43
+ Receiving event *set_bind*=true activates and binds this node at the top of the binding stack. Receiving event *set_bind*=false deactivates and unbinds this node from the top of the binding stack. Thus setting *set_bind* to true/false will enable/disable the effect of this node.
44
+
45
+ #### Hint
46
+
47
+ - Paired node operations can be established by connecting *set_bind* and isBound fields of corresponding bindable nodes.
48
+
49
+ #### Warning
50
+
51
+ - It is an error to define this transient inputOnly field in an X3D file, instead only use it a destination for ROUTE events.
40
52
 
41
53
  ### SFString [in, out] **fogType** "LINEAR" <small>["LINEAR"|"EXPONENTIAL"]</small>
42
54
 
@@ -52,14 +64,11 @@ Specifies algorithm for rate of increasing Fog, either LINEAR or EXPONENTIAL.
52
64
 
53
65
  ### SFColor [in, out] **color** 1 1 1 <small>[0,1]</small>
54
66
 
55
- Fog color.
56
-
57
- #### Hint
67
+ Fog *color*.
58
68
 
59
- - Match Background color to make objects fade away.
60
-
61
- #### See Also
69
+ #### Hints
62
70
 
71
+ - Match Background *color* to make objects fade away.
63
72
  - [X3D Scene Authoring Hints, Color](https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html#Color){:target="_blank"}
64
73
 
65
74
  ### SFFloat [in, out] **visibilityRange** 0 <small>[0,∞)</small>
@@ -68,30 +77,42 @@ Distance in meters where objects are totally obscured by the fog, using local co
68
77
 
69
78
  #### Hint
70
79
 
71
- - VisibilityRange 0 disables Fog.
80
+ - *visibilityRange* 0 disables Fog.
72
81
 
73
82
  ### SFBool [out] **isBound**
74
83
 
75
- Event true sent when node becomes active, event false sent when unbound by another node.
84
+ Output event true gets sent when node becomes bound and activated, otherwise output event false gets sent when node becomes unbound and deactivated.
85
+
86
+ #### Hint
87
+
88
+ - Paired node operations can be established by connecting set_bind and *isBound* fields of corresponding bindable nodes.
89
+
90
+ #### Warning
91
+
92
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
76
93
 
77
94
  ### SFTime [out] **bindTime**
78
95
 
79
- Event sent when node becomes active/inactive.
96
+ Event sent reporting timestamp when node becomes active/inactive.
97
+
98
+ #### Warning
99
+
100
+ - It is an error to define this transient outputOnly field in an X3D file, instead only use it a source for ROUTE events.
80
101
 
81
- ## Description
102
+ ## Advisories
82
103
 
83
104
  ### Hint
84
105
 
85
- - NavigationInfo, Background, TextureBackground, Fog, OrthoViewpoint and Viewpoint are bindable nodes, meaning that no more than one of each node type can be active at a given time.
106
+ - Background, Fog, GeoViewpoint, NavigationInfo, OrthoViewpoint, TextureBackground and Viewpoint are bindable nodes, meaning that no more than one of each node type can be active at a given time.
86
107
 
87
108
  ### Warning
88
109
 
89
- - Results are undefined if a bindable node (Viewpoint, OrthoViewpoint, NavigationInfo, Fog, Background, TextureBackground) is a contained child of LOD or Switch.
110
+ - Results are undefined if a bindable node (Background, Fog, NavigationInfo, OrthoViewpoint, TextureBackground, Viewpoint) is a contained descendant node of either LOD or Switch. Avoid this authoring pattern.
90
111
 
91
112
  ## Example
92
113
 
93
114
  <x3d-canvas src="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/Fog.x3d" update="auto"></x3d-canvas>
94
115
 
95
- ## External Links
116
+ ## See Also
96
117
 
97
- - [X3D Specification of Fog](https://www.web3d.org/documents/specifications/19775-1/V4.0/Part01/components/environmentalEffects.html#Fog){:target="_blank"}
118
+ - [X3D Specification of Fog node](https://www.web3d.org/documents/specifications/19775-1/V4.0/Part01/components/environmentalEffects.html#Fog){:target="_blank"}