iflow-engine-base 3.7.11 → 3.7.13
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/bim-engine-sdk.es.js +4011 -3771
- package/dist/bim-engine-sdk.es.js.map +1 -1
- package/dist/bim-engine-sdk.umd.js +104 -104
- package/dist/bim-engine-sdk.umd.js.map +1 -1
- package/dist/index.d.ts +17 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -293,11 +293,12 @@ declare class CameraModule {
|
|
|
293
293
|
private getCameraAspect;
|
|
294
294
|
private getPerspectiveVisibleHeight;
|
|
295
295
|
getOrthographicVisibleHeight(camera?: THREE.OrthographicCamera): number;
|
|
296
|
-
setOrthographicVisibleHeight(visibleHeight: number, camera?: THREE.OrthographicCamera): void;
|
|
296
|
+
setOrthographicVisibleHeight(visibleHeight: number, camera?: THREE.OrthographicCamera, aspect?: number): void;
|
|
297
297
|
private getViewDirection;
|
|
298
298
|
private getStableCameraUp;
|
|
299
299
|
private updateComposerCamera;
|
|
300
300
|
private applySwitchedCamera;
|
|
301
|
+
private syncControlsAfterPoseRestore;
|
|
301
302
|
switchCurrentCamera(): void;
|
|
302
303
|
setPerspectiveFov(fov: number, options?: {
|
|
303
304
|
adjustDistance?: boolean;
|
|
@@ -2098,6 +2099,9 @@ declare class FabricDraw {
|
|
|
2098
2099
|
private syncStyleFromSelection;
|
|
2099
2100
|
private readStyleFromObject;
|
|
2100
2101
|
private isTextObject;
|
|
2102
|
+
private createTextStyle;
|
|
2103
|
+
private getTextOutlineColor;
|
|
2104
|
+
private isWhiteTextColor;
|
|
2101
2105
|
private isInputElement;
|
|
2102
2106
|
private applyCanvasInteractive;
|
|
2103
2107
|
private parseNumber;
|
|
@@ -2420,6 +2424,11 @@ declare interface ICameraPose {
|
|
|
2420
2424
|
z: number;
|
|
2421
2425
|
w: number;
|
|
2422
2426
|
};
|
|
2427
|
+
up?: {
|
|
2428
|
+
x: number;
|
|
2429
|
+
y: number;
|
|
2430
|
+
z: number;
|
|
2431
|
+
};
|
|
2423
2432
|
target?: {
|
|
2424
2433
|
x: number;
|
|
2425
2434
|
y: number;
|
|
@@ -2518,6 +2527,9 @@ declare class InteractionModule {
|
|
|
2518
2527
|
private isBoxSelectionModifierDown;
|
|
2519
2528
|
private isBoxDeselectMode;
|
|
2520
2529
|
private collectModelsInSelection;
|
|
2530
|
+
private getIgnoredSelectionIdsByUrl;
|
|
2531
|
+
private isBoxVisibleUnderClipping;
|
|
2532
|
+
private getActiveClippingPlanes;
|
|
2521
2533
|
private applyBoxSelection;
|
|
2522
2534
|
private applyBoxDeselection;
|
|
2523
2535
|
private excludeHighlightedModels;
|
|
@@ -3151,6 +3163,9 @@ declare class ModelToolModule {
|
|
|
3151
3163
|
split_merge_model(model: any): void;
|
|
3152
3164
|
un_split_merge_model(model: any): void;
|
|
3153
3165
|
private shouldKeepSplitState;
|
|
3166
|
+
private areAllGroupsHidden;
|
|
3167
|
+
private getEngineModelByUrl;
|
|
3168
|
+
private appendUniqueIds;
|
|
3154
3169
|
private restoreSplitModelsOnIdle;
|
|
3155
3170
|
getSceneModel(index: number): any;
|
|
3156
3171
|
updateMaterial(): void;
|
|
@@ -3158,7 +3173,7 @@ declare class ModelToolModule {
|
|
|
3158
3173
|
unhighlightModel(models: any): void;
|
|
3159
3174
|
unhighlightAllModels(isClear?: boolean): void;
|
|
3160
3175
|
hideModel(models: any): void;
|
|
3161
|
-
showModel(models: any): void;
|
|
3176
|
+
showModel(models: any, skipStateCleanup?: boolean): void;
|
|
3162
3177
|
isolateModel(models: any): void;
|
|
3163
3178
|
translucentOtherModel(models: any): void;
|
|
3164
3179
|
setModelColor(model: any, color: string): void;
|