@xeokit/xeokit-sdk 2.2.4 → 2.2.5-beta-2
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/dist/xeokit-sdk.cjs.js +77 -40
- package/dist/xeokit-sdk.es.js +77 -40
- package/dist/xeokit-sdk.min.cjs.js +1 -1
- package/dist/xeokit-sdk.min.es.js +1 -1
- package/package.json +4 -2
- package/types/extras/ContextMenu/ContextMenu.d.ts +125 -0
- package/types/extras/ContextMenu/index.d.ts +1 -0
- package/types/extras/index.d.ts +1 -0
- package/types/index.d.ts +3 -0
- package/types/plugins/AngleMeasurementsPlugin/AngleMeasurement.d.ts +144 -0
- package/types/plugins/AngleMeasurementsPlugin/AngleMeasurementsControl.d.ts +42 -0
- package/types/plugins/AngleMeasurementsPlugin/AngleMeasurementsPlugin.d.ts +85 -0
- package/types/plugins/AngleMeasurementsPlugin/index.d.ts +1 -0
- package/types/plugins/AnnotationsPlugin/Annotation.d.ts +134 -0
- package/types/plugins/AnnotationsPlugin/AnnotationsPlugin.d.ts +117 -0
- package/types/plugins/AnnotationsPlugin/index.d.ts +1 -0
- package/types/plugins/AxisGizmoPlugin/AxisGizmoPlugin.d.ts +28 -0
- package/types/plugins/AxisGizmoPlugin/index.d.ts +1 -0
- package/types/plugins/BCFViewpointsPlugin/BCFViewpointsPlugin.d.ts +146 -0
- package/types/plugins/BCFViewpointsPlugin/index.d.ts +1 -0
- package/types/plugins/CityJSONLoaderPlugin/CityJSONLoaderPlugin.d.ts +81 -0
- package/types/plugins/CityJSONLoaderPlugin/index.d.ts +1 -0
- package/types/plugins/DistanceMeasurementsPlugin/DistanceMeasurement.d.ts +137 -0
- package/types/plugins/DistanceMeasurementsPlugin/DistanceMeasurementsControl.d.ts +40 -0
- package/types/plugins/DistanceMeasurementsPlugin/DistanceMeasurementsPlugin.d.ts +120 -0
- package/types/plugins/DistanceMeasurementsPlugin/index.d.ts +1 -0
- package/types/plugins/FastNavPlugin/FastNavPlugin.d.ts +203 -0
- package/types/plugins/FastNavPlugin/index.d.ts +1 -0
- package/types/plugins/GLTFLoaderPlugin/GLTFLoaderPlugin.d.ts +140 -0
- package/types/plugins/GLTFLoaderPlugin/index.d.ts +1 -0
- package/types/plugins/LASLoaderPlugin/LASLoaderPlugin.d.ts +146 -0
- package/types/plugins/LASLoaderPlugin/index.d.ts +1 -0
- package/types/plugins/NavCubePlugin/NavCubePlugin.d.ts +160 -0
- package/types/plugins/NavCubePlugin/index.d.ts +1 -0
- package/types/plugins/OBJLoaderPlugin/OBJLoaderPlugin.d.ts +44 -0
- package/types/plugins/OBJLoaderPlugin/index.d.ts +1 -0
- package/types/plugins/STLLoaderPlugin/STLLoaderPlugin.d.ts +88 -0
- package/types/plugins/STLLoaderPlugin/index.d.ts +2 -0
- package/types/plugins/SectionPlanesPlugin/SectionPlanesPlugin.d.ts +103 -0
- package/types/plugins/SectionPlanesPlugin/index.d.ts +1 -0
- package/types/plugins/SkyboxesPlugin/SkyboxesPlugin.d.ts +34 -0
- package/types/plugins/SkyboxesPlugin/index.d.ts +1 -0
- package/types/plugins/StoreyViewsPlugin/Storey.d.ts +47 -0
- package/types/plugins/StoreyViewsPlugin/StoreyMap.d.ts +41 -0
- package/types/plugins/StoreyViewsPlugin/StoreyViewsPlugin.d.ts +173 -0
- package/types/plugins/StoreyViewsPlugin/index.d.ts +1 -0
- package/types/plugins/TreeViewPlugin/ModelTreeView.d.ts +24 -0
- package/types/plugins/TreeViewPlugin/TreeViewNode.d.ts +66 -0
- package/types/plugins/TreeViewPlugin/TreeViewPlugin.d.ts +136 -0
- package/types/plugins/TreeViewPlugin/index.d.ts +1 -0
- package/types/plugins/ViewCullPlugin/ViewCullPlugin.d.ts +34 -0
- package/types/plugins/ViewCullPlugin/index.d.ts +1 -0
- package/types/plugins/WebIFCLoaderPlugin/WebIFCLoaderPlugin.d.ts +230 -0
- package/types/plugins/WebIFCLoaderPlugin/index.d.ts +1 -0
- package/types/plugins/XKTLoaderPlugin/XKTLoaderPlugin.d.ts +277 -0
- package/types/plugins/XKTLoaderPlugin/index.d.ts +1 -0
- package/types/plugins/XML3DLoaderPlugin/XML3DLoaderPlugin.d.ts +65 -0
- package/types/plugins/XML3DLoaderPlugin/index.d.ts +1 -0
- package/types/plugins/index.d.ts +34 -0
- package/types/viewer/Configs.d.ts +20 -0
- package/types/viewer/Plugin.d.ts +69 -0
- package/types/viewer/Viewer.d.ts +212 -0
- package/types/viewer/index.d.ts +6 -0
- package/types/viewer/localization/LocaleService.d.ts +176 -0
- package/types/viewer/metadata/IFCObjectDefaults.d.ts +9 -0
- package/types/viewer/metadata/MetaModel.d.ts +65 -0
- package/types/viewer/metadata/MetaObject.d.ts +74 -0
- package/types/viewer/metadata/MetaScene.d.ts +135 -0
- package/types/viewer/metadata/Property.d.ts +29 -0
- package/types/viewer/metadata/PropertySet.d.ts +31 -0
- package/types/viewer/metadata/index.d.ts +6 -0
- package/types/viewer/scene/CameraControl/CameraControl.d.ts +591 -0
- package/types/viewer/scene/Component.d.ts +155 -0
- package/types/viewer/scene/Entity.d.ts +394 -0
- package/types/viewer/scene/PerformanceModel/PerformanceModel.d.ts +605 -0
- package/types/viewer/scene/PerformanceModel/PerformanceNode.d.ts +302 -0
- package/types/viewer/scene/camera/Camera.d.ts +364 -0
- package/types/viewer/scene/camera/CameraFlightAnimation.d.ts +167 -0
- package/types/viewer/scene/camera/CameraPath.d.ts +28 -0
- package/types/viewer/scene/camera/CameraPathAnimation.d.ts +95 -0
- package/types/viewer/scene/camera/CustomProjection.d.ts +57 -0
- package/types/viewer/scene/camera/Frustum.d.ts +166 -0
- package/types/viewer/scene/camera/Ortho.d.ts +115 -0
- package/types/viewer/scene/camera/Perspective.d.ts +136 -0
- package/types/viewer/scene/camera/index.d.ts +4 -0
- package/types/viewer/scene/geometry/Geometry.d.ts +7 -0
- package/types/viewer/scene/geometry/ReadableGeometry.d.ts +95 -0
- package/types/viewer/scene/geometry/index.d.ts +1 -0
- package/types/viewer/scene/index.d.ts +6 -0
- package/types/viewer/scene/marker/Marker.d.ts +136 -0
- package/types/viewer/scene/marker/index.d.ts +1 -0
- package/types/viewer/scene/materials/EdgeMaterial.d.ts +83 -0
- package/types/viewer/scene/materials/EmphasisMaterial.d.ts +241 -0
- package/types/viewer/scene/materials/Fresnel.d.ts +149 -0
- package/types/viewer/scene/materials/LinesMaterial.d.ts +71 -0
- package/types/viewer/scene/materials/Material.d.ts +3 -0
- package/types/viewer/scene/materials/PhongMaterial.d.ts +468 -0
- package/types/viewer/scene/materials/PointsMaterial.d.ts +206 -0
- package/types/viewer/scene/materials/Texture.d.ts +261 -0
- package/types/viewer/scene/materials/index.d.ts +5 -0
- package/types/viewer/scene/math/math.d.ts +36 -0
- package/types/viewer/scene/postfx/SAO.d.ts +209 -0
- package/types/viewer/scene/scene/Scene.d.ts +727 -0
- package/types/viewer/scene/sectionPlane/SectionPlane.d.ts +93 -0
- package/types/viewer/scene/sectionPlane/index.d.ts +1 -0
- package/types/viewer/scene/viewport/Viewport.d.ts +23 -0
- package/types/viewer/scene/webgl/PickResult.d.ts +103 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { MetaModel } from "./MetaModel";
|
|
2
|
+
import { PropertySet } from "./PropertySet";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Metadata corresponding to an {@link Entity} that represents an object.
|
|
6
|
+
*/
|
|
7
|
+
export declare class MetaObject {
|
|
8
|
+
/**
|
|
9
|
+
* Model metadata.
|
|
10
|
+
*/
|
|
11
|
+
metaModel: MetaModel;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Globally-unique ID.
|
|
15
|
+
*/
|
|
16
|
+
id: string;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* ID of the corresponding object within the originating system, if any.
|
|
20
|
+
*/
|
|
21
|
+
originalSystemId: string;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Human-readable name.
|
|
25
|
+
*/
|
|
26
|
+
name: string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Type - often an IFC product type.
|
|
30
|
+
*/
|
|
31
|
+
type: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Optional {@link PropertySet}s used by this MetaObject.
|
|
35
|
+
*/
|
|
36
|
+
propertySets: PropertySet[];
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* The parent MetaObject within the structure hierarchy.
|
|
40
|
+
*/
|
|
41
|
+
parent?: MetaObject;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Child ObjectMeta instances within the structure hierarchy.
|
|
45
|
+
*/
|
|
46
|
+
children: MetaObject[];
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* External application-specific metadata
|
|
50
|
+
*/
|
|
51
|
+
external?: any;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Gets the {@link MetaObject#id}s of the {@link MetaObject}s within the subtree.
|
|
55
|
+
*
|
|
56
|
+
* @returns {String[]} Array of {@link MetaObject#id}s.
|
|
57
|
+
*/
|
|
58
|
+
getObjectIDsInSubtree(): string[];
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Iterates over the {@link MetaObject}s within the subtree.
|
|
62
|
+
*
|
|
63
|
+
* @param {Function} callback Callback fired at each {@link MetaObject}.
|
|
64
|
+
*/
|
|
65
|
+
withMetaObjectsInSubtree(callback: (metaobect: MetaObject)=> void): void;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Gets the {@link MetaObject#id}s of the {@link MetaObject}s within the subtree that have the given {@link MetaObject#type}s.
|
|
69
|
+
*
|
|
70
|
+
* @param {String[]} types {@link MetaObject#type} values.
|
|
71
|
+
* @returns {String[]} Array of {@link MetaObject#id}s.
|
|
72
|
+
*/
|
|
73
|
+
getObjectIDsInSubtreeByType(types: string[]): string[];
|
|
74
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { Viewer } from "../Viewer";
|
|
2
|
+
import { Scene } from "../scene/scene/Scene";
|
|
3
|
+
import { MetaModel } from "./MetaModel";
|
|
4
|
+
import { PropertySet } from "./PropertySet";
|
|
5
|
+
import { MetaObject } from "./MetaObject";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Metadata corresponding to a {@link Scene}.
|
|
9
|
+
*/
|
|
10
|
+
export declare class MetaScene {
|
|
11
|
+
/**
|
|
12
|
+
* The {@link Viewer}.
|
|
13
|
+
* @property viewer
|
|
14
|
+
* @type {Viewer}
|
|
15
|
+
*/
|
|
16
|
+
viewer: Viewer;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* The {@link Scene}.
|
|
20
|
+
* @property scene
|
|
21
|
+
* @type {Scene}
|
|
22
|
+
*/
|
|
23
|
+
scene: Scene;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* The {@link MetaModel}s belonging to this MetaScene, each mapped to its {@link MetaModel#modelId}.
|
|
27
|
+
*
|
|
28
|
+
* @type {{String:MetaModel}}
|
|
29
|
+
*/
|
|
30
|
+
metaModels: {[key: string]: MetaModel};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* The {@link PropertySet}s belonging to this MetaScene, each mapped to its {@link PropertySet#id}.
|
|
34
|
+
*
|
|
35
|
+
* @type {{String:PropertySet}}
|
|
36
|
+
*/
|
|
37
|
+
propertySets: {[key: string]: PropertySet};
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* The {@link MetaObject}s belonging to this MetaScene, each mapped to its {@link MetaObject#id}.
|
|
41
|
+
*
|
|
42
|
+
* @type {{String:MetaObject}}
|
|
43
|
+
*/
|
|
44
|
+
metaObjects: {[key: string]: MetaObject};
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* The {@link MetaObject}s belonging to this MetaScene, each mapped to its {@link MetaObject#type}.
|
|
48
|
+
*
|
|
49
|
+
* @type {{String:MetaObject}}
|
|
50
|
+
*/
|
|
51
|
+
metaObjectsByType: {[key: string]: MetaObject};
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Subscribes to an event fired at this Viewer.
|
|
55
|
+
*
|
|
56
|
+
* @param {String} event The event
|
|
57
|
+
* @param {Function} callback Callback fired on the event
|
|
58
|
+
*/
|
|
59
|
+
on(event: string, callback: ()=> void): void;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Fires an event at this Viewer.
|
|
63
|
+
*
|
|
64
|
+
* @param {String} event Event name
|
|
65
|
+
* @param {Object} value Event parameters
|
|
66
|
+
*/
|
|
67
|
+
fire(event: string, value: any): void;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Unsubscribes from an event fired at this Viewer.
|
|
71
|
+
* @param event
|
|
72
|
+
*/
|
|
73
|
+
off(event: any): void;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Creates a {@link MetaModel} in this MetaScene.
|
|
77
|
+
*
|
|
78
|
+
* The MetaModel will contain a hierarchy of {@link MetaObject}s, created from the
|
|
79
|
+
* meta objects in ````metaModelData````.
|
|
80
|
+
*
|
|
81
|
+
* The meta object hierarchy in ````metaModelData```` is expected to be non-cyclic, with a single root. If the meta
|
|
82
|
+
* objects are cyclic, then this method will log an error and attempt to recover by creating a dummy root MetaObject
|
|
83
|
+
* of type "Model" and connecting all other MetaObjects as its direct children. If the meta objects contain multiple
|
|
84
|
+
* roots, then this method similarly attempts to recover by creating a dummy root MetaObject of type "Model" and
|
|
85
|
+
* connecting all the root MetaObjects as its children.
|
|
86
|
+
*
|
|
87
|
+
* @param {String} modelId ID for the new {@link MetaModel}, which will have {@link MetaModel#id} set to this value.
|
|
88
|
+
* @param {Object} metaModelData Data for the {@link MetaModel}.
|
|
89
|
+
* @param {Object} [options] Options for creating the {@link MetaModel}.
|
|
90
|
+
* @param {String[]} [options.includeTypes] When provided, only create {@link MetaObject}s with types in this list.
|
|
91
|
+
* @param {String[]} [options.excludeTypes] When provided, never create {@link MetaObject}s with types in this list.
|
|
92
|
+
* @param {Boolean} [options.globalizeObjectIds=false] Whether to globalize each {@link MetaObject#id}. Set this ````true```` when you need to load multiple instances of the same meta model, to avoid ID clashes between the meta objects in the different instances.
|
|
93
|
+
* @returns {MetaModel} The new MetaModel.
|
|
94
|
+
*/
|
|
95
|
+
createMetaModel(modelId: string, metaModelData: any, options?: {
|
|
96
|
+
includeTypes?: string[];
|
|
97
|
+
excludeTypes?: string[];
|
|
98
|
+
globalizeObjectIds?: boolean;
|
|
99
|
+
}): MetaModel;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Removes a {@link MetaModel} from this MetaScene.
|
|
103
|
+
*
|
|
104
|
+
* Fires a "metaModelDestroyed" event with the value of the {@link MetaModel#id}.
|
|
105
|
+
*
|
|
106
|
+
* @param {String} id ID of the target {@link MetaModel}.
|
|
107
|
+
*/
|
|
108
|
+
destroyMetaModel(id: string): void;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Gets the {@link MetaObject#id}s of the {@link MetaObject}s that have the given {@link MetaObject#type}.
|
|
112
|
+
*
|
|
113
|
+
* @param {String} type The type.
|
|
114
|
+
* @returns {String[]} Array of {@link MetaObject#id}s.
|
|
115
|
+
*/
|
|
116
|
+
getObjectIDsByType(type: string): string[];
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Gets the {@link MetaObject#id}s of the {@link MetaObject}s within the given subtree.
|
|
120
|
+
*
|
|
121
|
+
* @param {String} id ID of the root {@link MetaObject} of the given subtree.
|
|
122
|
+
* @param {String[]} [includeTypes] Optional list of types to include.
|
|
123
|
+
* @param {String[]} [excludeTypes] Optional list of types to exclude.
|
|
124
|
+
* @returns {String[]} Array of {@link MetaObject#id}s.
|
|
125
|
+
*/
|
|
126
|
+
getObjectIDsInSubtree(id: string, includeTypes?: string[], excludeTypes?: string[]): string[];
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Iterates over the {@link MetaObject}s within the subtree.
|
|
130
|
+
*
|
|
131
|
+
* @param {String} id ID of root {@link MetaObject}.
|
|
132
|
+
* @param {Function} callback Callback fired at each {@link MetaObject}.
|
|
133
|
+
*/
|
|
134
|
+
withMetaObjectsInSubtree(id: string, callback: ()=> void): void;
|
|
135
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A property within a {@link PropertySet}.
|
|
3
|
+
*/
|
|
4
|
+
export declare class Property {
|
|
5
|
+
/**
|
|
6
|
+
* The name of this property.
|
|
7
|
+
*/
|
|
8
|
+
name: string;
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* The type of this property.
|
|
12
|
+
*/
|
|
13
|
+
type: number | string;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* The value of this property.
|
|
17
|
+
*/
|
|
18
|
+
value: any;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The type of this property's value.
|
|
22
|
+
*/
|
|
23
|
+
valueType: number | string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Informative text to explain the property.
|
|
27
|
+
*/
|
|
28
|
+
description: string;
|
|
29
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Property } from "./Property";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* A set of properties associated with one or more {@link MetaObject}s.
|
|
5
|
+
*/
|
|
6
|
+
export declare class PropertySet {
|
|
7
|
+
/**
|
|
8
|
+
* Globally-unique ID for this PropertySet.
|
|
9
|
+
*/
|
|
10
|
+
id: string;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* ID of the corresponding object within the originating system, if any.
|
|
14
|
+
*/
|
|
15
|
+
originalSystemId: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Human-readable name of this PropertySet.
|
|
19
|
+
*/
|
|
20
|
+
name: string;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Type of this PropertySet.
|
|
24
|
+
*/
|
|
25
|
+
type: string;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Properties within this PropertySet.
|
|
29
|
+
*/
|
|
30
|
+
properties: Property[];
|
|
31
|
+
}
|