x_ite 10.0.4 → 10.0.5

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 (53) hide show
  1. package/LICENSE.md +5 -5
  2. package/README.md +4 -4
  3. package/dist/LICENSE.md +5 -5
  4. package/dist/X3DUOM.xml +1 -0
  5. package/dist/assets/components/Annotation.js +13 -14
  6. package/dist/assets/components/Annotation.min.js +1 -1
  7. package/dist/assets/components/CADGeometry.js +14 -15
  8. package/dist/assets/components/CADGeometry.min.js +1 -1
  9. package/dist/assets/components/CubeMapTexturing.js +25 -26
  10. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  11. package/dist/assets/components/DIS.js +13 -14
  12. package/dist/assets/components/DIS.min.js +1 -1
  13. package/dist/assets/components/EventUtilities.js +9 -10
  14. package/dist/assets/components/EventUtilities.min.js +1 -1
  15. package/dist/assets/components/Geometry2D.js +18 -19
  16. package/dist/assets/components/Geometry2D.min.js +1 -1
  17. package/dist/assets/components/Geospatial.js +33 -34
  18. package/dist/assets/components/Geospatial.min.js +1 -1
  19. package/dist/assets/components/HAnim.js +23 -24
  20. package/dist/assets/components/HAnim.min.js +1 -1
  21. package/dist/assets/components/KeyDeviceSensor.js +8 -9
  22. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  23. package/dist/assets/components/Layout.js +27 -28
  24. package/dist/assets/components/Layout.min.js +1 -1
  25. package/dist/assets/components/NURBS.js +23 -24
  26. package/dist/assets/components/NURBS.min.js +1 -1
  27. package/dist/assets/components/ParticleSystems.js +26 -27
  28. package/dist/assets/components/ParticleSystems.min.js +1 -1
  29. package/dist/assets/components/Picking.js +18 -19
  30. package/dist/assets/components/Picking.min.js +1 -1
  31. package/dist/assets/components/RigidBodyPhysics.js +17 -18
  32. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  33. package/dist/assets/components/Scripting.js +38 -39
  34. package/dist/assets/components/Scripting.min.js +1 -1
  35. package/dist/assets/components/Text.js +24 -24
  36. package/dist/assets/components/Text.min.js +1 -1
  37. package/dist/assets/components/TextureProjection.js +15 -16
  38. package/dist/assets/components/TextureProjection.min.js +1 -1
  39. package/dist/assets/components/Texturing3D.js +27 -28
  40. package/dist/assets/components/Texturing3D.min.js +1 -1
  41. package/dist/assets/components/VolumeRendering.js +23 -23
  42. package/dist/assets/components/VolumeRendering.min.js +1 -1
  43. package/dist/assets/components/X_ITE.js +19 -20
  44. package/dist/assets/components/X_ITE.min.js +1 -1
  45. package/dist/assets/lib/draco_decoder_gltf.js +1 -1
  46. package/dist/example.html +1 -1
  47. package/dist/x_ite.css +1 -1
  48. package/dist/x_ite.js +97 -124
  49. package/dist/x_ite.min.js +1 -1
  50. package/dist/x_ite.min.mjs +1 -1
  51. package/dist/x_ite.mjs +97 -124
  52. package/dist/x_ite.zip +0 -0
  53. package/package.json +3 -3
package/LICENSE.md CHANGED
@@ -1,15 +1,15 @@
1
1
  LICENSE
2
- ==================================================
2
+ =======
3
3
 
4
4
  GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
5
- --------------------------------------
5
+ --------------------------------------------------
6
6
 
7
7
  Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
8
8
  Everyone is permitted to copy and distribute verbatim copies
9
9
  of this license document, but changing it is not allowed.
10
10
 
11
11
  Preamble
12
- --------------------------------------
12
+ --------
13
13
 
14
14
  The GNU General Public License is a free, copyleft license for
15
15
  software and other kinds of works.
@@ -73,7 +73,7 @@ The precise terms and conditions for copying, distribution and
73
73
  modification follow.
74
74
 
75
75
  TERMS AND CONDITIONS
76
- --------------------------------------
76
+ --------------------
77
77
 
78
78
  ### 0. Definitions.
79
79
 
@@ -624,4 +624,4 @@ Program, unless a warranty or assumption of liability accompanies a
624
624
  copy of the Program in return for a fee.
625
625
 
626
626
  END OF TERMS AND CONDITIONS
