x_ite 12.1.3 → 12.1.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.
- package/README.md +4 -4
- package/dist/assets/components/AnnotationComponent.js +2 -2
- package/dist/assets/components/AnnotationComponent.min.js +2 -2
- package/dist/assets/components/CADGeometryComponent.js +2 -2
- package/dist/assets/components/CADGeometryComponent.min.js +2 -2
- package/dist/assets/components/CubeMapTexturingComponent.js +2 -2
- package/dist/assets/components/CubeMapTexturingComponent.min.js +2 -2
- package/dist/assets/components/DISComponent.js +2 -2
- package/dist/assets/components/DISComponent.min.js +2 -2
- package/dist/assets/components/EventUtilitiesComponent.js +2 -2
- package/dist/assets/components/EventUtilitiesComponent.min.js +2 -2
- package/dist/assets/components/Geometry2DComponent.js +2 -2
- package/dist/assets/components/Geometry2DComponent.min.js +2 -2
- package/dist/assets/components/GeospatialComponent.js +2 -2
- package/dist/assets/components/GeospatialComponent.min.js +2 -2
- package/dist/assets/components/HAnimComponent.js +144 -80
- package/dist/assets/components/HAnimComponent.min.js +2 -2
- package/dist/assets/components/KeyDeviceSensorComponent.js +2 -2
- package/dist/assets/components/KeyDeviceSensorComponent.min.js +2 -2
- package/dist/assets/components/LayoutComponent.js +2 -2
- package/dist/assets/components/LayoutComponent.min.js +2 -2
- package/dist/assets/components/NURBSComponent.js +2 -2
- package/dist/assets/components/NURBSComponent.min.js +2 -2
- package/dist/assets/components/ParticleSystemsComponent.js +2 -10
- package/dist/assets/components/ParticleSystemsComponent.min.js +2 -2
- package/dist/assets/components/PickingComponent.js +2 -2
- package/dist/assets/components/PickingComponent.min.js +2 -2
- package/dist/assets/components/RigidBodyPhysicsComponent.js +2 -2
- package/dist/assets/components/RigidBodyPhysicsComponent.min.js +2 -2
- package/dist/assets/components/ScriptingComponent.js +5 -3
- package/dist/assets/components/ScriptingComponent.min.js +2 -2
- package/dist/assets/components/TextComponent.js +2 -2
- package/dist/assets/components/TextComponent.min.js +2 -2
- package/dist/assets/components/TextureProjectionComponent.js +6 -5
- package/dist/assets/components/TextureProjectionComponent.min.js +2 -2
- package/dist/assets/components/Texturing3DComponent.js +3571 -3571
- package/dist/assets/components/Texturing3DComponent.min.js +2 -2
- package/dist/assets/components/VolumeRenderingComponent.js +6 -2
- package/dist/assets/components/VolumeRenderingComponent.min.js +2 -2
- package/dist/assets/components/WebXRComponent.js +2 -2
- package/dist/assets/components/WebXRComponent.min.js +2 -2
- package/dist/assets/components/X_ITEComponent.js +6 -6
- package/dist/assets/components/X_ITEComponent.min.js +2 -2
- package/dist/example.html +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.d.ts +52 -8
- package/dist/x_ite.js +50444 -50363
- package/dist/x_ite.min.js +2 -2
- package/dist/x_ite.min.mjs +2 -2
- package/dist/x_ite.mjs +50194 -50113
- package/dist/x_ite.zip +0 -0
- package/package.json +1 -1
package/dist/x_ite.d.ts
CHANGED
|
@@ -327,11 +327,11 @@ declare namespace X3D
|
|
|
327
327
|
*/
|
|
328
328
|
createVrmlFromURL (url: MFString, node: SFNode, fieldName: string): void;
|
|
329
329
|
/**
|
|
330
|
-
* Add a route from the passed *sourceField* to the passed *destinationField*.
|
|
330
|
+
* Add a route in the current scene from the passed *sourceField* to the passed *destinationField*.
|
|
331
331
|
*/
|
|
332
332
|
addRoute (sourceNode: SFNode, sourceField: string, destinationNode: SFNode, destinationField: string): void;
|
|
333
333
|
/**
|
|
334
|
-
* Remove the route between the passed *sourceField* and passed *destinationField*, if one exists.
|
|
334
|
+
* Remove the route in the current scene between the passed *sourceField* and passed *destinationField*, if one exists.
|
|
335
335
|
*/
|
|
336
336
|
deleteRoute (sourceNode: SFNode, sourceField: string, destinationNode: SFNode, destinationField: string): void;
|
|
337
337
|
/**
|
|
@@ -350,7 +350,7 @@ declare namespace X3D
|
|
|
350
350
|
| boolean
|
|
351
351
|
| null
|
|
352
352
|
| JSONValue []
|
|
353
|
-
| { [key: string]: JSONValue }
|
|
353
|
+
| { [key: string]: JSONValue };
|
|
354
354
|
|
|
355
355
|
interface JSONObject
|
|
356
356
|
{
|
|
@@ -422,7 +422,7 @@ declare namespace X3D
|
|
|
422
422
|
Multisampling: number,
|
|
423
423
|
PixelsPerPoint: number,
|
|
424
424
|
XRSession: boolean,
|
|
425
|
-
}
|
|
425
|
+
};
|
|
426
426
|
|
|
427
427
|
type ClosestObject = {
|
|
428
428
|
node: X3DShapeNodeProxy | null,
|
|
@@ -603,6 +603,8 @@ declare namespace X3D
|
|
|
603
603
|
readonly specificationVersion: string;
|
|
604
604
|
/**
|
|
605
605
|
* The encoding is represented as a string that describes the data encoding used. Valid values are "ASCII", "VRML", "XML", "BINARY", "SCRIPTED", "BIFS", "NONE". This property is read only.
|
|
606
|
+
*
|
|
607
|
+
* Additional valid values are “GLTF”, “OBJ”, “STL”, “PLY”, “SVG”.
|
|
606
608
|
*/
|
|
607
609
|
readonly encoding: "ASCII" | "VRML" | "XML" | "JSON" | "BINARY" | "SCRIPTED" | "BIFS" | "NONE" | "GLTF" | "OBJ" | "STL" | "PLY" | "SVG";
|
|
608
610
|
/**
|
|
@@ -1589,6 +1591,7 @@ declare namespace X3D
|
|
|
1589
1591
|
*/
|
|
1590
1592
|
class SFBool extends X3DField
|
|
1591
1593
|
{
|
|
1594
|
+
static readonly type: number;
|
|
1592
1595
|
static readonly typeName: "SFBool";
|
|
1593
1596
|
|
|
1594
1597
|
constructor ();
|
|
@@ -1602,6 +1605,7 @@ declare namespace X3D
|
|
|
1602
1605
|
*/
|
|
1603
1606
|
class SFColor extends X3DField
|
|
1604
1607
|
{
|
|
1608
|
+
static readonly type: number;
|
|
1605
1609
|
static readonly typeName: "SFColor";
|
|
1606
1610
|
|
|
1607
1611
|
/**
|
|
@@ -1658,6 +1662,7 @@ declare namespace X3D
|
|
|
1658
1662
|
*/
|
|
1659
1663
|
class SFColorRGBA extends X3DField
|
|
1660
1664
|
{
|
|
1665
|
+
static readonly type: number;
|
|
1661
1666
|
static readonly typeName: "SFColorRGBA";
|
|
1662
1667
|
|
|
1663
1668
|
/**
|
|
@@ -1718,6 +1723,7 @@ declare namespace X3D
|
|
|
1718
1723
|
*/
|
|
1719
1724
|
class SFDouble extends X3DField
|
|
1720
1725
|
{
|
|
1726
|
+
static readonly type: number;
|
|
1721
1727
|
static readonly typeName: "SFDouble";
|
|
1722
1728
|
|
|
1723
1729
|
constructor ();
|
|
@@ -1731,6 +1737,7 @@ declare namespace X3D
|
|
|
1731
1737
|
*/
|
|
1732
1738
|
class SFFloat extends X3DField
|
|
1733
1739
|
{
|
|
1740
|
+
static readonly type: number;
|
|
1734
1741
|
static readonly typeName: "SFFloat";
|
|
1735
1742
|
|
|
1736
1743
|
constructor ();
|
|
@@ -1744,6 +1751,7 @@ declare namespace X3D
|
|
|
1744
1751
|
*/
|
|
1745
1752
|
class SFImage extends X3DField
|
|
1746
1753
|
{
|
|
1754
|
+
static readonly type: number;
|
|
1747
1755
|
static readonly typeName: "SFImage";
|
|
1748
1756
|
|
|
1749
1757
|
/**
|
|
@@ -1791,6 +1799,7 @@ declare namespace X3D
|
|
|
1791
1799
|
*/
|
|
1792
1800
|
class SFInt32 extends X3DField
|
|
1793
1801
|
{
|
|
1802
|
+
static readonly type: number;
|
|
1794
1803
|
static readonly typeName: "SFInt32";
|
|
1795
1804
|
|
|
1796
1805
|
constructor ();
|
|
@@ -1907,6 +1916,7 @@ declare namespace X3D
|
|
|
1907
1916
|
*/
|
|
1908
1917
|
class SFMatrix3d extends SFMatrix3
|
|
1909
1918
|
{
|
|
1919
|
+
static readonly type: number;
|
|
1910
1920
|
static readonly typeName: "SFMatrix3d";
|
|
1911
1921
|
}
|
|
1912
1922
|
|
|
@@ -1915,6 +1925,7 @@ declare namespace X3D
|
|
|
1915
1925
|
*/
|
|
1916
1926
|
class SFMatrix3f extends SFMatrix3
|
|
1917
1927
|
{
|
|
1928
|
+
static readonly type: number;
|
|
1918
1929
|
static readonly typeName: "SFMatrix3f";
|
|
1919
1930
|
}
|
|
1920
1931
|
|
|
@@ -2019,6 +2030,7 @@ declare namespace X3D
|
|
|
2019
2030
|
*/
|
|
2020
2031
|
class SFMatrix4d extends SFMatrix4
|
|
2021
2032
|
{
|
|
2033
|
+
static readonly type: number;
|
|
2022
2034
|
static readonly typeName: "SFMatrix4d";
|
|
2023
2035
|
}
|
|
2024
2036
|
|
|
@@ -2027,6 +2039,7 @@ declare namespace X3D
|
|
|
2027
2039
|
*/
|
|
2028
2040
|
class SFMatrix4f extends SFMatrix4
|
|
2029
2041
|
{
|
|
2042
|
+
static readonly type: number;
|
|
2030
2043
|
static readonly typeName: "SFMatrix4f";
|
|
2031
2044
|
}
|
|
2032
2045
|
|
|
@@ -2035,6 +2048,7 @@ declare namespace X3D
|
|
|
2035
2048
|
*/
|
|
2036
2049
|
class SFNode extends X3DField
|
|
2037
2050
|
{
|
|
2051
|
+
static readonly type: number;
|
|
2038
2052
|
static readonly typeName: "SFNode";
|
|
2039
2053
|
|
|
2040
2054
|
/**
|
|
@@ -2122,13 +2136,14 @@ declare namespace X3D
|
|
|
2122
2136
|
doublePrecision?: number,
|
|
2123
2137
|
html?: boolean,
|
|
2124
2138
|
closingTags?: boolean,
|
|
2125
|
-
}
|
|
2139
|
+
};
|
|
2126
2140
|
|
|
2127
2141
|
/**
|
|
2128
2142
|
* The SFRotation object corresponds to an X3D SFRotation field.
|
|
2129
2143
|
*/
|
|
2130
2144
|
class SFRotation extends X3DField
|
|
2131
2145
|
{
|
|
2146
|
+
static readonly type: number;
|
|
2132
2147
|
static readonly typeName: "SFRotation";
|
|
2133
2148
|
|
|
2134
2149
|
/**
|
|
@@ -2217,6 +2232,7 @@ declare namespace X3D
|
|
|
2217
2232
|
*/
|
|
2218
2233
|
class SFString extends X3DField
|
|
2219
2234
|
{
|
|
2235
|
+
static readonly type: number;
|
|
2220
2236
|
static readonly typeName: "SFString";
|
|
2221
2237
|
|
|
2222
2238
|
constructor ();
|
|
@@ -2232,6 +2248,7 @@ declare namespace X3D
|
|
|
2232
2248
|
*/
|
|
2233
2249
|
class SFTime extends X3DField
|
|
2234
2250
|
{
|
|
2251
|
+
static readonly type: number;
|
|
2235
2252
|
static readonly typeName: "SFTime";
|
|
2236
2253
|
|
|
2237
2254
|
constructor ();
|
|
@@ -2341,6 +2358,7 @@ declare namespace X3D
|
|
|
2341
2358
|
*/
|
|
2342
2359
|
class SFVec2d extends SFVec2
|
|
2343
2360
|
{
|
|
2361
|
+
static readonly type: number;
|
|
2344
2362
|
static readonly typeName: "SFVec2d";
|
|
2345
2363
|
}
|
|
2346
2364
|
|
|
@@ -2349,6 +2367,7 @@ declare namespace X3D
|
|
|
2349
2367
|
*/
|
|
2350
2368
|
class SFVec2f extends SFVec2
|
|
2351
2369
|
{
|
|
2370
|
+
static readonly type: number;
|
|
2352
2371
|
static readonly typeName: "SFVec2f";
|
|
2353
2372
|
}
|
|
2354
2373
|
|
|
@@ -2461,6 +2480,7 @@ declare namespace X3D
|
|
|
2461
2480
|
*/
|
|
2462
2481
|
class SFVec3d extends SFVec3
|
|
2463
2482
|
{
|
|
2483
|
+
static readonly type: number;
|
|
2464
2484
|
static readonly typeName: "SFVec3d";
|
|
2465
2485
|
}
|
|
2466
2486
|
|
|
@@ -2469,6 +2489,7 @@ declare namespace X3D
|
|
|
2469
2489
|
*/
|
|
2470
2490
|
class SFVec3f extends SFVec3
|
|
2471
2491
|
{
|
|
2492
|
+
static readonly type: number;
|
|
2472
2493
|
static readonly typeName: "SFVec3f";
|
|
2473
2494
|
}
|
|
2474
2495
|
|
|
@@ -2581,6 +2602,7 @@ declare namespace X3D
|
|
|
2581
2602
|
*/
|
|
2582
2603
|
class SFVec4d extends SFVec4
|
|
2583
2604
|
{
|
|
2605
|
+
static readonly type: number;
|
|
2584
2606
|
static readonly typeName: "SFVec4d";
|
|
2585
2607
|
}
|
|
2586
2608
|
|
|
@@ -2589,6 +2611,7 @@ declare namespace X3D
|
|
|
2589
2611
|
*/
|
|
2590
2612
|
class SFVec4f extends SFVec4
|
|
2591
2613
|
{
|
|
2614
|
+
static readonly type: number;
|
|
2592
2615
|
static readonly typeName: "SFVec4f";
|
|
2593
2616
|
}
|
|
2594
2617
|
|
|
@@ -2643,15 +2666,16 @@ declare namespace X3D
|
|
|
2643
2666
|
with (index: number, value: T): this;
|
|
2644
2667
|
}
|
|
2645
2668
|
|
|
2646
|
-
type ArrayTest <T> = (element: T, i: number, array: X3DArrayField <T>) => boolean
|
|
2647
|
-
type ArrayAction <T> = (element: T, i: number, array: X3DArrayField <T>) => void
|
|
2648
|
-
type ArrayReducer <T, U> = (accum: U, current: T, i: number, array: X3DArrayField <T>) => U
|
|
2669
|
+
type ArrayTest <T> = (element: T, i: number, array: X3DArrayField <T>) => boolean;
|
|
2670
|
+
type ArrayAction <T> = (element: T, i: number, array: X3DArrayField <T>) => void;
|
|
2671
|
+
type ArrayReducer <T, U> = (accum: U, current: T, i: number, array: X3DArrayField <T>) => U;
|
|
2649
2672
|
|
|
2650
2673
|
/**
|
|
2651
2674
|
* The MFBool object corresponds to an X3D MFBool field. It is used to store a one-dimensional array of SFBool objects. Individual elements of the array can be referenced using the standard C-style dereferencing operator (e.g. *mfBoolObjectName*[*index*], where *index* is an integer-valued expression with 0<=*index*<length and length is the number of elements in the array). Assigning to an element with *index* > length results in the array being dynamically expanded to contain length elements. All elements not explicitly initialized are set to `false`.
|
|
2652
2675
|
*/
|
|
2653
2676
|
class MFBool extends X3DArrayField <boolean>
|
|
2654
2677
|
{
|
|
2678
|
+
static readonly type: number;
|
|
2655
2679
|
static readonly typeName: "MFBool";
|
|
2656
2680
|
}
|
|
2657
2681
|
|
|
@@ -2660,6 +2684,7 @@ declare namespace X3D
|
|
|
2660
2684
|
*/
|
|
2661
2685
|
class MFColor extends X3DArrayField <SFColor>
|
|
2662
2686
|
{
|
|
2687
|
+
static readonly type: number;
|
|
2663
2688
|
static readonly typeName: "MFColor";
|
|
2664
2689
|
}
|
|
2665
2690
|
|
|
@@ -2668,6 +2693,7 @@ declare namespace X3D
|
|
|
2668
2693
|
*/
|
|
2669
2694
|
class MFColorRGBA extends X3DArrayField <SFColorRGBA>
|
|
2670
2695
|
{
|
|
2696
|
+
static readonly type: number;
|
|
2671
2697
|
static readonly typeName: "MFColorRGBA";
|
|
2672
2698
|
}
|
|
2673
2699
|
|
|
@@ -2676,6 +2702,7 @@ declare namespace X3D
|
|
|
2676
2702
|
*/
|
|
2677
2703
|
class MFDouble extends X3DArrayField <number>
|
|
2678
2704
|
{
|
|
2705
|
+
static readonly type: number;
|
|
2679
2706
|
static readonly typeName: "MFDouble";
|
|
2680
2707
|
}
|
|
2681
2708
|
|
|
@@ -2684,6 +2711,7 @@ declare namespace X3D
|
|
|
2684
2711
|
*/
|
|
2685
2712
|
class MFFloat extends X3DArrayField <number>
|
|
2686
2713
|
{
|
|
2714
|
+
static readonly type: number;
|
|
2687
2715
|
static readonly typeName: "MFFloat";
|
|
2688
2716
|
}
|
|
2689
2717
|
|
|
@@ -2692,6 +2720,7 @@ declare namespace X3D
|
|
|
2692
2720
|
*/
|
|
2693
2721
|
class MFImage extends X3DArrayField <SFImage>
|
|
2694
2722
|
{
|
|
2723
|
+
static readonly type: number;
|
|
2695
2724
|
static readonly typeName: "MFImage";
|
|
2696
2725
|
}
|
|
2697
2726
|
|
|
@@ -2700,6 +2729,7 @@ declare namespace X3D
|
|
|
2700
2729
|
*/
|
|
2701
2730
|
class MFInt32 extends X3DArrayField <number>
|
|
2702
2731
|
{
|
|
2732
|
+
static readonly type: number;
|
|
2703
2733
|
static readonly typeName: "MFInt32";
|
|
2704
2734
|
}
|
|
2705
2735
|
|
|
@@ -2708,6 +2738,7 @@ declare namespace X3D
|
|
|
2708
2738
|
*/
|
|
2709
2739
|
class MFMatrix3d extends X3DArrayField <SFMatrix3d>
|
|
2710
2740
|
{
|
|
2741
|
+
static readonly type: number;
|
|
2711
2742
|
static readonly typeName: "MFMatrix3d";
|
|
2712
2743
|
}
|
|
2713
2744
|
|
|
@@ -2716,6 +2747,7 @@ declare namespace X3D
|
|
|
2716
2747
|
*/
|
|
2717
2748
|
class MFMatrix3f extends X3DArrayField <SFMatrix3f>
|
|
2718
2749
|
{
|
|
2750
|
+
static readonly type: number;
|
|
2719
2751
|
static readonly typeName: "MFMatrix3f";
|
|
2720
2752
|
}
|
|
2721
2753
|
|
|
@@ -2724,6 +2756,7 @@ declare namespace X3D
|
|
|
2724
2756
|
*/
|
|
2725
2757
|
class MFMatrix4d extends X3DArrayField <SFMatrix4d>
|
|
2726
2758
|
{
|
|
2759
|
+
static readonly type: number;
|
|
2727
2760
|
static readonly typeName: "MFMatrix4d";
|
|
2728
2761
|
}
|
|
2729
2762
|
|
|
@@ -2732,6 +2765,7 @@ declare namespace X3D
|
|
|
2732
2765
|
*/
|
|
2733
2766
|
class MFMatrix4f extends X3DArrayField <SFMatrix4f>
|
|
2734
2767
|
{
|
|
2768
|
+
static readonly type: number;
|
|
2735
2769
|
static readonly typeName: "MFMatrix4f";
|
|
2736
2770
|
}
|
|
2737
2771
|
|
|
@@ -2740,6 +2774,7 @@ declare namespace X3D
|
|
|
2740
2774
|
*/
|
|
2741
2775
|
class MFNode <T extends SFNode | null = SFNode | null> extends X3DArrayField <T>
|
|
2742
2776
|
{
|
|
2777
|
+
static readonly type: number;
|
|
2743
2778
|
static readonly typeName: "MFNode";
|
|
2744
2779
|
}
|
|
2745
2780
|
|
|
@@ -2748,6 +2783,7 @@ declare namespace X3D
|
|
|
2748
2783
|
*/
|
|
2749
2784
|
class MFRotation extends X3DArrayField <SFRotation>
|
|
2750
2785
|
{
|
|
2786
|
+
static readonly type: number;
|
|
2751
2787
|
static readonly typeName: "MFRotation";
|
|
2752
2788
|
}
|
|
2753
2789
|
|
|
@@ -2756,6 +2792,7 @@ declare namespace X3D
|
|
|
2756
2792
|
*/
|
|
2757
2793
|
class MFString <T extends string = string> extends X3DArrayField <T>
|
|
2758
2794
|
{
|
|
2795
|
+
static readonly type: number;
|
|
2759
2796
|
static readonly typeName: "MFString";
|
|
2760
2797
|
}
|
|
2761
2798
|
|
|
@@ -2764,6 +2801,7 @@ declare namespace X3D
|
|
|
2764
2801
|
*/
|
|
2765
2802
|
class MFTime extends X3DArrayField <number>
|
|
2766
2803
|
{
|
|
2804
|
+
static readonly type: number;
|
|
2767
2805
|
static readonly typeName: "MFTime";
|
|
2768
2806
|
}
|
|
2769
2807
|
|
|
@@ -2772,6 +2810,7 @@ declare namespace X3D
|
|
|
2772
2810
|
*/
|
|
2773
2811
|
class MFVec2d extends X3DArrayField <SFVec2d>
|
|
2774
2812
|
{
|
|
2813
|
+
static readonly type: number;
|
|
2775
2814
|
static readonly typeName: "MFVec2d";
|
|
2776
2815
|
}
|
|
2777
2816
|
|
|
@@ -2780,6 +2819,7 @@ declare namespace X3D
|
|
|
2780
2819
|
*/
|
|
2781
2820
|
class MFVec2f extends X3DArrayField <SFVec2f>
|
|
2782
2821
|
{
|
|
2822
|
+
static readonly type: number;
|
|
2783
2823
|
static readonly typeName: "MFVec2f";
|
|
2784
2824
|
}
|
|
2785
2825
|
|
|
@@ -2788,6 +2828,7 @@ declare namespace X3D
|
|
|
2788
2828
|
*/
|
|
2789
2829
|
class MFVec3d extends X3DArrayField <SFVec3d>
|
|
2790
2830
|
{
|
|
2831
|
+
static readonly type: number;
|
|
2791
2832
|
static readonly typeName: "MFVec3d";
|
|
2792
2833
|
}
|
|
2793
2834
|
|
|
@@ -2796,6 +2837,7 @@ declare namespace X3D
|
|
|
2796
2837
|
*/
|
|
2797
2838
|
class MFVec3f extends X3DArrayField <SFVec3f>
|
|
2798
2839
|
{
|
|
2840
|
+
static readonly type: number;
|
|
2799
2841
|
static readonly typeName: "MFVec3f";
|
|
2800
2842
|
}
|
|
2801
2843
|
|
|
@@ -2804,6 +2846,7 @@ declare namespace X3D
|
|
|
2804
2846
|
*/
|
|
2805
2847
|
class MFVec4d extends X3DArrayField <SFVec4d>
|
|
2806
2848
|
{
|
|
2849
|
+
static readonly type: number;
|
|
2807
2850
|
static readonly typeName: "MFVec4d";
|
|
2808
2851
|
}
|
|
2809
2852
|
|
|
@@ -2812,6 +2855,7 @@ declare namespace X3D
|
|
|
2812
2855
|
*/
|
|
2813
2856
|
class MFVec4f extends X3DArrayField <SFVec4f>
|
|
2814
2857
|
{
|
|
2858
|
+
static readonly type: number;
|
|
2815
2859
|
static readonly typeName: "MFVec4f";
|
|
2816
2860
|
}
|
|
2817
2861
|
|