x_ite 11.5.10 → 11.5.12

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 (57) hide show
  1. package/README.md +4 -4
  2. package/dist/X3DUOM.xml +2 -0
  3. package/dist/assets/components/AnnotationComponent.js +2 -378
  4. package/dist/assets/components/AnnotationComponent.min.js +2 -2
  5. package/dist/assets/components/CADGeometryComponent.js +2 -378
  6. package/dist/assets/components/CADGeometryComponent.min.js +2 -2
  7. package/dist/assets/components/CubeMapTexturingComponent.js +7 -336
  8. package/dist/assets/components/CubeMapTexturingComponent.min.js +2 -2
  9. package/dist/assets/components/DISComponent.js +2 -331
  10. package/dist/assets/components/DISComponent.min.js +2 -2
  11. package/dist/assets/components/EventUtilitiesComponent.js +2 -472
  12. package/dist/assets/components/EventUtilitiesComponent.min.js +2 -2
  13. package/dist/assets/components/Geometry2DComponent.js +2 -707
  14. package/dist/assets/components/Geometry2DComponent.min.js +2 -2
  15. package/dist/assets/components/GeospatialComponent.js +4 -897
  16. package/dist/assets/components/GeospatialComponent.min.js +2 -2
  17. package/dist/assets/components/HAnimComponent.js +83 -337
  18. package/dist/assets/components/HAnimComponent.min.js +2 -2
  19. package/dist/assets/components/KeyDeviceSensorComponent.js +2 -237
  20. package/dist/assets/components/KeyDeviceSensorComponent.min.js +2 -2
  21. package/dist/assets/components/LayoutComponent.js +2 -425
  22. package/dist/assets/components/LayoutComponent.min.js +2 -2
  23. package/dist/assets/components/NURBSComponent.js +3 -896
  24. package/dist/assets/components/NURBSComponent.min.js +2 -2
  25. package/dist/assets/components/ParticleSystemsComponent.js +26 -732
  26. package/dist/assets/components/ParticleSystemsComponent.min.js +2 -2
  27. package/dist/assets/components/PickingComponent.js +2 -566
  28. package/dist/assets/components/PickingComponent.min.js +2 -2
  29. package/dist/assets/components/RigidBodyPhysicsComponent.js +2 -942
  30. package/dist/assets/components/RigidBodyPhysicsComponent.min.js +2 -2
  31. package/dist/assets/components/ScriptingComponent.js +2 -190
  32. package/dist/assets/components/ScriptingComponent.min.js +2 -2
  33. package/dist/assets/components/TextComponent.js +2 -379
  34. package/dist/assets/components/TextComponent.min.js +2 -2
  35. package/dist/assets/components/TextureProjectionComponent.js +8 -196
  36. package/dist/assets/components/TextureProjectionComponent.min.js +2 -2
  37. package/dist/assets/components/Texturing3DComponent.js +3569 -4133
  38. package/dist/assets/components/Texturing3DComponent.min.js +2 -2
  39. package/dist/assets/components/VolumeRenderingComponent.js +11 -906
  40. package/dist/assets/components/VolumeRenderingComponent.min.js +2 -2
  41. package/dist/assets/components/WebXRComponent.js +5 -145
  42. package/dist/assets/components/WebXRComponent.min.js +2 -2
  43. package/dist/assets/components/X_ITEComponent.js +273 -901
  44. package/dist/assets/components/X_ITEComponent.min.js +2 -2
  45. package/dist/assets/fonts/PT_Sans/OFL.txt +94 -94
  46. package/dist/assets/lib/draco_decoder_gltf.js +1 -1
  47. package/dist/assets/lib/libktx.js +1 -1
  48. package/dist/assets/lib/libktx.wasm +0 -0
  49. package/dist/assets/lib/woff2_decoder.js +1 -1
  50. package/dist/example.html +1 -1
  51. package/dist/x_ite.css +1 -1
  52. package/dist/x_ite.js +50500 -70043
  53. package/dist/x_ite.min.js +2 -2
  54. package/dist/x_ite.min.mjs +2 -2
  55. package/dist/x_ite.mjs +50447 -69990
  56. package/dist/x_ite.zip +0 -0
  57. package/package.json +2 -2
package/README.md CHANGED
@@ -36,10 +36,10 @@ If you are going to use X_ITE in a production environment, you should use a fixe
36
36
  jsDelivr is an open-source content delivery network (CDN) renowned for its no-cost access, swift performance, and reliable service.
