x_ite 8.6.18 → 8.6.20

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 (87) hide show
  1. package/README.md +1 -1
  2. package/dist/assets/components/Annotation.js +13 -13
  3. package/dist/assets/components/Annotation.min.js +1 -1
  4. package/dist/assets/components/CADGeometry.js +13 -13
  5. package/dist/assets/components/CADGeometry.min.js +1 -1
  6. package/dist/assets/components/CubeMapTexturing.js +25 -25
  7. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  8. package/dist/assets/components/DIS.js +13 -13
  9. package/dist/assets/components/DIS.min.js +1 -1
  10. package/dist/assets/components/EventUtilities.js +9 -9
  11. package/dist/assets/components/EventUtilities.min.js +1 -1
  12. package/dist/assets/components/Geometry2D.js +19 -19
  13. package/dist/assets/components/Geometry2D.min.js +1 -1
  14. package/dist/assets/components/Geospatial.js +33 -33
  15. package/dist/assets/components/Geospatial.min.js +1 -1
  16. package/dist/assets/components/HAnim.js +18 -18
  17. package/dist/assets/components/HAnim.min.js +1 -1
  18. package/dist/assets/components/KeyDeviceSensor.js +8 -8
  19. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  20. package/dist/assets/components/Layout.js +27 -27
  21. package/dist/assets/components/Layout.min.js +1 -1
  22. package/dist/assets/components/NURBS.js +24 -24
  23. package/dist/assets/components/NURBS.min.js +1 -1
  24. package/dist/assets/components/ParticleSystems.js +23 -25
  25. package/dist/assets/components/ParticleSystems.min.js +1 -1
  26. package/dist/assets/components/Picking.js +19 -21
  27. package/dist/assets/components/Picking.min.js +1 -1
  28. package/dist/assets/components/RigidBodyPhysics.js +18 -18
  29. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  30. package/dist/assets/components/Scripting.js +30 -32
  31. package/dist/assets/components/Scripting.min.js +1 -1
  32. package/dist/assets/components/Text.js +24 -24
  33. package/dist/assets/components/Text.min.js +1 -1
  34. package/dist/assets/components/TextureProjector.js +14 -14
  35. package/dist/assets/components/TextureProjector.min.js +1 -1
  36. package/dist/assets/components/Texturing3D.js +30 -30
  37. package/dist/assets/components/Texturing3D.min.js +1 -1
  38. package/dist/assets/components/VolumeRendering.js +19 -19
  39. package/dist/assets/components/VolumeRendering.min.js +1 -1
  40. package/dist/assets/components/X_ITE.js +9 -9
  41. package/dist/assets/components/X_ITE.min.js +1 -1
  42. package/dist/example.html +1 -1
  43. package/dist/x_ite.css +1 -1
  44. package/dist/x_ite.js +234 -235
  45. package/dist/x_ite.min.js +1 -1
  46. package/dist/x_ite.zip +0 -0
  47. package/docs/_config.yml +1 -1
  48. package/docs/_posts/getting-started.md +18 -18
  49. package/docs/_posts/setup-a-localhost-server.md +2 -2
  50. package/docs/_tabs/playground.html +24 -17
  51. package/package.json +4 -4
  52. package/src/example.html +1 -1
  53. package/src/standard/Math/Algorithm.js +1 -1
  54. package/src/standard/Math/Algorithms/MergeSort.js +7 -5
  55. package/src/standard/Math/Algorithms/PartialSort.js +3 -1
  56. package/src/standard/Math/Algorithms/QuickSort.js +1 -3
  57. package/src/standard/Math/Geometry/Box2.js +1 -1
  58. package/src/standard/Math/Geometry/Box3.js +1 -1
  59. package/src/standard/Math/Numbers/Quaternion.js +4 -3
  60. package/src/standard/Math/Numbers/Rotation4.js +4 -3
  61. package/src/x_ite/Base/X3DBaseNode.js +1 -1
  62. package/src/x_ite/Base/X3DEventObject.js +3 -2
  63. package/src/x_ite/Base/X3DField.js +2 -2
  64. package/src/x_ite/Browser/Core/Context.js +1 -1
  65. package/src/x_ite/Browser/Navigation/ExamineViewer.js +4 -1
  66. package/src/x_ite/Browser/Navigation/LookAtViewer.js +3 -0
  67. package/src/x_ite/Browser/Networking/X3DNetworkingContext.js +18 -11
  68. package/src/x_ite/Browser/VERSION.js +1 -1
  69. package/src/x_ite/Browser/X3DBrowser.js +48 -57
  70. package/src/x_ite/Browser/X3DBrowserContext.js +3 -3
  71. package/src/x_ite/Components/Scripting/Script.js +2 -4
  72. package/src/x_ite/Components/Shaders/X3DProgrammableShaderObject.js +1 -1
  73. package/src/x_ite/Components/Sound/AudioClip.js +3 -3
  74. package/src/x_ite/Components/Sound/DynamicsCompressor.js +4 -4
  75. package/src/x_ite/Components/Texturing/MovieTexture.js +3 -3
  76. package/src/x_ite/Execution/Scene.js +1 -1
  77. package/src/x_ite/Execution/X3DExecutionContext.js +11 -11
  78. package/src/x_ite/Fields/SFNode.js +5 -3
  79. package/src/x_ite/Fields/SFRotation.js +2 -4
  80. package/src/x_ite/Fields/SFVecPrototypeTemplate.js +3 -3
  81. package/src/x_ite/InputOutput/FileLoader.js +16 -22
  82. package/src/x_ite/InputOutput/Generator.js +1 -1
  83. package/src/x_ite/Parser/X3DParser.js +4 -4
  84. package/src/x_ite/Parser/XMLParser.js +13 -19
  85. package/src/x_ite/Prototype/X3DExternProtoDeclaration.js +5 -4
  86. package/src/x_ite/Prototype/X3DProtoDeclaration.js +4 -3
  87. package/docs/_tabs/imprint.md +0 -52