627
- --------------------------------------
627
+ ---------------------------
package/README.md CHANGED
@@ -29,10 +29,10 @@ jsDelivr is an open-source content delivery network (CDN) renowned for its no-co
29
29
  If you are going to use X_ITE in a production environment, you should use a fixed version of X_ITE. You can get a list of all available versions [here on npm](https://www.npmjs.com/package/x_ite?activeTab=versions).
30
30
 
31
31
  ```html
32
- <script src="https://cdn.jsdelivr.net/npm/x_ite@10.0.4/dist/x_ite.min.js"></script>
32
+ <script src="https://cdn.jsdelivr.net/npm/x_ite@10.0.5/dist/x_ite.min.js"></script>
33
33
  <!-- or as ES module for use in scripts -->
34
34
  <script type="module">
35
- import X3D from "https://cdn.jsdelivr.net/npm/x_ite@10.0.4/dist/x_ite.min.mjs";
35
+ import X3D from "https://cdn.jsdelivr.net/npm/x_ite@10.0.5/dist/x_ite.min.mjs";
36
36
  </script>
37
37
  ```
38
38
 
@@ -45,7 +45,7 @@ This script initializes an X3D canvas within an HTML page, configuring it to con
45
45
  ### Declarative Syntax
46
46
 
47
47
  ```html
48
- <script src="https://cdn.jsdelivr.net/npm/x_ite@10.0.4/dist/x_ite.min.js"></script>
48
+ <script src="https://cdn.jsdelivr.net/npm/x_ite@10.0.5/dist/x_ite.min.js"></script>
49
49
  <x3d-canvas>
50
50
  <X3D profile='Interchange' version='4.0'>
51
51
  <head>
@@ -84,7 +84,7 @@ The same scene can also be created using pure JavaScript:
84
84
 
85
85
  ```html
86
86
  <script type="module">
87
- import X3D from "https://cdn.jsdelivr.net/npm/x_ite@10.0.4/dist/x_ite.min.mjs";
87
+ import X3D from "https://cdn.jsdelivr.net/npm/x_ite@10.0.5/dist/x_ite.min.mjs";
88
88
 
89
89
  const
90
90
  browser = X3D .getBrowser (),
package/dist/LICENSE.md CHANGED
@@ -1,15 +1,15 @@
1
1
  LICENSE
2
- ==================================================
2
+ =======
3
3
 
4
4
  GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
5
- --------------------------------------
5
+ --------------------------------------------------
6
6
 
7
7
  Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
8
8
  Everyone is permitted to copy and distribute verbatim copies
9
9
  of this license document, but changing it is not allowed.
10
10
 
11
11
  Preamble
12
- --------------------------------------
12
+ --------
13
13
 
14
14
  The GNU General Public License is a free, copyleft license for
15
15
  software and other kinds of works.
@@ -73,7 +73,7 @@ The precise terms and conditions for copying, distribution and
73
73
  modification follow.
74
74
 
75
75
  TERMS AND CONDITIONS
76
- --------------------------------------
76
+ --------------------
77
77
 
78
78
  ### 0. Definitions.
79
79
 
@@ -624,7 +624,7 @@ Program, unless a warranty or assumption of liability accompanies a
624
624
  copy of the Program in return for a fee.
625
625
 
626
626
  END OF TERMS AND CONDITIONS
627
- --------------------------------------
627
+ ---------------------------
628
628
  ```
629
629
  /*!
630
630
  * jQuery JavaScript Library v3.7.1
package/dist/X3DUOM.xml CHANGED
@@ -1,6 +1,7 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <!-- X3D Unified Object Model (X3DUOM) XML -->
3
3
  <!-- Missing declarations for X_ITE experimental nodes -->
4
+ <!-- This file is an extension of https://www.web3d.org/specifications/X3dUnifiedObjectModel-4.0.xml -->
4
5
  <X3dUnifiedObjectModel xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance" version="4.0"
5
6
  xsd:noNamespaceSchemaLocation="https://www.web3d.org/specifications/X3dUnifiedObjectModel.xsd">
6
7
  <ConcreteNodes>
@@ -1,4 +1,4 @@
1
- /* X_ITE v10.0.4 */(() => { // webpackBootstrap
1
+ /* X_ITE v10.0.5 */(() => { // webpackBootstrap
2
2
  /******/ "use strict";
3
3
  /******/ // The require scope
4
4
  /******/ var __webpack_require__ = {};
@@ -34,36 +34,35 @@
34
34
  /******/ })();
35
35
  /******/
36
36
  /************************************************************************/
37
- var __webpack_exports__ = {};
38
37
 
39
38
  // UNUSED EXPORTS: default
40
39
 
41
40
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components\")"
42
- const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components");
41
+ const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components");
43
42
  var Components_default = /*#__PURE__*/__webpack_require__.n(Components_namespaceObject);
44
43
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Fields\")"
45
- const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Fields");
44
+ const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Fields");
46
45
  var Fields_default = /*#__PURE__*/__webpack_require__.n(Fields_namespaceObject);
47
46
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DFieldDefinition\")"
48
- const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DFieldDefinition");
47
+ const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DFieldDefinition");
49
48
  var X3DFieldDefinition_default = /*#__PURE__*/__webpack_require__.n(X3DFieldDefinition_namespaceObject);
50
49
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/FieldDefinitionArray\")"
51
- const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/FieldDefinitionArray");
50
+ const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/FieldDefinitionArray");
52
51
  var FieldDefinitionArray_default = /*#__PURE__*/__webpack_require__.n(FieldDefinitionArray_namespaceObject);
53
52
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Layering/X3DLayerNode\")"
54
- const X3DLayerNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Layering/X3DLayerNode");
53
+ const X3DLayerNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Layering/X3DLayerNode");
55
54
  var X3DLayerNode_default = /*#__PURE__*/__webpack_require__.n(X3DLayerNode_namespaceObject);
56
55
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Navigation/Viewpoint\")"
57
- const Viewpoint_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Navigation/Viewpoint");
56
+ const Viewpoint_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Navigation/Viewpoint");
58
57
  var Viewpoint_default = /*#__PURE__*/__webpack_require__.n(Viewpoint_namespaceObject);
59
58
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/Group\")"
60
- const Group_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Grouping/Group");
59
+ const Group_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Grouping/Group");
61
60
  var Group_default = /*#__PURE__*/__webpack_require__.n(Group_namespaceObject);
62
61
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DConstants\")"
63
- const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DConstants");
62
+ const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DConstants");
64
63
  var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
65
64
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Namespace\")"
66
- const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Namespace");
65
+ const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Namespace");
67
66
  var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
68
67
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/AnnotationLayer.js
69
68
  /*******************************************************************************
@@ -180,7 +179,7 @@ const __default__ = AnnotationLayer;
180
179
  Namespace_default().add ("AnnotationLayer", "x_ite/Components/Annotation/AnnotationLayer", __default__);
181
180
  /* harmony default export */ const Annotation_AnnotationLayer = (__default__);
182
181
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DChildNode\")"
183
- const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Core/X3DChildNode");
182
+ const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Core/X3DChildNode");
184
183
  var X3DChildNode_default = /*#__PURE__*/__webpack_require__.n(X3DChildNode_namespaceObject);
185
184
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/AnnotationTarget.js
186
185
  /*******************************************************************************
@@ -292,7 +291,7 @@ const AnnotationTarget_default_ = AnnotationTarget;
292
291
  Namespace_default().add ("AnnotationTarget", "x_ite/Components/Annotation/AnnotationTarget", AnnotationTarget_default_);
293
292
  /* harmony default export */ const Annotation_AnnotationTarget = (AnnotationTarget_default_);
294
293
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DGroupingNode\")"
295
- const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
294
+ const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
296
295
  var X3DGroupingNode_default = /*#__PURE__*/__webpack_require__.n(X3DGroupingNode_namespaceObject);
297
296
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/X3DAnnotationNode.js
298
297
  /*******************************************************************************
@@ -504,7 +503,7 @@ const GroupAnnotation_default_ = GroupAnnotation;
504
503
  Namespace_default().add ("GroupAnnotation", "x_ite/Components/Annotation/GroupAnnotation", GroupAnnotation_default_);
505
504
  /* harmony default export */ const Annotation_GroupAnnotation = (GroupAnnotation_default_);
506
505
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/X3DUrlObject\")"
507
- const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Networking/X3DUrlObject");
506
+ const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Networking/X3DUrlObject");
508
507
  var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_namespaceObject);
509
508
  ;// CONCATENATED MODULE: ./src/x_ite/Components/Annotation/IconAnnotation.js
510
509
  /*******************************************************************************
@@ -1 +1 @@
1
- /* X_ITE v10.0.4 */(()=>{"use strict";var e={n:n=>{var t=n&&n.__esModule?()=>n.default:()=>n;return e.d(t,{a:t}),t},d:(n,t)=>{for(var o in t)e.o(t,o)&&!e.o(n,o)&&Object.defineProperty(n,o,{enumerable:!0,get:t[o]})},o:(e,n)=>Object.prototype.hasOwnProperty.call(e,n)};const n=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components");var t=e.n(n);const o=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Fields");var i=e.n(o);const a=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Base/X3DFieldDefinition");var r=e.n(a);const p=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Base/FieldDefinitionArray");var l=e.n(p);const u=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Layering/X3DLayerNode");var s=e.n(u);const c=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Navigation/Viewpoint");var d=e.n(c);const w=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Grouping/Group");var m=e.n(w);const y=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Base/X3DConstants");var b=e.n(y);const f=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Namespace");var O=e.n(f);function v(e){s().call(this,e,new(d())(e),new(m())(e)),this.addType(b().AnnotationLayer)}Object.assign(Object.setPrototypeOf(v.prototype,s().prototype),{initialize(){s().prototype.initialize.call(this)}}),Object.defineProperties(v,{typeName:{value:"AnnotationLayer",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"layers",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"isPickable",new(i().SFBool)(!0)),new(r())(b().inputOutput,"layoutPolicy",new(i().MFString)),new(r())(b().inputOutput,"shownGroupID",new(i().MFString)),new(r())(b().inputOutput,"viewport",new(i().SFNode))]),enumerable:!0}});const S=v;O().add("AnnotationLayer","x_ite/Components/Annotation/AnnotationLayer",S);const F=S,A=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Core/X3DChildNode");var h=e.n(A);function g(e){h().call(this,e),this.addType(b().AnnotationTarget)}Object.assign(Object.setPrototypeOf(g.prototype,h().prototype),{initialize(){h().prototype.initialize.call(this)}}),Object.defineProperties(g,{typeName:{value:"AnnotationTarget",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"referencePoint",new(i().SFVec3f)),new(r())(b().inputOutput,"leadLineStyle",new(i().SFNode)),new(r())(b().inputOutput,"marker",new(i().SFNode)),new(r())(b().inputOutput,"annotations",new(i().MFNode))]),enumerable:!0}});const j=g;O().add("AnnotationTarget","x_ite/Components/Annotation/AnnotationTarget",j);const D=j,N=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Grouping/X3DGroupingNode");var I=e.n(N);function X(e){h().call(this,e),this.addType(b().X3DAnnotationNode)}Object.assign(Object.setPrototypeOf(X.prototype,h().prototype),{initialize(){h().prototype.initialize.call(this)}}),Object.defineProperties(X,{typeName:{value:"X3DAnnotationNode",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0}});const _=X;O().add("X3DAnnotationNode","x_ite/Components/Annotation/X3DAnnotationNode",_);const z=_;function T(e){I().call(this,e),z.call(this,e),this.addType(b().GroupAnnotation)}Object.assign(Object.setPrototypeOf(T.prototype,I().prototype),z.prototype,{initialize(){I().prototype.initialize.call(this),z.prototype.initialize.call(this)},dispose(){z.prototype.dispose.call(this),I().prototype.dispose.call(this)}}),Object.defineProperties(T,{typeName:{value:"GroupAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"visible",new(i().SFBool)(!0)),new(r())(b().inputOutput,"bboxDisplay",new(i().SFBool)),new(r())(b().initializeOnly,"bboxSize",new(i().SFVec3f)(-1,-1,-1)),new(r())(b().initializeOnly,"bboxCenter",new(i().SFVec3f)),new(r())(b().inputOnly,"addChildren",new(i().MFNode)),new(r())(b().inputOnly,"removeChildren",new(i().MFNode)),new(r())(b().inputOutput,"children",new(i().MFNode))]),enumerable:!0}});const x=T;O().add("GroupAnnotation","x_ite/Components/Annotation/GroupAnnotation",x);const P=x,C=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Networking/X3DUrlObject");var E=e.n(C);function R(e){z.call(this,e),E().call(this,e),this.addType(b().IconAnnotation)}Object.assign(Object.setPrototypeOf(R.prototype,z.prototype),E().prototype,{initialize(){z.prototype.initialize.call(this),E().prototype.initialize.call(this)},requestImmediateLoad(e=!0){},dispose(){E().prototype.dispose.call(this),z.prototype.dispose.call(this)}}),Object.defineProperties(R,{typeName:{value:"IconAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"url",new(i().MFString)),new(r())(b().inputOutput,"autoRefresh",new(i().SFTime)),new(r())(b().inputOutput,"autoRefreshTimeLimit",new(i().SFTime)(3600))]),enumerable:!0}});const q=R;O().add("IconAnnotation","x_ite/Components/Annotation/IconAnnotation",q);const G=q;function L(e){z.call(this,e),this.addType(b().TextAnnotation)}Object.assign(Object.setPrototypeOf(L.prototype,z.prototype),{initialize(){z.prototype.initialize.call(this)}}),Object.defineProperties(L,{typeName:{value:"TextAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"contentType",new(i().SFString)("text/plain")),new(r())(b().inputOutput,"text",new(i().SFString))]),enumerable:!0}});const B=L;O().add("TextAnnotation","x_ite/Components/Annotation/TextAnnotation",B);const M=B;function V(e){z.call(this,e),this.addType(b().URLAnnotation)}Object.assign(Object.setPrototypeOf(V.prototype,z.prototype),{initialize(){z.prototype.initialize.call(this)}}),Object.defineProperties(V,{typeName:{value:"URLAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"url",new(i().MFString))]),enumerable:!0}});const U=V;O().add("URLAnnotation","x_ite/Components/Annotation/URLAnnotation",U);const k=U;t().add({name:"Annotation",concreteNodes:[F,D,P,G,M,k],abstractNodes:[z]});const H=void 0;O().add("Annotation","assets/components/Annotation",H)})();
1
+ /* X_ITE v10.0.5 */(()=>{"use strict";var e={n:n=>{var t=n&&n.__esModule?()=>n.default:()=>n;return e.d(t,{a:t}),t},d:(n,t)=>{for(var o in t)e.o(t,o)&&!e.o(n,o)&&Object.defineProperty(n,o,{enumerable:!0,get:t[o]})},o:(e,n)=>Object.prototype.hasOwnProperty.call(e,n)};const n=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components");var t=e.n(n);const o=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Fields");var i=e.n(o);const a=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Base/X3DFieldDefinition");var r=e.n(a);const p=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Base/FieldDefinitionArray");var l=e.n(p);const u=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Layering/X3DLayerNode");var s=e.n(u);const c=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Navigation/Viewpoint");var d=e.n(c);const w=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Grouping/Group");var m=e.n(w);const y=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Base/X3DConstants");var b=e.n(y);const f=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Namespace");var O=e.n(f);function v(e){s().call(this,e,new(d())(e),new(m())(e)),this.addType(b().AnnotationLayer)}Object.assign(Object.setPrototypeOf(v.prototype,s().prototype),{initialize(){s().prototype.initialize.call(this)}}),Object.defineProperties(v,{typeName:{value:"AnnotationLayer",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"layers",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"isPickable",new(i().SFBool)(!0)),new(r())(b().inputOutput,"layoutPolicy",new(i().MFString)),new(r())(b().inputOutput,"shownGroupID",new(i().MFString)),new(r())(b().inputOutput,"viewport",new(i().SFNode))]),enumerable:!0}});const S=v;O().add("AnnotationLayer","x_ite/Components/Annotation/AnnotationLayer",S);const F=S,A=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Core/X3DChildNode");var h=e.n(A);function g(e){h().call(this,e),this.addType(b().AnnotationTarget)}Object.assign(Object.setPrototypeOf(g.prototype,h().prototype),{initialize(){h().prototype.initialize.call(this)}}),Object.defineProperties(g,{typeName:{value:"AnnotationTarget",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"referencePoint",new(i().SFVec3f)),new(r())(b().inputOutput,"leadLineStyle",new(i().SFNode)),new(r())(b().inputOutput,"marker",new(i().SFNode)),new(r())(b().inputOutput,"annotations",new(i().MFNode))]),enumerable:!0}});const j=g;O().add("AnnotationTarget","x_ite/Components/Annotation/AnnotationTarget",j);const D=j,N=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Grouping/X3DGroupingNode");var I=e.n(N);function X(e){h().call(this,e),this.addType(b().X3DAnnotationNode)}Object.assign(Object.setPrototypeOf(X.prototype,h().prototype),{initialize(){h().prototype.initialize.call(this)}}),Object.defineProperties(X,{typeName:{value:"X3DAnnotationNode",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0}});const _=X;O().add("X3DAnnotationNode","x_ite/Components/Annotation/X3DAnnotationNode",_);const z=_;function T(e){I().call(this,e),z.call(this,e),this.addType(b().GroupAnnotation)}Object.assign(Object.setPrototypeOf(T.prototype,I().prototype),z.prototype,{initialize(){I().prototype.initialize.call(this),z.prototype.initialize.call(this)},dispose(){z.prototype.dispose.call(this),I().prototype.dispose.call(this)}}),Object.defineProperties(T,{typeName:{value:"GroupAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"visible",new(i().SFBool)(!0)),new(r())(b().inputOutput,"bboxDisplay",new(i().SFBool)),new(r())(b().initializeOnly,"bboxSize",new(i().SFVec3f)(-1,-1,-1)),new(r())(b().initializeOnly,"bboxCenter",new(i().SFVec3f)),new(r())(b().inputOnly,"addChildren",new(i().MFNode)),new(r())(b().inputOnly,"removeChildren",new(i().MFNode)),new(r())(b().inputOutput,"children",new(i().MFNode))]),enumerable:!0}});const x=T;O().add("GroupAnnotation","x_ite/Components/Annotation/GroupAnnotation",x);const P=x,C=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Networking/X3DUrlObject");var E=e.n(C);function R(e){z.call(this,e),E().call(this,e),this.addType(b().IconAnnotation)}Object.assign(Object.setPrototypeOf(R.prototype,z.prototype),E().prototype,{initialize(){z.prototype.initialize.call(this),E().prototype.initialize.call(this)},requestImmediateLoad(e=!0){},dispose(){E().prototype.dispose.call(this),z.prototype.dispose.call(this)}}),Object.defineProperties(R,{typeName:{value:"IconAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"url",new(i().MFString)),new(r())(b().inputOutput,"autoRefresh",new(i().SFTime)),new(r())(b().inputOutput,"autoRefreshTimeLimit",new(i().SFTime)(3600))]),enumerable:!0}});const q=R;O().add("IconAnnotation","x_ite/Components/Annotation/IconAnnotation",q);const G=q;function L(e){z.call(this,e),this.addType(b().TextAnnotation)}Object.assign(Object.setPrototypeOf(L.prototype,z.prototype),{initialize(){z.prototype.initialize.call(this)}}),Object.defineProperties(L,{typeName:{value:"TextAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"contentType",new(i().SFString)("text/plain")),new(r())(b().inputOutput,"text",new(i().SFString))]),enumerable:!0}});const B=L;O().add("TextAnnotation","x_ite/Components/Annotation/TextAnnotation",B);const M=B;function V(e){z.call(this,e),this.addType(b().URLAnnotation)}Object.assign(Object.setPrototypeOf(V.prototype,z.prototype),{initialize(){z.prototype.initialize.call(this)}}),Object.defineProperties(V,{typeName:{value:"URLAnnotation",enumerable:!0},componentInfo:{value:Object.freeze({name:"Annotation",level:1}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"4.0",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(l())([new(r())(b().inputOutput,"metadata",new(i().SFNode)),new(r())(b().inputOutput,"enabled",new(i().SFBool)(!0)),new(r())(b().inputOutput,"annotationGroupID",new(i().SFString)),new(r())(b().inputOutput,"displayPolicy",new(i().SFString)("NEVER")),new(r())(b().inputOutput,"url",new(i().MFString))]),enumerable:!0}});const U=V;O().add("URLAnnotation","x_ite/Components/Annotation/URLAnnotation",U);const k=U;t().add({name:"Annotation",concreteNodes:[F,D,P,G,M,k],abstractNodes:[z]});const H=void 0;O().add("Annotation","assets/components/Annotation",H)})();
@@ -1,4 +1,4 @@
1
- /* X_ITE v10.0.4 */(() => { // webpackBootstrap
1
+ /* X_ITE v10.0.5 */(() => { // webpackBootstrap
2
2
  /******/ "use strict";
3
3
  /******/ // The require scope
4
4
  /******/ var __webpack_require__ = {};
@@ -34,33 +34,32 @@
34
34
  /******/ })();
35
35
  /******/
36
36
  /************************************************************************/
37
- var __webpack_exports__ = {};
38
37
 
39
38
  // UNUSED EXPORTS: default
40
39
 
41
40
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components\")"
42
- const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components");
41
+ const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components");
43
42
  var Components_default = /*#__PURE__*/__webpack_require__.n(Components_namespaceObject);
44
43
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Fields\")"
45
- const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Fields");
44
+ const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Fields");
46
45
  var Fields_default = /*#__PURE__*/__webpack_require__.n(Fields_namespaceObject);
47
46
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DFieldDefinition\")"
48
- const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DFieldDefinition");
47
+ const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DFieldDefinition");
49
48
  var X3DFieldDefinition_default = /*#__PURE__*/__webpack_require__.n(X3DFieldDefinition_namespaceObject);
50
49
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/FieldDefinitionArray\")"
51
- const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/FieldDefinitionArray");
50
+ const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/FieldDefinitionArray");
52
51
  var FieldDefinitionArray_default = /*#__PURE__*/__webpack_require__.n(FieldDefinitionArray_namespaceObject);
53
52
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DGroupingNode\")"
54
- const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
53
+ const X3DGroupingNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Grouping/X3DGroupingNode");
55
54
  var X3DGroupingNode_default = /*#__PURE__*/__webpack_require__.n(X3DGroupingNode_namespaceObject);
56
55
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Core/X3DChildNode\")"
57
- const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Core/X3DChildNode");
56
+ const X3DChildNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Core/X3DChildNode");
58
57
  var X3DChildNode_default = /*#__PURE__*/__webpack_require__.n(X3DChildNode_namespaceObject);
59
58
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DConstants\")"
60
- const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DConstants");
59
+ const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DConstants");
61
60
  var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
62
61
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Namespace\")"
63
- const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Namespace");
62
+ const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Namespace");
64
63
  var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
65
64
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/X3DProductStructureChildNode.js
66
65
  /*******************************************************************************
@@ -254,13 +253,13 @@ const CADAssembly_default_ = CADAssembly;
254
253
  Namespace_default().add ("CADAssembly", "x_ite/Components/CADGeometry/CADAssembly", CADAssembly_default_);
255
254
  /* harmony default export */ const CADGeometry_CADAssembly = (CADAssembly_default_);
256
255
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DBoundedObject\")"
257
- const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Grouping/X3DBoundedObject");
256
+ const X3DBoundedObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Grouping/X3DBoundedObject");
258
257
  var X3DBoundedObject_default = /*#__PURE__*/__webpack_require__.n(X3DBoundedObject_namespaceObject);
259
258
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Rendering/TraverseType\")"
260
- const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Rendering/TraverseType");
259
+ const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Rendering/TraverseType");
261
260
  var TraverseType_default = /*#__PURE__*/__webpack_require__.n(TraverseType_namespaceObject);
262
261
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DCast\")"
263
- const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DCast");
262
+ const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DCast");
264
263
  var X3DCast_default = /*#__PURE__*/__webpack_require__.n(X3DCast_namespaceObject);
265
264
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/CADFace.js
266
265
  /*******************************************************************************
@@ -626,7 +625,7 @@ const CADLayer_default_ = CADLayer;
626
625
  Namespace_default().add ("CADLayer", "x_ite/Components/CADGeometry/CADLayer", CADLayer_default_);
627
626
  /* harmony default export */ const CADGeometry_CADLayer = (CADLayer_default_);
628
627
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Grouping/X3DTransformNode\")"
629
- const X3DTransformNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Grouping/X3DTransformNode");
628
+ const X3DTransformNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Grouping/X3DTransformNode");
630
629
  var X3DTransformNode_default = /*#__PURE__*/__webpack_require__.n(X3DTransformNode_namespaceObject);
631
630
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/CADPart.js
632
631
  /*******************************************************************************
@@ -746,7 +745,7 @@ const CADPart_default_ = CADPart;
746
745
  Namespace_default().add ("CADPart", "x_ite/Components/CADGeometry/CADPart", CADPart_default_);
747
746
  /* harmony default export */ const CADGeometry_CADPart = (CADPart_default_);
748
747
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Rendering/X3DComposedGeometryNode\")"
749
- const X3DComposedGeometryNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Rendering/X3DComposedGeometryNode");
748
+ const X3DComposedGeometryNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Rendering/X3DComposedGeometryNode");
750
749
  var X3DComposedGeometryNode_default = /*#__PURE__*/__webpack_require__.n(X3DComposedGeometryNode_namespaceObject);
751
750
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CADGeometry/IndexedQuadSet.js
752
751
  /*******************************************************************************
@@ -1 +1 @@
1
- /* X_ITE v10.0.4 */(()=>{"use strict";var e={n:t=>{var n=t&&t.__esModule?()=>t.default:()=>t;return e.d(n,{a:n}),n},d:(t,n)=>{for(var i in n)e.o(n,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:n[i]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components");var n=e.n(t);const i=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Fields");var o=e.n(i);const r=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Base/X3DFieldDefinition");var a=e.n(r);const l=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Base/FieldDefinitionArray");var s=e.n(l);const u=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Grouping/X3DGroupingNode");var d=e.n(u);const p=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Core/X3DChildNode");var c=e.n(p);const b=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Base/X3DConstants");var w=e.n(b);const m=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Namespace");var y=e.n(m);function h(e){c().call(this,e),this.addType(w().X3DProductStructureChildNode)}Object.setPrototypeOf(h.prototype,c().prototype),Object.defineProperties(h,{typeName:{value:"X3DProductStructureChildNode",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0}});const O=h;y().add("X3DProductStructureChildNode","x_ite/Components/CADGeometry/X3DProductStructureChildNode",O);const f=O;function _(e){d().call(this,e),f.call(this,e),this.addType(w().CADAssembly)}Object.assign(Object.setPrototypeOf(_.prototype,d().prototype),{}),Object.defineProperties(_,{typeName:{value:"CADAssembly",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOnly,"addChildren",new(o().MFNode)),new(a())(w().inputOnly,"removeChildren",new(o().MFNode)),new(a())(w().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const S=_;y().add("CADAssembly","x_ite/Components/CADGeometry/CADAssembly",S);const v=S,D=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Grouping/X3DBoundedObject");var N=e.n(D);const C=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Rendering/TraverseType");var F=e.n(C);const x=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Base/X3DCast");var g=e.n(x);function j(e){f.call(this,e),N().call(this,e),this.addType(w().CADFace),this.childNode=null,this.visibleNode=null,this.boundedObject=null}Object.assign(Object.setPrototypeOf(j.prototype,f.prototype),N().prototype,{initialize(){f.prototype.initialize.call(this),N().prototype.initialize.call(this),this._shape.addInterest("set_shape__",this),this.set_shape__()},getBBox(e,t){return this._bboxSize.getValue().equals(this.getDefaultBBoxSize())?this.visibleNode?.getBBox(e,t)??e.set():e.set(this._bboxSize.getValue(),this._bboxCenter.getValue())},set_shape__(){this.childNode&&(this.childNode._isCameraObject.removeInterest("set_cameraObject__",this),this.childNode._isPickableObject.removeInterest("set_transformSensors__",this),this.childNode._display.removeInterest("set_display__",this),this.childNode._bboxDisplay.removeInterest("set_bboxDisplay__",this)),this.childNode=null;const e=g()(w().X3DChildNode,this._shape);if(e){const t=e.getType();for(let n=t.length-1;n>=0;--n){switch(t[n]){case w().LOD:case w().Transform:case w().X3DShapeNode:e._isCameraObject.addInterest("set_cameraObject__",this),e._isPickableObject.addInterest("set_transformSensors__",this),e._display.addInterest("set_display__",this),e._bboxDisplay.addInterest("set_bboxDisplay__",this),this.childNode=e;break;default:continue}break}}this.childNode?delete this.traverse:this.traverse=Function.prototype,this.set_display__(),this.set_bboxDisplay__()},set_cameraObject__(){this.setCameraObject(this.visibleNode?.isCameraObject())},set_transformSensors__(){this.setPickableObject(this.visibleNode?.isPickableObject())},set_display__(){this.childNode?this.visibleNode=this.childNode._display.getValue()?this.childNode:null:this.visibleNode=null,this.set_cameraObject__(),this.set_transformSensors__()},set_bboxDisplay__(){this.childNode?this.boundedObject=this.childNode._bboxDisplay.getValue()?this.childNode:null:this.boundedObject=null},traverse(e,t){switch(e){case F().POINTER:case F().CAMERA:case F().SHADOW:return void this.visibleNode?.traverse(e,t);case F().PICKING:{const n=this.getBrowser().getPickingHierarchy();return n.push(this),this.visibleNode?.traverse(e,t),void n.pop()}case F().COLLISION:return void this.visibleNode?.traverse(e,t);case F().DISPLAY:return this.visibleNode?.traverse(e,t),void this.boundedObject?.displayBBox(e,t)}},dispose(){N().prototype.dispose.call(this),f.prototype.dispose.call(this)}}),Object.defineProperties(j,{typeName:{value:"CADFace",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOutput,"shape",new(o().SFNode))]),enumerable:!0}});const I=j;y().add("CADFace","x_ite/Components/CADGeometry/CADFace",I);const z=I;function A(e){d().call(this,e),this.addType(w().CADLayer)}Object.setPrototypeOf(A.prototype,d().prototype),Object.defineProperties(A,{typeName:{value:"CADLayer",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOnly,"addChildren",new(o().MFNode)),new(a())(w().inputOnly,"removeChildren",new(o().MFNode)),new(a())(w().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const P=A;y().add("CADLayer","x_ite/Components/CADGeometry/CADLayer",P);const X=P,B=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Grouping/X3DTransformNode");var T=e.n(B);function V(e){T().call(this,e),f.call(this,e),this.addType(w().CADPart)}Object.assign(Object.setPrototypeOf(V.prototype,T().prototype),{}),Object.defineProperties(V,{typeName:{value:"CADPart",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"translation",new(o().SFVec3f)),new(a())(w().inputOutput,"rotation",new(o().SFRotation)),new(a())(w().inputOutput,"scale",new(o().SFVec3f)(1,1,1)),new(a())(w().inputOutput,"scaleOrientation",new(o().SFRotation)),new(a())(w().inputOutput,"center",new(o().SFVec3f)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOnly,"addChildren",new(o().MFNode)),new(a())(w().inputOnly,"removeChildren",new(o().MFNode)),new(a())(w().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const G=V;y().add("CADPart","x_ite/Components/CADGeometry/CADPart",G);const M=G,E=window[Symbol.for("X_ITE.X3D-10.0.4")].require("x_ite/Components/Rendering/X3DComposedGeometryNode");var q=e.n(E);function R(e){q().call(this,e),this.addType(w().IndexedQuadSet)}Object.assign(Object.setPrototypeOf(R.prototype,q().prototype),{initialize(){q().prototype.initialize.call(this),this._set_index.addFieldInterest(this._index)},getTriangleIndex(e){const t=e%6;return 4*Math.floor(e/6)+t%3+Math.floor(t/4)},getPolygonIndex(e){return this._index[e]},getVerticesPerPolygon:()=>4,getNumVertices(){return this._index.length},build(){let e=this._index.length;e-=e%4,q().prototype.build.call(this,4,e,6,e/4*6)}}),Object.defineProperties(R,{typeName:{value:"IndexedQuadSet",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:1}),enumerable:!0},containerField:{value:"geometry",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOnly,"set_index",new(o().MFInt32)),new(a())(w().initializeOnly,"solid",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"ccw",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"colorPerVertex",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"normalPerVertex",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"index",new(o().MFInt32)),new(a())(w().inputOutput,"attrib",new(o().MFNode)),new(a())(w().inputOutput,"fogCoord",new(o().SFNode)),new(a())(w().inputOutput,"color",new(o().SFNode)),new(a())(w().inputOutput,"texCoord",new(o().SFNode)),new(a())(w().inputOutput,"normal",new(o().SFNode)),new(a())(w().inputOutput,"tangent",new(o().SFNode)),new(a())(w().inputOutput,"coord",new(o().SFNode))]),enumerable:!0}});const L=R;y().add("IndexedQuadSet","x_ite/Components/CADGeometry/IndexedQuadSet",L);const Q=L;function k(e){q().call(this,e),this.addType(w().QuadSet)}Object.assign(Object.setPrototypeOf(k.prototype,q().prototype),{getTriangleIndex(e){const t=e%6;return 4*Math.floor(e/6)+t%3+Math.floor(t/4)},getVerticesPerPolygon:()=>4,getNumVertices(){return this.getCoord()?.getSize()},build(){if(!this.getCoord())return;let e=this.getCoord().getSize();e-=e%4,q().prototype.build.call(this,4,e,6,e/4*6)},createNormals(e,t){return this.createFaceNormals(e,t)}}),Object.defineProperties(k,{typeName:{value:"QuadSet",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:1}),enumerable:!0},containerField:{value:"geometry",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().initializeOnly,"solid",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"ccw",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"colorPerVertex",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"normalPerVertex",new(o().SFBool)(!0)),new(a())(w().inputOutput,"attrib",new(o().MFNode)),new(a())(w().inputOutput,"fogCoord",new(o().SFNode)),new(a())(w().inputOutput,"color",new(o().SFNode)),new(a())(w().inputOutput,"texCoord",new(o().SFNode)),new(a())(w().inputOutput,"normal",new(o().SFNode)),new(a())(w().inputOutput,"tangent",new(o().SFNode)),new(a())(w().inputOutput,"coord",new(o().SFNode))]),enumerable:!0}});const H=k;y().add("QuadSet","x_ite/Components/CADGeometry/QuadSet",H);const K=H;n().add({name:"CADGeometry",concreteNodes:[v,z,X,M,Q,K],abstractNodes:[f]});const W=void 0;y().add("CADGeometry","assets/components/CADGeometry",W)})();
1
+ /* X_ITE v10.0.5 */(()=>{"use strict";var e={n:t=>{var n=t&&t.__esModule?()=>t.default:()=>t;return e.d(n,{a:n}),n},d:(t,n)=>{for(var i in n)e.o(n,i)&&!e.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:n[i]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components");var n=e.n(t);const i=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Fields");var o=e.n(i);const r=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Base/X3DFieldDefinition");var a=e.n(r);const l=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Base/FieldDefinitionArray");var s=e.n(l);const u=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Grouping/X3DGroupingNode");var d=e.n(u);const p=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Core/X3DChildNode");var c=e.n(p);const b=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Base/X3DConstants");var w=e.n(b);const m=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Namespace");var y=e.n(m);function h(e){c().call(this,e),this.addType(w().X3DProductStructureChildNode)}Object.setPrototypeOf(h.prototype,c().prototype),Object.defineProperties(h,{typeName:{value:"X3DProductStructureChildNode",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0}});const O=h;y().add("X3DProductStructureChildNode","x_ite/Components/CADGeometry/X3DProductStructureChildNode",O);const f=O;function _(e){d().call(this,e),f.call(this,e),this.addType(w().CADAssembly)}Object.assign(Object.setPrototypeOf(_.prototype,d().prototype),{}),Object.defineProperties(_,{typeName:{value:"CADAssembly",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOnly,"addChildren",new(o().MFNode)),new(a())(w().inputOnly,"removeChildren",new(o().MFNode)),new(a())(w().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const S=_;y().add("CADAssembly","x_ite/Components/CADGeometry/CADAssembly",S);const v=S,D=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Grouping/X3DBoundedObject");var N=e.n(D);const C=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Rendering/TraverseType");var F=e.n(C);const x=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Base/X3DCast");var g=e.n(x);function j(e){f.call(this,e),N().call(this,e),this.addType(w().CADFace),this.childNode=null,this.visibleNode=null,this.boundedObject=null}Object.assign(Object.setPrototypeOf(j.prototype,f.prototype),N().prototype,{initialize(){f.prototype.initialize.call(this),N().prototype.initialize.call(this),this._shape.addInterest("set_shape__",this),this.set_shape__()},getBBox(e,t){return this._bboxSize.getValue().equals(this.getDefaultBBoxSize())?this.visibleNode?.getBBox(e,t)??e.set():e.set(this._bboxSize.getValue(),this._bboxCenter.getValue())},set_shape__(){this.childNode&&(this.childNode._isCameraObject.removeInterest("set_cameraObject__",this),this.childNode._isPickableObject.removeInterest("set_transformSensors__",this),this.childNode._display.removeInterest("set_display__",this),this.childNode._bboxDisplay.removeInterest("set_bboxDisplay__",this)),this.childNode=null;const e=g()(w().X3DChildNode,this._shape);if(e){const t=e.getType();for(let n=t.length-1;n>=0;--n){switch(t[n]){case w().LOD:case w().Transform:case w().X3DShapeNode:e._isCameraObject.addInterest("set_cameraObject__",this),e._isPickableObject.addInterest("set_transformSensors__",this),e._display.addInterest("set_display__",this),e._bboxDisplay.addInterest("set_bboxDisplay__",this),this.childNode=e;break;default:continue}break}}this.childNode?delete this.traverse:this.traverse=Function.prototype,this.set_display__(),this.set_bboxDisplay__()},set_cameraObject__(){this.setCameraObject(this.visibleNode?.isCameraObject())},set_transformSensors__(){this.setPickableObject(this.visibleNode?.isPickableObject())},set_display__(){this.childNode?this.visibleNode=this.childNode._display.getValue()?this.childNode:null:this.visibleNode=null,this.set_cameraObject__(),this.set_transformSensors__()},set_bboxDisplay__(){this.childNode?this.boundedObject=this.childNode._bboxDisplay.getValue()?this.childNode:null:this.boundedObject=null},traverse(e,t){switch(e){case F().POINTER:case F().CAMERA:case F().SHADOW:return void this.visibleNode?.traverse(e,t);case F().PICKING:{const n=this.getBrowser().getPickingHierarchy();return n.push(this),this.visibleNode?.traverse(e,t),void n.pop()}case F().COLLISION:return void this.visibleNode?.traverse(e,t);case F().DISPLAY:return this.visibleNode?.traverse(e,t),void this.boundedObject?.displayBBox(e,t)}},dispose(){N().prototype.dispose.call(this),f.prototype.dispose.call(this)}}),Object.defineProperties(j,{typeName:{value:"CADFace",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOutput,"shape",new(o().SFNode))]),enumerable:!0}});const I=j;y().add("CADFace","x_ite/Components/CADGeometry/CADFace",I);const z=I;function A(e){d().call(this,e),this.addType(w().CADLayer)}Object.setPrototypeOf(A.prototype,d().prototype),Object.defineProperties(A,{typeName:{value:"CADLayer",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOnly,"addChildren",new(o().MFNode)),new(a())(w().inputOnly,"removeChildren",new(o().MFNode)),new(a())(w().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const P=A;y().add("CADLayer","x_ite/Components/CADGeometry/CADLayer",P);const X=P,B=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Grouping/X3DTransformNode");var T=e.n(B);function V(e){T().call(this,e),f.call(this,e),this.addType(w().CADPart)}Object.assign(Object.setPrototypeOf(V.prototype,T().prototype),{}),Object.defineProperties(V,{typeName:{value:"CADPart",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:2}),enumerable:!0},containerField:{value:"children",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOutput,"name",new(o().SFString)),new(a())(w().inputOutput,"translation",new(o().SFVec3f)),new(a())(w().inputOutput,"rotation",new(o().SFRotation)),new(a())(w().inputOutput,"scale",new(o().SFVec3f)(1,1,1)),new(a())(w().inputOutput,"scaleOrientation",new(o().SFRotation)),new(a())(w().inputOutput,"center",new(o().SFVec3f)),new(a())(w().inputOutput,"visible",new(o().SFBool)(!0)),new(a())(w().inputOutput,"bboxDisplay",new(o().SFBool)),new(a())(w().initializeOnly,"bboxSize",new(o().SFVec3f)(-1,-1,-1)),new(a())(w().initializeOnly,"bboxCenter",new(o().SFVec3f)),new(a())(w().inputOnly,"addChildren",new(o().MFNode)),new(a())(w().inputOnly,"removeChildren",new(o().MFNode)),new(a())(w().inputOutput,"children",new(o().MFNode))]),enumerable:!0}});const G=V;y().add("CADPart","x_ite/Components/CADGeometry/CADPart",G);const M=G,E=window[Symbol.for("X_ITE.X3D-10.0.5")].require("x_ite/Components/Rendering/X3DComposedGeometryNode");var q=e.n(E);function R(e){q().call(this,e),this.addType(w().IndexedQuadSet)}Object.assign(Object.setPrototypeOf(R.prototype,q().prototype),{initialize(){q().prototype.initialize.call(this),this._set_index.addFieldInterest(this._index)},getTriangleIndex(e){const t=e%6;return 4*Math.floor(e/6)+t%3+Math.floor(t/4)},getPolygonIndex(e){return this._index[e]},getVerticesPerPolygon:()=>4,getNumVertices(){return this._index.length},build(){let e=this._index.length;e-=e%4,q().prototype.build.call(this,4,e,6,e/4*6)}}),Object.defineProperties(R,{typeName:{value:"IndexedQuadSet",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:1}),enumerable:!0},containerField:{value:"geometry",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().inputOnly,"set_index",new(o().MFInt32)),new(a())(w().initializeOnly,"solid",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"ccw",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"colorPerVertex",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"normalPerVertex",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"index",new(o().MFInt32)),new(a())(w().inputOutput,"attrib",new(o().MFNode)),new(a())(w().inputOutput,"fogCoord",new(o().SFNode)),new(a())(w().inputOutput,"color",new(o().SFNode)),new(a())(w().inputOutput,"texCoord",new(o().SFNode)),new(a())(w().inputOutput,"normal",new(o().SFNode)),new(a())(w().inputOutput,"tangent",new(o().SFNode)),new(a())(w().inputOutput,"coord",new(o().SFNode))]),enumerable:!0}});const L=R;y().add("IndexedQuadSet","x_ite/Components/CADGeometry/IndexedQuadSet",L);const Q=L;function k(e){q().call(this,e),this.addType(w().QuadSet)}Object.assign(Object.setPrototypeOf(k.prototype,q().prototype),{getTriangleIndex(e){const t=e%6;return 4*Math.floor(e/6)+t%3+Math.floor(t/4)},getVerticesPerPolygon:()=>4,getNumVertices(){return this.getCoord()?.getSize()},build(){if(!this.getCoord())return;let e=this.getCoord().getSize();e-=e%4,q().prototype.build.call(this,4,e,6,e/4*6)},createNormals(e,t){return this.createFaceNormals(e,t)}}),Object.defineProperties(k,{typeName:{value:"QuadSet",enumerable:!0},componentInfo:{value:Object.freeze({name:"CADGeometry",level:1}),enumerable:!0},containerField:{value:"geometry",enumerable:!0},specificationRange:{value:Object.freeze({from:"3.1",to:"Infinity"}),enumerable:!0},fieldDefinitions:{value:new(s())([new(a())(w().inputOutput,"metadata",new(o().SFNode)),new(a())(w().initializeOnly,"solid",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"ccw",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"colorPerVertex",new(o().SFBool)(!0)),new(a())(w().initializeOnly,"normalPerVertex",new(o().SFBool)(!0)),new(a())(w().inputOutput,"attrib",new(o().MFNode)),new(a())(w().inputOutput,"fogCoord",new(o().SFNode)),new(a())(w().inputOutput,"color",new(o().SFNode)),new(a())(w().inputOutput,"texCoord",new(o().SFNode)),new(a())(w().inputOutput,"normal",new(o().SFNode)),new(a())(w().inputOutput,"tangent",new(o().SFNode)),new(a())(w().inputOutput,"coord",new(o().SFNode))]),enumerable:!0}});const H=k;y().add("QuadSet","x_ite/Components/CADGeometry/QuadSet",H);const K=H;n().add({name:"CADGeometry",concreteNodes:[v,z,X,M,Q,K],abstractNodes:[f]});const W=void 0;y().add("CADGeometry","assets/components/CADGeometry",W)})();
@@ -1,11 +1,11 @@
1
- /* X_ITE v10.0.4 */(() => { // webpackBootstrap
1
+ /* X_ITE v10.0.5 */(() => { // webpackBootstrap
2
2
  /******/ "use strict";
3
3
  /******/ var __webpack_modules__ = ({
4
4
 
5
5
  /***/ 823:
6
6
  /***/ ((module) => {
7
7
 
8
- module.exports = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("lib/jquery");
8
+ module.exports = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("lib/jquery");
9
9
 
10
10
  /***/ })
11
11
 
@@ -66,15 +66,14 @@ module.exports = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("lib/jquery
66
66
  /******/ })();
67
67
  /******/
68
68
  /************************************************************************/
69
- var __webpack_exports__ = {};
70
69
 
71
70
  // UNUSED EXPORTS: default
72
71
 
73
72
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components\")"
74
- const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components");
73
+ const Components_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components");
75
74
  var Components_default = /*#__PURE__*/__webpack_require__.n(Components_namespaceObject);
76
75
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Namespace\")"
77
- const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Namespace");
76
+ const Namespace_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Namespace");
78
77
  var Namespace_default = /*#__PURE__*/__webpack_require__.n(Namespace_namespaceObject);
79
78
  ;// CONCATENATED MODULE: ./src/x_ite/Browser/CubeMapTexturing/Panorama1.fs.js
80
79
  const __default__ = /* glsl */ `
@@ -163,19 +162,19 @@ const X3DCubeMapTexturingContext_default_ = X3DCubeMapTexturingContext;
163
162
  Namespace_default().add ("X3DCubeMapTexturingContext", "x_ite/Browser/CubeMapTexturing/X3DCubeMapTexturingContext", X3DCubeMapTexturingContext_default_);
164
163
  /* harmony default export */ const CubeMapTexturing_X3DCubeMapTexturingContext = (X3DCubeMapTexturingContext_default_);
165
164
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Fields\")"
166
- const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Fields");
165
+ const Fields_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Fields");
167
166
  var Fields_default = /*#__PURE__*/__webpack_require__.n(Fields_namespaceObject);
168
167
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DFieldDefinition\")"
169
- const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DFieldDefinition");
168
+ const X3DFieldDefinition_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DFieldDefinition");
170
169
  var X3DFieldDefinition_default = /*#__PURE__*/__webpack_require__.n(X3DFieldDefinition_namespaceObject);
171
170
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/FieldDefinitionArray\")"
172
- const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/FieldDefinitionArray");
171
+ const FieldDefinitionArray_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/FieldDefinitionArray");
173
172
  var FieldDefinitionArray_default = /*#__PURE__*/__webpack_require__.n(FieldDefinitionArray_namespaceObject);
174
173
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Texturing/X3DSingleTextureNode\")"
175
- const X3DSingleTextureNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Texturing/X3DSingleTextureNode");
174
+ const X3DSingleTextureNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Texturing/X3DSingleTextureNode");
176
175
  var X3DSingleTextureNode_default = /*#__PURE__*/__webpack_require__.n(X3DSingleTextureNode_namespaceObject);
177
176
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DConstants\")"
178
- const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DConstants");
177
+ const X3DConstants_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DConstants");
179
178
  var X3DConstants_default = /*#__PURE__*/__webpack_require__.n(X3DConstants_namespaceObject);
180
179
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CubeMapTexturing/X3DEnvironmentTextureNode.js
181
180
  /*******************************************************************************
@@ -332,10 +331,10 @@ const X3DEnvironmentTextureNode_default_ = X3DEnvironmentTextureNode;
332
331
  Namespace_default().add ("X3DEnvironmentTextureNode", "x_ite/Components/CubeMapTexturing/X3DEnvironmentTextureNode", X3DEnvironmentTextureNode_default_);
333
332
  /* harmony default export */ const CubeMapTexturing_X3DEnvironmentTextureNode = (X3DEnvironmentTextureNode_default_);
334
333
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DCast\")"
335
- const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DCast");
334
+ const X3DCast_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DCast");
336
335
  var X3DCast_default = /*#__PURE__*/__webpack_require__.n(X3DCast_namespaceObject);
337
336
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Utility/BitSet\")"
338
- const BitSet_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Utility/BitSet");
337
+ const BitSet_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Utility/BitSet");
339
338
  var BitSet_default = /*#__PURE__*/__webpack_require__.n(BitSet_namespaceObject);
340
339
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture.js
341
340
  /*******************************************************************************
@@ -607,13 +606,13 @@ const ComposedCubeMapTexture_default_ = ComposedCubeMapTexture;
607
606
  Namespace_default().add ("ComposedCubeMapTexture", "x_ite/Components/CubeMapTexturing/ComposedCubeMapTexture", ComposedCubeMapTexture_default_);
608
607
  /* harmony default export */ const CubeMapTexturing_ComposedCubeMapTexture = (ComposedCubeMapTexture_default_);
609
608
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Base/X3DBaseNode\")"
610
- const X3DBaseNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Base/X3DBaseNode");
609
+ const X3DBaseNode_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Base/X3DBaseNode");
611
610
  var X3DBaseNode_default = /*#__PURE__*/__webpack_require__.n(X3DBaseNode_namespaceObject);
612
611
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Rendering/X3DRenderObject\")"
613
- const X3DRenderObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Rendering/X3DRenderObject");
612
+ const X3DRenderObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Rendering/X3DRenderObject");
614
613
  var X3DRenderObject_default = /*#__PURE__*/__webpack_require__.n(X3DRenderObject_namespaceObject);
615
614
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Rendering/TraverseType\")"
616
- const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Rendering/TraverseType");
615
+ const TraverseType_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Rendering/TraverseType");
617
616
  var TraverseType_default = /*#__PURE__*/__webpack_require__.n(TraverseType_namespaceObject);
618
617
  ;// CONCATENATED MODULE: ./src/x_ite/Rendering/DependentRenderer.js
619
618
  /*******************************************************************************
@@ -758,28 +757,28 @@ const DependentRenderer_default_ = DependentRenderer;
758
757
  Namespace_default().add ("DependentRenderer", "x_ite/Rendering/DependentRenderer", DependentRenderer_default_);
759
758
  /* harmony default export */ const Rendering_DependentRenderer = (DependentRenderer_default_);
760
759
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Rendering/TextureBuffer\")"
761
- const TextureBuffer_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Rendering/TextureBuffer");
760
+ const TextureBuffer_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Rendering/TextureBuffer");
762
761
  var TextureBuffer_default = /*#__PURE__*/__webpack_require__.n(TextureBuffer_namespaceObject);
763
762
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Geometry/Camera\")"
764
- const Camera_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Geometry/Camera");
763
+ const Camera_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Geometry/Camera");
765
764
  var Camera_default = /*#__PURE__*/__webpack_require__.n(Camera_namespaceObject);
766
765
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Geometry/ViewVolume\")"
767
- const ViewVolume_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Geometry/ViewVolume");
766
+ const ViewVolume_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Geometry/ViewVolume");
768
767
  var ViewVolume_default = /*#__PURE__*/__webpack_require__.n(ViewVolume_namespaceObject);
769
768
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Rotation4\")"
770
- const Rotation4_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Numbers/Rotation4");
769
+ const Rotation4_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Numbers/Rotation4");
771
770
  var Rotation4_default = /*#__PURE__*/__webpack_require__.n(Rotation4_namespaceObject);
772
771
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Vector3\")"
773
- const Vector3_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Numbers/Vector3");
772
+ const Vector3_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Numbers/Vector3");
774
773
  var Vector3_default = /*#__PURE__*/__webpack_require__.n(Vector3_namespaceObject);
775
774
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Vector4\")"
776
- const Vector4_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Numbers/Vector4");
775
+ const Vector4_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Numbers/Vector4");
777
776
  var Vector4_default = /*#__PURE__*/__webpack_require__.n(Vector4_namespaceObject);
778
777
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Matrix4\")"
779
- const Matrix4_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Numbers/Matrix4");
778
+ const Matrix4_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Numbers/Matrix4");
780
779
  var Matrix4_default = /*#__PURE__*/__webpack_require__.n(Matrix4_namespaceObject);
781
780
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Algorithm\")"
782
- const Algorithm_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Algorithm");
781
+ const Algorithm_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Algorithm");
783
782
  var Algorithm_default = /*#__PURE__*/__webpack_require__.n(Algorithm_namespaceObject);
784
783
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CubeMapTexturing/GeneratedCubeMapTexture.js
785
784
  /*******************************************************************************
@@ -1089,13 +1088,13 @@ const GeneratedCubeMapTexture_default_ = GeneratedCubeMapTexture;
1089
1088
  Namespace_default().add ("GeneratedCubeMapTexture", "x_ite/Components/CubeMapTexturing/GeneratedCubeMapTexture", GeneratedCubeMapTexture_default_);
1090
1089
  /* harmony default export */ const CubeMapTexturing_GeneratedCubeMapTexture = (GeneratedCubeMapTexture_default_);
1091
1090
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/Components/Networking/X3DUrlObject\")"
1092
- const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/Components/Networking/X3DUrlObject");
1091
+ const X3DUrlObject_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/Components/Networking/X3DUrlObject");
1093
1092
  var X3DUrlObject_default = /*#__PURE__*/__webpack_require__.n(X3DUrlObject_namespaceObject);
1094
1093
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"standard/Math/Numbers/Vector2\")"
1095
- const Vector2_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("standard/Math/Numbers/Vector2");
1094
+ const Vector2_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("standard/Math/Numbers/Vector2");
1096
1095
  var Vector2_default = /*#__PURE__*/__webpack_require__.n(Vector2_namespaceObject);
1097
1096
  ;// CONCATENATED MODULE: external "window [Symbol .for (\"X_ITE.X3D\")] .require (\"x_ite/DEVELOPMENT\")"
1098
- const DEVELOPMENT_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.4")] .require ("x_ite/DEVELOPMENT");
1097
+ const DEVELOPMENT_namespaceObject = window [Symbol .for ("X_ITE.X3D-10.0.5")] .require ("x_ite/DEVELOPMENT");
1099
1098
  var DEVELOPMENT_default = /*#__PURE__*/__webpack_require__.n(DEVELOPMENT_namespaceObject);
1100
1099
  ;// CONCATENATED MODULE: ./src/x_ite/Components/CubeMapTexturing/ImageCubeMapTexture.js
1101
1100
  /* provided dependency */ var $ = __webpack_require__(823);