37
37
 
38
38
  ```html
39
- <script defer src="https://cdn.jsdelivr.net/npm/x_ite@11.5.10/dist/x_ite.min.js"></script>
39
+ <script defer src="https://cdn.jsdelivr.net/npm/x_ite@11.5.12/dist/x_ite.min.js"></script>
40
40
  <!-- or as ES module for use in scripts -->
41
41
  <script type="module">
42
- import X3D from "https://cdn.jsdelivr.net/npm/x_ite@11.5.10/dist/x_ite.min.mjs";
42
+ import X3D from "https://cdn.jsdelivr.net/npm/x_ite@11.5.12/dist/x_ite.min.mjs";
43
43
  </script>
44
44
  ```
45
45
 
@@ -68,7 +68,7 @@ This script initializes an X3D canvas within an HTML page, configuring it to con
68
68
  ### Declarative Syntax
69
69
 
70
70
  ```html
71
- <script defer src="https://cdn.jsdelivr.net/npm/x_ite@11.5.10/dist/x_ite.min.js"></script>
71
+ <script defer src="https://cdn.jsdelivr.net/npm/x_ite@11.5.12/dist/x_ite.min.js"></script>
72
72
  <x3d-canvas update="auto" contentScale="auto">
73
73
  <X3D profile='Interchange' version='4.0'>
74
74
  <head>
@@ -107,7 +107,7 @@ The same scene can also be created using pure JavaScript:
107
107
 
108
108
  ```html
109
109
  <script type="module">
110
- import X3D from "https://cdn.jsdelivr.net/npm/x_ite@11.5.10/dist/x_ite.min.mjs";
110
+ import X3D from "https://cdn.jsdelivr.net/npm/x_ite@11.5.12/dist/x_ite.min.mjs";
111
111
 
112
112
  const
113
113
  canvas = document .createElement ("x3d-canvas"), // Or get an already inserted <x3d-canvas> element.
package/dist/X3DUOM.xml CHANGED
@@ -1120,6 +1120,7 @@
1120
1120
  accessType="inputOutput"
1121
1121
  default="0"
1122
1122
  minInclusive="0"
1123
+ maxInclusive="1"
1123
1124
  description="The base percentage of light that is transmitted through the surface."
1124
1125
  />
1125
1126
  <field name="transmissionTextureMapping"
@@ -1209,6 +1210,7 @@
1209
1210
  accessType="inputOutput"
1210
1211
  default="0"
1211
1212
  minInclusive="0"
1213
+ maxInclusive="1"
1212
1214
  description="The percentage of reflected, non-specularly reflected light that is transmitted through the surface via the Lambertian diffuse transmission, i.e., the strength of the diffuse transmission effect."
1213
1215
  ></field>
1214
1216
  <field name="diffuseTransmissionTextureMapping"