@@ -146,18 +146,16 @@ XMLParser .prototype = Object .assign (Object .create (X3DParser .prototype),
146
146
  {
147
147
  if (this .success)
148
148
  {
149
- this .loadComponents () .then (function ()
149
+ this .loadComponents () .then (() =>
150
150
  {
151
151
  this .childrenElements (xmlElement);
152
152
  this .success (this .getScene ());
153
- }
154
- .bind (this))
155
- .catch (function (error)
153
+ })
154
+ .catch ((error) =>
156
155
  {
157
156
  if (this .error)
158
157
  this .error (error);
159
- }
160
- .bind (this));
158
+ });
161
159
  }
162
160
  else
163
161
  {
@@ -177,18 +175,16 @@ XMLParser .prototype = Object .assign (Object .create (X3DParser .prototype),
177
175
  {
178
176
  if (this .success)
179
177
  {
180
- this .loadComponents () .then (function ()
178
+ this .loadComponents () .then (() =>
181
179
  {
182
180
  this .sceneElement (xmlElement);
183
181
  this .success (this .getScene ());
184
- }
185
- .bind (this))
186
- .catch (function (error)
182
+ })
183
+ .catch ((error) =>
187
184
  {
188
185
  if (this .error)
189
186
  this .error (error);
190
- }
191
- .bind (this));
187
+ });
192
188
  }
193
189
  else
194
190
  {
@@ -201,18 +197,16 @@ XMLParser .prototype = Object .assign (Object .create (X3DParser .prototype),
201
197
  {
202
198
  if (this .success)
203
199
  {
204
- this .loadComponents () .then (function ()
200
+ this .loadComponents () .then (() =>
205
201
  {
206
202
  this .childrenElements (xmlElement);
207
203
  this .success (this .getScene ());
208
- }
209
- .bind (this))
210
- .catch (function (error)
204
+ })
205
+ .catch ((error) =>
211
206
  {
212
207
  if (this .error)
213
208
  this .error (error);
214
- }
215
- .bind (this));
209
+ });
216
210
  }
217
211
  else
218
212
  {
@@ -835,7 +829,7 @@ XMLParser .prototype = Object .assign (Object .create (X3DParser .prototype),
835
829
  {
836
830
  // Add elements and cdata.
837
831
  if (childNode .nodeType === 1 || childNode .nodeType === 4)
838
- element .appendChild (childNode);
832
+ element .appendChild (childNode);
839
833
  }
840
834
  },
841
835
  routeElement: function (xmlElement)
@@ -410,21 +410,22 @@ for (const key of Reflect .ownKeys (X3DExternProtoDeclaration .prototype))
410
410
 
411
411
  Object .defineProperty (X3DExternProtoDeclaration .prototype, "name",
412
412
  {
413
- get: function () { return this .getName (); },
413
+ get: X3DExternProtoDeclaration .prototype .getName,
414
414
  enumerable: true,
415
415
  configurable: false
416
416
  });
417
417
 
418
418
  Object .defineProperty (X3DExternProtoDeclaration .prototype, "fields",
419
419
  {
420
- get: function () { return this .getFieldDefinitions (); },
420
+ get: X3DExternProtoDeclaration .prototype .getFieldDefinitions,
421
421
  enumerable: true,
422
422
  configurable: false
423
423
  });
424
424
 
425
425
  Object .defineProperty (X3DExternProtoDeclaration .prototype, "isExternProto",
426
426
  {
427
- get: function () { return true; },
427
+ value: true,
428
+ writable: false,
428
429
  enumerable: true,
429
430
  configurable: false
430
431
  });
@@ -438,7 +439,7 @@ Object .defineProperty (X3DExternProtoDeclaration .prototype, "urls",
438
439
 
439
440
  Object .defineProperty (X3DExternProtoDeclaration .prototype, "loadState",
440
441
  {
441
- get: function () { return this .checkLoadState (); },
442
+ get: X3DExternProtoDeclaration .prototype .checkLoadState,
442
443
  enumerable: true,
443
444
  configurable: false
444
445
  });
@@ -544,21 +544,22 @@ for (const key of Reflect .ownKeys (X3DProtoDeclaration .prototype))
544
544
 
545
545
  Object .defineProperty (X3DProtoDeclaration .prototype, "name",
546
546
  {
547
- get: function () { return this .getName (); },
547
+ get: X3DProtoDeclaration .prototype .getName,
548
548
  enumerable: true,
549
549
  configurable: false
550
550
  });
551
551
 
552
552
  Object .defineProperty (X3DProtoDeclaration .prototype, "fields",
553
553
  {
554
- get: function () { return this .getFieldDefinitions (); },
554
+ get: X3DProtoDeclaration .prototype .getFieldDefinitions,
555
555
  enumerable: true,
556
556
  configurable: false
557
557
  });
558
558
 
559
559
  Object .defineProperty (X3DProtoDeclaration .prototype, "isExternProto",
560
560
  {
561
- get: function () { return false; },
561
+ value: false,
562
+ writable: false,
562
563
  enumerable: true,
563
564
  configurable: false
564
565
  });
@@ -1,52 +0,0 @@
1
- ---
2
- # the default layout is 'page'
3
- title: Imprint
4
- icon: fas fa-info-circle
5
- order: 7
6
- ---
7
- ## Contact
8
-
9
- **Holger Seelig**<br/>
10
- Scheffelstraße 31a<br/>
11
- 04277 Leipzig<br/>
12
- Germany
13
-
14
- **Phone**<br/>
15
- [+49 176 42 04 79 37](tel:+4917642047937)
16
-
17
- **E-Mail**<br/>
18
- <holger.seelig@gmail.com>
19
-
20
- ## Copyright
21
-
22
- X_ITE and all its publication like this website are free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 only, as published by the Free Software Foundation.
23
-
24
- X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more details (a copy is included in the LICENSE file that accompanied this code).
25
-
26
- You should have received a copy of the GNU General Public License version 3 along with X_ITE. If not, see <http://www.gnu.org/licenses/gpl.html> for a copy of the GPLv3 License.
27
-
28
- ## Non-military use only
29
-
30
- All create3000 software are effectively free software with a non-military use restriction. It is free. Well commented source is provided. You may reuse the source in any way you please with the exception anything that uses it must be marked to indicate is contains »non-military use only« components.
31
-
32
- ## Content
33
-
34
- The author reserves the right not to be responsible for the topicality, correctness, completeness or quality of the information provided. Liability claims regarding damage caused by the use of any information provided, including any kind of information which is incomplete or incorrect, will therefore be rejected.
35
-
36
- All offers are not-binding and without obligation. Parts of the pages or the complete publication including all offers and information might be extended, changed or partly or completely deleted by the author without separate announcement.
37
-
38
- ## Referrals and links
39
-
40
- The author is not responsible for any contents linked or referred to from his pages — unless he has full knowledge of illegal contents and would be able to prevent the visitors of his site from viewing those pages. If any damage occurs by the use of information presented there, only the author of the respective pages might be liable, not the one who has linked to these pages. Furthermore the author is not liable for any postings or messages published by users of discussion boards, guestbooks or mailinglists provided on his page.
41
-
42
- ## Privacy policy
43
-
44
- If the opportunity for the input of personal or business data (email addresses, name, addresses) is given, the input of these data takes place voluntarily. The use and payment of all offered services are permitted — if and so far technically possible and reasonable - without specification of any personal data or under specification of anonymized data or an alias. The use of published postal addresses, telephone or fax numbers and email addresses for marketing purposes is prohibited, offenders sending unwanted spam messages will be punished.
45
-
46
- ## Legal validity of this disclaimer
47
-
48
- This disclaimer is to be regarded as part of the internet publication which you were referred from. If sections or individual terms of this statement are not legal or correct, the content or validity of the other parts remain uninfluenced by this fact.
49
-
50
- ## Responsibility
51
-
52
- (see above)