bimplus-renderer 1.6.115 → 1.6.117
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/bin/processPartitionVertices.js +7 -7
- package/dist/bimplus-renderer.js +1 -1
- package/package.json +1 -1
- package/types/bimplus-renderer.d.ts +9 -0
- package/package-lock.json +0 -13354
package/package.json
CHANGED
|
@@ -110,7 +110,9 @@ declare module 'bimplus-renderer' {
|
|
|
110
110
|
|
|
111
111
|
export class ProjectTopologyNode {
|
|
112
112
|
id: WebSdk.Guid;
|
|
113
|
+
divisionTopologyId: WebSdk.DivisionTopologyId;
|
|
113
114
|
isVisible(): boolean;
|
|
115
|
+
getRevision(): number;
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
export class ProjectModel {
|
|
@@ -239,6 +241,10 @@ declare module 'bimplus-renderer' {
|
|
|
239
241
|
CommandSelect: CommandPolicy;
|
|
240
242
|
}
|
|
241
243
|
|
|
244
|
+
export class OverlayLoadingResult {
|
|
245
|
+
[key: string]: unknown;
|
|
246
|
+
}
|
|
247
|
+
|
|
242
248
|
export class Viewport3D {
|
|
243
249
|
constructor(options: {
|
|
244
250
|
settings: ViewportSettings;
|
|
@@ -302,6 +308,9 @@ declare module 'bimplus-renderer' {
|
|
|
302
308
|
getSlideParams(): Scene;
|
|
303
309
|
getObject(id: string): SelectedObject;
|
|
304
310
|
getContent(): ViewportContent;
|
|
311
|
+
toggleObjectNode({id:string,visible:boolean}): void;
|
|
312
|
+
toggleObjectNodeOpacity({id:string,opacity:boolean}): void;
|
|
313
|
+
setSlideScene(scene: Scene, restoreRotationCenter?: boolean, overlayLoadingResult?: OverlayLoadingResult): void;
|
|
305
314
|
}
|
|
306
315
|
|
|
307
316
|
export class ViewportSettings {
|