@@ -1,5 +1,5 @@
1
- /* X_ITE v11.5.10 */
2
- const __X_ITE_X3D__ = window [Symbol .for ("X_ITE.X3D-11.5.10")];
1
+ /* X_ITE v11.5.12 */
2
+ const __X_ITE_X3D__ = window [Symbol .for ("X_ITE.X3D-11.5.12")];
3
3
  /******/ (() => { // webpackBootstrap
4
4
  /******/ "use strict";
5
5
  /******/ // The require scope
@@ -70,53 +70,6 @@ var external_X_ITE_X3D_X3DConstants_default = /*#__PURE__*/__webpack_require__.n
70
70
  const external_X_ITE_X3D_Namespace_namespaceObject = __X_ITE_X3D__ .Namespace;
71
71
  var external_X_ITE_X3D_Namespace_default = /*#__PURE__*/__webpack_require__.n(external_X_ITE_X3D_Namespace_namespaceObject);
72
72
  ;// ./src/x_ite/Components/Annotation/AnnotationLayer.js
73
- /*******************************************************************************
74
- *
75
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
76
- *
77
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
78
- *
79
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
80
- *
81
- * The copyright notice above does not evidence any actual of intended
82
- * publication of such source code, and is an unpublished work by create3000.
83
- * This material contains CONFIDENTIAL INFORMATION that is the property of
84
- * create3000.
85
- *
86
- * No permission is granted to copy, distribute, or create derivative works from
87
- * the contents of this software, in whole or in part, without the prior written
88
- * permission of create3000.
89
- *
90
- * NON-MILITARY USE ONLY
91
- *
92
- * All create3000 software are effectively free software with a non-military use
93
- * restriction. It is free. Well commented source is provided. You may reuse the
94
- * source in any way you please with the exception anything that uses it must be
95
- * marked to indicate is contains 'non-military use only' components.
96
- *
97
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
98
- *
99
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
100
- *
101
- * This file is part of the X_ITE Project.
102
- *
103
- * X_ITE is free software: you can redistribute it and/or modify it under the
104
- * terms of the GNU General Public License version 3 only, as published by the
105
- * Free Software Foundation.
106
- *
107
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
108
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
109
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
110
- * details (a copy is included in the LICENSE file that accompanied this code).
111
- *
112
- * You should have received a copy of the GNU General Public License version 3
113
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
114
- * copy of the GPLv3 License.
115
- *
116
- * For Silvio, Joy and Adi.
117
- *
118
- ******************************************************************************/
119
-
120
73
 
121
74
 
122
75
 
@@ -168,53 +121,6 @@ const __default__ = AnnotationLayer;
168
121
  const external_X_ITE_X3D_X3DChildNode_namespaceObject = __X_ITE_X3D__ .X3DChildNode;
169
122
  var external_X_ITE_X3D_X3DChildNode_default = /*#__PURE__*/__webpack_require__.n(external_X_ITE_X3D_X3DChildNode_namespaceObject);
170
123
  ;// ./src/x_ite/Components/Annotation/AnnotationTarget.js
171
- /*******************************************************************************
172
- *
173
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
174
- *
175
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
176
- *
177
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
178
- *
179
- * The copyright notice above does not evidence any actual of intended
180
- * publication of such source code, and is an unpublished work by create3000.
181
- * This material contains CONFIDENTIAL INFORMATION that is the property of
182
- * create3000.
183
- *
184
- * No permission is granted to copy, distribute, or create derivative works from
185
- * the contents of this software, in whole or in part, without the prior written
186
- * permission of create3000.
187
- *
188
- * NON-MILITARY USE ONLY
189
- *
190
- * All create3000 software are effectively free software with a non-military use
191
- * restriction. It is free. Well commented source is provided. You may reuse the
192
- * source in any way you please with the exception anything that uses it must be
193
- * marked to indicate is contains 'non-military use only' components.
194
- *
195
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
196
- *
197
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
198
- *
199
- * This file is part of the X_ITE Project.
200
- *
201
- * X_ITE is free software: you can redistribute it and/or modify it under the
202
- * terms of the GNU General Public License version 3 only, as published by the
203
- * Free Software Foundation.
204
- *
205
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
206
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
207
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
208
- * details (a copy is included in the LICENSE file that accompanied this code).
209
- *
210
- * You should have received a copy of the GNU General Public License version 3
211
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
212
- * copy of the GPLv3 License.
213
- *
214
- * For Silvio, Joy and Adi.
215
- *
216
- ******************************************************************************/
217
-
218
124
 
219
125
 
220
126
 
@@ -261,53 +167,6 @@ const AnnotationTarget_default_ = AnnotationTarget;
261
167
  const external_X_ITE_X3D_X3DGroupingNode_namespaceObject = __X_ITE_X3D__ .X3DGroupingNode;
262
168
  var external_X_ITE_X3D_X3DGroupingNode_default = /*#__PURE__*/__webpack_require__.n(external_X_ITE_X3D_X3DGroupingNode_namespaceObject);
263
169
  ;// ./src/x_ite/Components/Annotation/X3DAnnotationNode.js
264
- /*******************************************************************************
265
- *
266
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
267
- *
268
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
269
- *
270
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
271
- *
272
- * The copyright notice above does not evidence any actual of intended
273
- * publication of such source code, and is an unpublished work by create3000.
274
- * This material contains CONFIDENTIAL INFORMATION that is the property of
275
- * create3000.
276
- *
277
- * No permission is granted to copy, distribute, or create derivative works from
278
- * the contents of this software, in whole or in part, without the prior written
279
- * permission of create3000.
280
- *
281
- * NON-MILITARY USE ONLY
282
- *
283
- * All create3000 software are effectively free software with a non-military use
284
- * restriction. It is free. Well commented source is provided. You may reuse the
285
- * source in any way you please with the exception anything that uses it must be
286
- * marked to indicate is contains 'non-military use only' components.
287
- *
288
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
289
- *
290
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
291
- *
292
- * This file is part of the X_ITE Project.
293
- *
294
- * X_ITE is free software: you can redistribute it and/or modify it under the
295
- * terms of the GNU General Public License version 3 only, as published by the
296
- * Free Software Foundation.
297
- *
298
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
299
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
300
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
301
- * details (a copy is included in the LICENSE file that accompanied this code).
302
- *
303
- * You should have received a copy of the GNU General Public License version 3
304
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
305
- * copy of the GPLv3 License.
306
- *
307
- * For Silvio, Joy and Adi.
308
- *
309
- ******************************************************************************/
310
-
311
170
 
312
171
 
313
172
 
@@ -334,53 +193,6 @@ const X3DAnnotationNode_default_ = X3DAnnotationNode;
334
193
 
335
194
  /* harmony default export */ const Annotation_X3DAnnotationNode = (external_X_ITE_X3D_Namespace_default().add ("X3DAnnotationNode", X3DAnnotationNode_default_));
336
195
  ;// ./src/x_ite/Components/Annotation/GroupAnnotation.js
337
- /*******************************************************************************
338
- *
339
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
340
- *
341
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
342
- *
343
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
344
- *
345
- * The copyright notice above does not evidence any actual of intended
346
- * publication of such source code, and is an unpublished work by create3000.
347
- * This material contains CONFIDENTIAL INFORMATION that is the property of
348
- * create3000.
349
- *
350
- * No permission is granted to copy, distribute, or create derivative works from
351
- * the contents of this software, in whole or in part, without the prior written
352
- * permission of create3000.
353
- *
354
- * NON-MILITARY USE ONLY
355
- *
356
- * All create3000 software are effectively free software with a non-military use
357
- * restriction. It is free. Well commented source is provided. You may reuse the
358
- * source in any way you please with the exception anything that uses it must be
359
- * marked to indicate is contains 'non-military use only' components.
360
- *
361
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
362
- *
363
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
364
- *
365
- * This file is part of the X_ITE Project.
366
- *
367
- * X_ITE is free software: you can redistribute it and/or modify it under the
368
- * terms of the GNU General Public License version 3 only, as published by the
369
- * Free Software Foundation.
370
- *
371
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
372
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
373
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
374
- * details (a copy is included in the LICENSE file that accompanied this code).
375
- *
376
- * You should have received a copy of the GNU General Public License version 3
377
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
378
- * copy of the GPLv3 License.
379
- *
380
- * For Silvio, Joy and Adi.
381
- *
382
- ******************************************************************************/
383
-
384
196
 
385
197
 
386
198
 
@@ -442,53 +254,6 @@ const GroupAnnotation_default_ = GroupAnnotation;
442
254
  const external_X_ITE_X3D_X3DUrlObject_namespaceObject = __X_ITE_X3D__ .X3DUrlObject;
443
255
  var external_X_ITE_X3D_X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(external_X_ITE_X3D_X3DUrlObject_namespaceObject);
444
256
  ;// ./src/x_ite/Components/Annotation/IconAnnotation.js
445
- /*******************************************************************************
446
- *
447
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
448
- *
449
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
450
- *
451
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
452
- *
453
- * The copyright notice above does not evidence any actual of intended
454
- * publication of such source code, and is an unpublished work by create3000.
455
- * This material contains CONFIDENTIAL INFORMATION that is the property of
456
- * create3000.
457
- *
458
- * No permission is granted to copy, distribute, or create derivative works from
459
- * the contents of this software, in whole or in part, without the prior written
460
- * permission of create3000.
461
- *
462
- * NON-MILITARY USE ONLY
463
- *
464
- * All create3000 software are effectively free software with a non-military use
465
- * restriction. It is free. Well commented source is provided. You may reuse the
466
- * source in any way you please with the exception anything that uses it must be
467
- * marked to indicate is contains 'non-military use only' components.
468
- *
469
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
470
- *
471
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
472
- *
473
- * This file is part of the X_ITE Project.
474
- *
475
- * X_ITE is free software: you can redistribute it and/or modify it under the
476
- * terms of the GNU General Public License version 3 only, as published by the
477
- * Free Software Foundation.
478
- *
479
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
480
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
481
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
482
- * details (a copy is included in the LICENSE file that accompanied this code).
483
- *
484
- * You should have received a copy of the GNU General Public License version 3
485
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
486
- * copy of the GPLv3 License.
487
- *
488
- * For Silvio, Joy and Adi.
489
- *
490
- ******************************************************************************/
491
-
492
257
 
493
258
 
494
259
 
@@ -545,53 +310,6 @@ const IconAnnotation_default_ = IconAnnotation;
545
310
 
546
311
  /* harmony default export */ const Annotation_IconAnnotation = (external_X_ITE_X3D_Namespace_default().add ("IconAnnotation", IconAnnotation_default_));
547
312
  ;// ./src/x_ite/Components/Annotation/TextAnnotation.js
548
- /*******************************************************************************
549
- *
550
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
551
- *
552
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
553
- *
554
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
555
- *
556
- * The copyright notice above does not evidence any actual of intended
557
- * publication of such source code, and is an unpublished work by create3000.
558
- * This material contains CONFIDENTIAL INFORMATION that is the property of
559
- * create3000.
560
- *
561
- * No permission is granted to copy, distribute, or create derivative works from
562
- * the contents of this software, in whole or in part, without the prior written
563
- * permission of create3000.
564
- *
565
- * NON-MILITARY USE ONLY
566
- *
567
- * All create3000 software are effectively free software with a non-military use
568
- * restriction. It is free. Well commented source is provided. You may reuse the
569
- * source in any way you please with the exception anything that uses it must be
570
- * marked to indicate is contains 'non-military use only' components.
571
- *
572
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
573
- *
574
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
575
- *
576
- * This file is part of the X_ITE Project.
577
- *
578
- * X_ITE is free software: you can redistribute it and/or modify it under the
579
- * terms of the GNU General Public License version 3 only, as published by the
580
- * Free Software Foundation.
581
- *
582
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
583
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
584
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
585
- * details (a copy is included in the LICENSE file that accompanied this code).
586
- *
587
- * You should have received a copy of the GNU General Public License version 3
588
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
589
- * copy of the GPLv3 License.
590
- *
591
- * For Silvio, Joy and Adi.
592
- *
593
- ******************************************************************************/
594
-
595
313
 
596
314
 
597
315
 
@@ -636,53 +354,6 @@ const TextAnnotation_default_ = TextAnnotation;
636
354
 
637
355
  /* harmony default export */ const Annotation_TextAnnotation = (external_X_ITE_X3D_Namespace_default().add ("TextAnnotation", TextAnnotation_default_));
638
356
  ;// ./src/x_ite/Components/Annotation/URLAnnotation.js
639
- /*******************************************************************************
640
- *
641
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
642
- *
643
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
644
- *
645
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
646
- *
647
- * The copyright notice above does not evidence any actual of intended
648
- * publication of such source code, and is an unpublished work by create3000.
649
- * This material contains CONFIDENTIAL INFORMATION that is the property of
650
- * create3000.
651
- *
652
- * No permission is granted to copy, distribute, or create derivative works from
653
- * the contents of this software, in whole or in part, without the prior written
654
- * permission of create3000.
655
- *
656
- * NON-MILITARY USE ONLY
657
- *
658
- * All create3000 software are effectively free software with a non-military use
659
- * restriction. It is free. Well commented source is provided. You may reuse the
660
- * source in any way you please with the exception anything that uses it must be
661
- * marked to indicate is contains 'non-military use only' components.
662
- *
663
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
664
- *
665
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
666
- *
667
- * This file is part of the X_ITE Project.
668
- *
669
- * X_ITE is free software: you can redistribute it and/or modify it under the
670
- * terms of the GNU General Public License version 3 only, as published by the
671
- * Free Software Foundation.
672
- *
673
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
674
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
675
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
676
- * details (a copy is included in the LICENSE file that accompanied this code).
677
- *
678
- * You should have received a copy of the GNU General Public License version 3
679
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
680
- * copy of the GPLv3 License.
681
- *
682
- * For Silvio, Joy and Adi.
683
- *
684
- ******************************************************************************/
685
-
686
357
 
687
358
 
688
359
 
@@ -726,53 +397,6 @@ const URLAnnotation_default_ = URLAnnotation;
726
397
 
727
398
  /* harmony default export */ const Annotation_URLAnnotation = (external_X_ITE_X3D_Namespace_default().add ("URLAnnotation", URLAnnotation_default_));
728
399
  ;// ./src/assets/components/AnnotationComponent.js
729
- /*******************************************************************************
730
- *
731
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
732
- *
733
- * Copyright create3000, Scheffelstraße 31a, Leipzig, Germany 2011 - 2022.
734
- *
735
- * All rights reserved. Holger Seelig <holger.seelig@yahoo.de>.
736
- *
737
- * The copyright notice above does not evidence any actual of intended
738
- * publication of such source code, and is an unpublished work by create3000.
739
- * This material contains CONFIDENTIAL INFORMATION that is the property of
740
- * create3000.
741
- *
742
- * No permission is granted to copy, distribute, or create derivative works from
743
- * the contents of this software, in whole or in part, without the prior written
744
- * permission of create3000.
745
- *
746
- * NON-MILITARY USE ONLY
747
- *
748
- * All create3000 software are effectively free software with a non-military use
749
- * restriction. It is free. Well commented source is provided. You may reuse the
750
- * source in any way you please with the exception anything that uses it must be
751
- * marked to indicate is contains 'non-military use only' components.
752
- *
753
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
754
- *
755
- * Copyright 2011 - 2022, Holger Seelig <holger.seelig@yahoo.de>.
756
- *
757
- * This file is part of the X_ITE Project.
758
- *
759
- * X_ITE is free software: you can redistribute it and/or modify it under the
760
- * terms of the GNU General Public License version 3 only, as published by the
761
- * Free Software Foundation.
762
- *
763
- * X_ITE is distributed in the hope that it will be useful, but WITHOUT ANY
764
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
765
- * A PARTICULAR PURPOSE. See the GNU General Public License version 3 for more
766
- * details (a copy is included in the LICENSE file that accompanied this code).
767
- *
768
- * You should have received a copy of the GNU General Public License version 3
769
- * along with X_ITE. If not, see <https://www.gnu.org/licenses/gpl.html> for a
770
- * copy of the GPLv3 License.
771
- *
772
- * For Silvio, Joy and Adi.
773
- *
774
- ******************************************************************************/
775
-
776
400
 
777
401
 
778
402
 
@@ -1,2 +1,2 @@
1
- /* X_ITE v11.5.10 */
2
- const t=window[Symbol.for("X_ITE.X3D-11.5.10")];(()=>{var n={n:t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},d:(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},o:(t,n)=>Object.prototype.hasOwnProperty.call(t,n)};const e=t.Components;var i=n.n(e);const o=t.Fields;var a=n.n(o);const p=t.X3DFieldDefinition;var r=n.n(p);const u=t.FieldDefinitionArray;var l=n.n(u);const s=t.X3DNode;var d=n.n(s);const c=t.X3DLayerNode;var w=n.n(c);const y=t.Viewpoint;var O=n.n(y);const S=t.Group;var f=n.n(S);const b=t.X3DConstants;var h=n.n(b);const F=t.Namespace;var g=n.n(F);function A(t){w().call(this,t,new(O())(t),new(f())(t)),this.addType(h().AnnotationLayer)}Object.assign(Object.setPrototypeOf(A.prototype,w().prototype),{initialize(){w().prototype.initialize.call(this)}}),Object.defineProperties(A,{...d().getStaticProperties("AnnotationLayer","Annotation",1,"layers","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"isPickable",new(a().SFBool)(!0)),new(r())(h().inputOutput,"layoutPolicy",new(a().MFString)),new(r())(h().inputOutput,"shownGroupID",new(a().MFString)),new(r())(h().inputOutput,"viewport",new(a().SFNode))]),enumerable:!0}});const P=A,N=g().add("AnnotationLayer",P),m=t.X3DChildNode;var v=n.n(m);function D(t){v().call(this,t),this.addType(h().AnnotationTarget)}Object.assign(Object.setPrototypeOf(D.prototype,v().prototype),{initialize(){v().prototype.initialize.call(this)}}),Object.defineProperties(D,{...d().getStaticProperties("AnnotationTarget","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"referencePoint",new(a().SFVec3f)),new(r())(h().inputOutput,"leadLineStyle",new(a().SFNode)),new(r())(h().inputOutput,"marker",new(a().SFNode)),new(r())(h().inputOutput,"annotations",new(a().MFNode))]),enumerable:!0}});const j=D,z=g().add("AnnotationTarget",j),T=t.X3DGroupingNode;var X=n.n(T);function G(t){v().call(this,t),this.addType(h().X3DAnnotationNode)}Object.assign(Object.setPrototypeOf(G.prototype,v().prototype),{initialize(){v().prototype.initialize.call(this)}}),Object.defineProperties(G,d().getStaticProperties("X3DAnnotationNode","Annotation",1));const I=G,L=g().add("X3DAnnotationNode",I);function E(t){X().call(this,t),L.call(this,t),this.addType(h().GroupAnnotation)}Object.assign(Object.setPrototypeOf(E.prototype,X().prototype),L.prototype,{initialize(){X().prototype.initialize.call(this),L.prototype.initialize.call(this)},dispose(){L.prototype.dispose.call(this),X().prototype.dispose.call(this)}}),Object.defineProperties(E,{...d().getStaticProperties("GroupAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"visible",new(a().SFBool)(!0)),new(r())(h().inputOutput,"bboxDisplay",new(a().SFBool)),new(r())(h().initializeOnly,"bboxSize",new(a().SFVec3f)(-1,-1,-1)),new(r())(h().initializeOnly,"bboxCenter",new(a().SFVec3f)),new(r())(h().inputOnly,"addChildren",new(a().MFNode)),new(r())(h().inputOnly,"removeChildren",new(a().MFNode)),new(r())(h().inputOutput,"children",new(a().MFNode))]),enumerable:!0}});const M=E,R=g().add("GroupAnnotation",M),x=t.X3DUrlObject;var V=n.n(x);function B(t){L.call(this,t),V().call(this,t),this.addType(h().IconAnnotation)}Object.assign(Object.setPrototypeOf(B.prototype,L.prototype),V().prototype,{initialize(){L.prototype.initialize.call(this),V().prototype.initialize.call(this)},async requestImmediateLoad(t=!0){},dispose(){V().prototype.dispose.call(this),L.prototype.dispose.call(this)}}),Object.defineProperties(B,{...d().getStaticProperties("IconAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"url",new(a().MFString)),new(r())(h().inputOutput,"autoRefresh",new(a().SFTime)(0)),new(r())(h().inputOutput,"autoRefreshTimeLimit",new(a().SFTime)(3600))]),enumerable:!0}});const C=B,U=g().add("IconAnnotation",C);function _(t){L.call(this,t),this.addType(h().TextAnnotation)}Object.assign(Object.setPrototypeOf(_.prototype,L.prototype),{initialize(){L.prototype.initialize.call(this)}}),Object.defineProperties(_,{...d().getStaticProperties("TextAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"contentType",new(a().SFString)("text/plain")),new(r())(h().inputOutput,"text",new(a().SFString))]),enumerable:!0}});const k=_,q=g().add("TextAnnotation",k);function H(t){L.call(this,t),this.addType(h().URLAnnotation)}Object.assign(Object.setPrototypeOf(H.prototype,L.prototype),{initialize(){L.prototype.initialize.call(this)}}),Object.defineProperties(H,{...d().getStaticProperties("URLAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"url",new(a().MFString))]),enumerable:!0}});const J=H,K=g().add("URLAnnotation",J);i().add({name:"Annotation",concreteNodes:[N,z,R,U,q,K],abstractNodes:[L]});g().add("AnnotationComponent",undefined)})();
1
+ /* X_ITE v11.5.12 */
2
+ const t=window[Symbol.for("X_ITE.X3D-11.5.12")];(()=>{var n={n:t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},d:(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},o:(t,n)=>Object.prototype.hasOwnProperty.call(t,n)};const e=t.Components;var i=n.n(e);const o=t.Fields;var a=n.n(o);const p=t.X3DFieldDefinition;var r=n.n(p);const u=t.FieldDefinitionArray;var l=n.n(u);const s=t.X3DNode;var d=n.n(s);const c=t.X3DLayerNode;var w=n.n(c);const y=t.Viewpoint;var O=n.n(y);const S=t.Group;var f=n.n(S);const b=t.X3DConstants;var h=n.n(b);const F=t.Namespace;var g=n.n(F);function A(t){w().call(this,t,new(O())(t),new(f())(t)),this.addType(h().AnnotationLayer)}Object.assign(Object.setPrototypeOf(A.prototype,w().prototype),{initialize(){w().prototype.initialize.call(this)}}),Object.defineProperties(A,{...d().getStaticProperties("AnnotationLayer","Annotation",1,"layers","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"isPickable",new(a().SFBool)(!0)),new(r())(h().inputOutput,"layoutPolicy",new(a().MFString)),new(r())(h().inputOutput,"shownGroupID",new(a().MFString)),new(r())(h().inputOutput,"viewport",new(a().SFNode))]),enumerable:!0}});const P=A,N=g().add("AnnotationLayer",P),m=t.X3DChildNode;var v=n.n(m);function D(t){v().call(this,t),this.addType(h().AnnotationTarget)}Object.assign(Object.setPrototypeOf(D.prototype,v().prototype),{initialize(){v().prototype.initialize.call(this)}}),Object.defineProperties(D,{...d().getStaticProperties("AnnotationTarget","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"referencePoint",new(a().SFVec3f)),new(r())(h().inputOutput,"leadLineStyle",new(a().SFNode)),new(r())(h().inputOutput,"marker",new(a().SFNode)),new(r())(h().inputOutput,"annotations",new(a().MFNode))]),enumerable:!0}});const j=D,z=g().add("AnnotationTarget",j),T=t.X3DGroupingNode;var X=n.n(T);function G(t){v().call(this,t),this.addType(h().X3DAnnotationNode)}Object.assign(Object.setPrototypeOf(G.prototype,v().prototype),{initialize(){v().prototype.initialize.call(this)}}),Object.defineProperties(G,d().getStaticProperties("X3DAnnotationNode","Annotation",1));const I=G,L=g().add("X3DAnnotationNode",I);function E(t){X().call(this,t),L.call(this,t),this.addType(h().GroupAnnotation)}Object.assign(Object.setPrototypeOf(E.prototype,X().prototype),L.prototype,{initialize(){X().prototype.initialize.call(this),L.prototype.initialize.call(this)},dispose(){L.prototype.dispose.call(this),X().prototype.dispose.call(this)}}),Object.defineProperties(E,{...d().getStaticProperties("GroupAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"visible",new(a().SFBool)(!0)),new(r())(h().inputOutput,"bboxDisplay",new(a().SFBool)),new(r())(h().initializeOnly,"bboxSize",new(a().SFVec3f)(-1,-1,-1)),new(r())(h().initializeOnly,"bboxCenter",new(a().SFVec3f)),new(r())(h().inputOnly,"addChildren",new(a().MFNode)),new(r())(h().inputOnly,"removeChildren",new(a().MFNode)),new(r())(h().inputOutput,"children",new(a().MFNode))]),enumerable:!0}});const M=E,R=g().add("GroupAnnotation",M),x=t.X3DUrlObject;var V=n.n(x);function B(t){L.call(this,t),V().call(this,t),this.addType(h().IconAnnotation)}Object.assign(Object.setPrototypeOf(B.prototype,L.prototype),V().prototype,{initialize(){L.prototype.initialize.call(this),V().prototype.initialize.call(this)},async requestImmediateLoad(t=!0){},dispose(){V().prototype.dispose.call(this),L.prototype.dispose.call(this)}}),Object.defineProperties(B,{...d().getStaticProperties("IconAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"url",new(a().MFString)),new(r())(h().inputOutput,"autoRefresh",new(a().SFTime)(0)),new(r())(h().inputOutput,"autoRefreshTimeLimit",new(a().SFTime)(3600))]),enumerable:!0}});const C=B,U=g().add("IconAnnotation",C);function _(t){L.call(this,t),this.addType(h().TextAnnotation)}Object.assign(Object.setPrototypeOf(_.prototype,L.prototype),{initialize(){L.prototype.initialize.call(this)}}),Object.defineProperties(_,{...d().getStaticProperties("TextAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"contentType",new(a().SFString)("text/plain")),new(r())(h().inputOutput,"text",new(a().SFString))]),enumerable:!0}});const k=_,q=g().add("TextAnnotation",k);function H(t){L.call(this,t),this.addType(h().URLAnnotation)}Object.assign(Object.setPrototypeOf(H.prototype,L.prototype),{initialize(){L.prototype.initialize.call(this)}}),Object.defineProperties(H,{...d().getStaticProperties("URLAnnotation","Annotation",1,"children","4.0"),fieldDefinitions:{value:new(l())([new(r())(h().inputOutput,"metadata",new(a().SFNode)),new(r())(h().inputOutput,"enabled",new(a().SFBool)(!0)),new(r())(h().inputOutput,"annotationGroupID",new(a().SFString)),new(r())(h().inputOutput,"displayPolicy",new(a().SFString)("NEVER")),new(r())(h().inputOutput,"url",new(a().MFString))]),enumerable:!0}});const J=H,K=g().add("URLAnnotation",J);i().add({name:"Annotation",concreteNodes:[N,z,R,U,q,K],abstractNodes:[L]});g().add("AnnotationComponent",undefined)})();