@pilotdev/pilot-web-3d 23.0.6 → 23.0.8

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 (3) hide show
  1. package/README.md +0 -4
  2. package/index.d.ts +1961 -1839
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,225 +1,5 @@
1
1
  /// <reference types="@types/three" />
2
2
  declare namespace PilotWeb3D {
3
- export class InitializerOptions {
4
- libList?: string[];
5
- language?: string;
6
- }
7
- class Global {
8
- G: any;
9
- RESOURCE_ROOT: string;
10
- initializeResourceRoot(options: InitializerOptions): void;
11
- getResourceUrl(resourceRelativePath: string): string;
12
- }
13
- export const global: Global;
14
- export {};
15
- export type StringMap = {
16
- [key: string]: any;
17
- };
18
- export class Localization {
19
- static initialize(options: any): Promise<void>;
20
- static translate<T extends (string | StringMap) = string>(stringToTrans: string): T;
21
- static setLanguage(language: string): Promise<void>;
22
- static extendLocalization(locales: any): boolean;
23
- }
24
- export class LoadingSpinner {
25
- addToDOM(container: HTMLElement): void;
26
- removeFromDOM(container: HTMLElement): void;
27
- }
28
- export class ExtensionManager {
29
- registerExtensionType(extensionId: string, extension: typeof ExtensionBase): boolean;
30
- unregisterExtensionType(extensionId: string): boolean;
31
- getExtensionType(extensionId: string): typeof ExtensionBase;
32
- }
33
- export const theExtensionManager: ExtensionManager;
34
- export class ExtensionLoader {
35
- loadExtension(extensionId: string): Promise<ExtensionBase>;
36
- unloadExtension(extensionId: string): Promise<boolean>;
37
- getExtensions(): string[];
38
- getExtension(extensionId: string): ExtensionBase;
39
- }
40
- export interface ILayerManager {
41
- createLayer(name: string): ILayer;
42
- deleteLayer(name: string): boolean;
43
- getLayer(name: string): ILayer | null;
44
- hasLayer(name: string): boolean;
45
- }
46
- export interface ILayer {
47
- addOverlay(overlay: Overlay): boolean;
48
- removeOverlay(overlay: Overlay): boolean;
49
- getOverlays(): Overlay[];
50
- getContainer(): LayerContainer;
51
- getViewBox(): LayerViewBox;
52
- dispose(): void;
53
- }
54
- export type Overlay = HTMLElement | any;
55
- export type LayerContainer = HTMLElement | any;
56
- export type LayerViewBox = DOMRect | any;
57
- export interface IEventsDispatcher {
58
- addEventListener(event: string, listener: EventListener, options?: object): void;
59
- removeEventListener(event: string, listener: EventListener): void;
60
- hasEventListener(event: string, listener: EventListener): boolean;
61
- dispatchEvent(event: string | Event): void;
62
- dispatchEventAsync(event: string | Event): void;
63
- clearListeners(): void;
64
- }
65
- export class CoreEventTypes {
66
- static VIEWER_RESIZE_EVENT: string;
67
- static VIEWER_MOUSE_DOWN_EVENT: string;
68
- static VIEWER_MOUSE_MOVE_EVENT: string;
69
- static VIEWER_MOUSE_UP_EVENT: string;
70
- static VIEWER_MOUSE_LONG_TOUCH_EVENT: string;
71
- static SETTING_CHANGED_EVENT: string;
72
- static SETTING_RESET_EVENT: string;
73
- static SETTING_LANGUAGE_CHANGED_EVENT: string;
74
- }
75
- export interface ISettingsStorage {
76
- clear(): void;
77
- getItem<T>(key: string): T | null;
78
- removeItem(key: string): void;
79
- setItem<T>(key: string, value: T): void;
80
- getKeys(): string[];
81
- }
82
- export class SettingsStorageFactory {
83
- getSettingsStorage(): ISettingsStorage;
84
- }
85
- export class LocalSettingsStorage implements ISettingsStorage {
86
- clear(): void;
87
- getItem<T>(key: string): T | null;
88
- removeItem(key: string): void;
89
- setItem<T>(key: string, value: T): void;
90
- getKeys(): string[];
91
- }
92
- export class InMemorySettingsStorage implements ISettingsStorage {
93
- clear(): void;
94
- getItem<T>(key: string): T | null;
95
- removeItem(key: string): void;
96
- setItem<T>(key: string, value: T): void;
97
- getKeys(): string[];
98
- }
99
- export interface ISettings {
100
- changeSetting<T>(name: string, value: T, notify?: boolean, providedData?: any): void;
101
- getSettingValue<T>(name: string): T;
102
- }
103
- export enum BaseSettingsNames {
104
- TOOLBAR = "toolbar",
105
- TOOLBAR_DIRECTION = "toolbarDirection",
106
- TOOLBAR_CONTENT = "toolbarContent",
107
- THEME = "theme"
108
- }
109
- export class SettingChangedEvent extends Event {
110
- name: string;
111
- oldValue: any;
112
- newValue: any;
113
- providedData: any;
114
- }
115
- export abstract class SettingsBase implements ISettings {
116
- protected _eventDispatcher: IEventsDispatcher;
117
- protected _storage: ISettingsStorage;
118
- changeSetting<T>(name: string, value: T, notify?: boolean, providedData?: any): void;
119
- getSettingValue<T>(name: string): T;
120
- protected abstract getKeyWithPrefix(key: string): string;
121
- }
122
- export enum SettingsTheme {
123
- LIGHT_THEME = "ascn-light",
124
- DARK_THEME = "ascn-dark"
125
- }
126
- export const defaultThemeAppearance: string;
127
- export enum ToolbarDirection {
128
- TOP_FIXED = "ascn-toolbar-direction-fixed-top",
129
- TOP_FLUENT = "ascn-toolbar-direction-top",
130
- BOTTOM_FIXED = "ascn-toolbar-direction-fixed-bottom",
131
- BOTTOM_FLUENT = "ascn-toolbar-direction-bottom"
132
- }
133
- export enum ToolbarContent {
134
- CENTER = "ascn-toolbar-content-center",
135
- START = "ascn-toolbar-content-start",
136
- END = "ascn-toolbar-content-end"
137
- }
138
- export interface ToolbarStyle {
139
- [BaseSettingsNames.TOOLBAR_DIRECTION]?: ToolbarDirection;
140
- [BaseSettingsNames.TOOLBAR_CONTENT]?: ToolbarContent;
141
- }
142
- export const defaultToolbarAppearance: ToolbarStyle;
143
- export type ViewerSettings = Record<string, any>;
144
- export class ViewerConfiguration {
145
- settingsPrefix: string;
146
- appearance: ViewerSettings;
147
- createConfiguration(configuration: ViewerSettings, origin: ViewerSettings): void;
148
- mergeConfigurationAndSettings(configuration: ViewerSettings, settings: ISettings): void;
149
- changeTheme(newTheme: string): void;
150
- }
151
- export type ErrorCallback = (message: string) => void;
152
- export type SuccessCallback = (modelId: any) => void;
153
- export enum DocumentType {
154
- UNKNOWN = 0,
155
- DOCUMENT_2D = 1,
156
- DOCUMENT_3D = 2
157
- }
158
- export const defaultBaseSettings: ViewerConfiguration;
159
- export abstract class ViewerBase {
160
- protected _clientContainer: HTMLElement;
161
- protected _loadingSpinner: LoadingSpinner;
162
- protected _documentType: DocumentType;
163
- protected _configuration: ViewerConfiguration;
164
- readonly container: HTMLElement;
165
- readonly layerManagers: Map<number, ILayerManager>;
166
- readonly extensionsLoader: ExtensionLoader;
167
- abstract settings: ISettings;
168
- abstract events: IEventsDispatcher;
169
- get rootContainer(): HTMLElement;
170
- getConfiguration(): ViewerConfiguration;
171
- /**
172
- *
173
- * @returns
174
- */
175
- start(): Promise<number>;
176
- /**
177
- *
178
- */
179
- finish(): void;
180
- onPostExtensionLoad(extension: ExtensionBase): void;
181
- protected loadExtensions(): void;
182
- protected setThemeFromSettings(): void;
183
- }
184
- export class Control {
185
- container: HTMLElement;
186
-
187
- constructor(id: string);
188
- addClass(cssClass: string): void;
189
- removeClass(cssClass: string): void;
190
- getId(): string;
191
- setToolTip(tooltipText: string): void;
192
- }
193
- export class Toolbar extends Control {
194
-
195
- constructor(id: string, toolbarContainer: HTMLElement, options?: ToolbarStyle);
196
- addControl(control: Control, index?: number): void;
197
- removeControl(id: string): void;
198
- changeToolbarPosition(direction: string): void;
199
- changeToolbarContent(content: string): void;
200
- }
201
- export class ExtensionBase {
202
- protected _viewer: ViewerBase;
203
-
204
- constructor(viewer3D: ViewerBase, options?: any);
205
- load(): boolean | Promise<boolean>;
206
- unload(): boolean;
207
- activate(): boolean;
208
- deactivate(): boolean;
209
- /**
210
- * Gets the name of the extension.
211
- * @returns {string} Returns the name of the extension.
212
- */
213
- getName(): string;
214
- onMouseDown(event: MouseEvent): void;
215
- onMouseMove(event: MouseEvent): void;
216
- onMouseUp(event: MouseEvent): void;
217
- onMouseLongTouch(event: MouseEvent): void;
218
- onToolbarCreated(toolbar: Toolbar): void;
219
- protected bindDomEvents(): void;
220
- }
221
- export class ViewerToolbar extends Toolbar {
222
- }
223
3
  export enum UpdateType {
224
4
  /**No changes */
225
5
  None = 0,
@@ -278,6 +58,11 @@ export abstract class ViewObject extends THREE.Object3D {
278
58
  * @default zeroGuid
279
59
  */
280
60
  readonly modelGuid: string;
61
+ /**
62
+ * If true, applies this object's renderOrder as a groupOrder to its children.
63
+ * @default true
64
+ */
65
+ readonly isGroup: boolean;
281
66
 
282
67
  constructor(entityGuid?: string, modelGuid?: string, color?: Color);
283
68
  /**Mesh representation of the object */
@@ -335,17 +120,26 @@ export abstract class ViewObject extends THREE.Object3D {
335
120
  */
336
121
  protected riseOnUpdated(updateType?: UpdateType, object?: THREE.Object3D): void;
337
122
  }
123
+ export class ModelElementIds {
124
+
125
+ constructor(ids: string[], modelImplId: string);
126
+ modelPartId: string;
127
+ elementIds: string[];
128
+ }
338
129
  export abstract class CustomMaterial extends THREE.ShaderMaterial {
339
130
 
340
131
  constructor();
341
132
  copy(source: CustomMaterial): this;
342
- protected customProgramCacheKeyCallback(): string;
343
- protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
133
+ protected refreshUniforms(uniforms: {
134
+ [uniform: string]: THREE.IUniform;
135
+ }, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
344
136
  protected onBeforeCompileCallback(shader: THREE.Shader): void;
345
137
  protected refreshTransformUniform(map: THREE.Texture, uniform: THREE.IUniform): void;
138
+ protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
346
139
  }
347
140
  export interface CustomMeshLambertMaterialParameters extends THREE.ShaderMaterialParameters, THREE.MeshLambertMaterialParameters {
348
141
  instancing?: boolean | undefined;
142
+ instancingColor?: boolean | undefined;
349
143
  }
350
144
  export class CustomMeshLambertMaterial extends CustomMaterial {
351
145
  type: string;
@@ -356,6 +150,11 @@ export class CustomMeshLambertMaterial extends CustomMaterial {
356
150
  */
357
151
  get instancing(): boolean;
358
152
  set instancing(value: boolean);
153
+ /**
154
+ * @default false
155
+ */
156
+ get instancingColor(): boolean;
157
+ set instancingColor(value: boolean);
359
158
  /**
360
159
  * @default new THREE.Color( 0xffffff )
361
160
  */
@@ -473,11 +272,15 @@ export class CustomMeshLambertMaterial extends CustomMaterial {
473
272
  protected refreshUniformsCommon(uniforms: {
474
273
  [uniform: string]: THREE.IUniform;
475
274
  }, material: CustomMeshLambertMaterial, renderer: THREE.WebGLRenderer): void;
476
- protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
275
+ protected refreshUniforms(uniforms: {
276
+ [uniform: string]: THREE.IUniform<any>;
277
+ }, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
477
278
  copy(source: CustomMeshLambertMaterial): this;
478
279
  }
479
- export interface CustomLineMaterialParameters extends THREE.ShaderMaterialParameters, THREE.LineBasicMaterialParameters {
280
+ export interface CustomLineMaterialParameters extends THREE.ShaderMaterialParameters {
480
281
  instancing?: boolean | undefined;
282
+ instancingColor?: boolean | undefined;
283
+ color?: THREE.ColorRepresentation | undefined;
481
284
  }
482
285
  export class CustomLineMaterial extends CustomMaterial {
483
286
  type: string;
@@ -489,70 +292,67 @@ export class CustomLineMaterial extends CustomMaterial {
489
292
  get instancing(): boolean;
490
293
  set instancing(value: boolean);
491
294
  /**
492
- * @default 0xffffff
493
- */
494
- color: THREE.Color;
495
- /**
496
- * Whether the material is affected by fog. Default is true.
497
- * @default true
498
- */
499
- fog: boolean;
500
- /**
501
- * @default 1
502
- */
503
- linewidth: number;
504
- /**
505
- * @default 'round'
506
- */
507
- linecap: string;
508
- /**
509
- * @default 'round'
295
+ * @default false
510
296
  */
511
- linejoin: string;
297
+ get instancingColor(): boolean;
298
+ set instancingColor(value: boolean);
512
299
  /**
513
- * @default null
300
+ * @default 0xffffff
514
301
  */
515
- map: THREE.Texture | null;
516
- protected refreshUniformsCommon(uniforms: {
302
+ color: THREE.Color;
303
+ copy(source: CustomLineMaterial): this;
304
+ protected refreshUniforms(uniforms: {
517
305
  [uniform: string]: THREE.IUniform;
518
306
  }, material: CustomLineMaterial, renderer: THREE.WebGLRenderer): void;
519
- protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
520
- copy(source: CustomLineMaterial): this;
521
307
  }
522
308
  export interface MeshLineMaterialParameters extends THREE.ShaderMaterialParameters {
523
- alphaToCoverage?: boolean | undefined;
524
309
  color?: THREE.ColorRepresentation | undefined;
525
310
  dashed?: boolean | undefined;
526
311
  dashScale?: number | undefined;
527
312
  dashSize?: number | undefined;
528
313
  dashOffset?: number | undefined;
529
314
  gapSize?: number | undefined;
530
- linewidth?: number | undefined;
531
- resolution?: THREE.Vector2 | undefined;
532
- wireframe?: boolean | undefined;
533
315
  worldUnits?: boolean | undefined;
534
316
  }
535
317
  export class MeshLineMaterial extends CustomMaterial {
536
318
  type: string;
537
319
 
538
320
  constructor(parameters: MeshLineMaterialParameters);
539
- get color(): THREE.Color;
540
- set color(value: THREE.ColorRepresentation);
321
+ /**
322
+ * @default false
323
+ */
541
324
  get worldUnits(): boolean;
542
325
  set worldUnits(value: boolean);
326
+ /**
327
+ * @default false
328
+ */
543
329
  get dashed(): boolean;
544
330
  set dashed(value: boolean);
545
- get dashScale(): number;
546
- set dashScale(value: number);
547
- get dashSize(): number;
548
- set dashSize(value: number);
549
- get dashOffset(): number;
550
- set dashOffset(value: number);
551
- get gapSize(): number;
552
- set gapSize(value: number);
553
331
  get resolution(): THREE.Vector2;
554
- set resolution(value: THREE.Vector2);
555
- onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
332
+ /**
333
+ * @default 0xffffff
334
+ */
335
+ color: THREE.Color;
336
+ /**
337
+ * @default 1
338
+ */
339
+ dashScale: number;
340
+ /**
341
+ * @default 1
342
+ */
343
+ dashSize: number;
344
+ /**
345
+ * @default 0
346
+ */
347
+ dashOffset: number;
348
+ /**
349
+ * @default 1
350
+ */
351
+ gapSize: number;
352
+ copy(source: MeshLineMaterial): this;
353
+ protected refreshUniforms(uniforms: {
354
+ [uniform: string]: THREE.IUniform<any>;
355
+ }, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
556
356
  }
557
357
  export interface CustomPointMaterialParameters extends THREE.ShaderMaterialParameters, THREE.PointsMaterialParameters {
558
358
  }
@@ -580,16 +380,13 @@ export class CustomPointMaterial extends CustomMaterial {
580
380
  * @default true
581
381
  */
582
382
  sizeAttenuation: boolean;
583
- /**
584
- * Whether the material is affected by fog. Default is true.
585
- * @default fog
586
- */
587
- fog: boolean;
383
+ copy(source: CustomPointMaterial): this;
588
384
  protected refreshUniformsCommon(uniforms: {
589
385
  [uniform: string]: THREE.IUniform;
590
386
  }, material: CustomPointMaterial, renderer: THREE.WebGLRenderer): void;
591
- protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
592
- copy(source: CustomPointMaterial): this;
387
+ protected refreshUniforms(uniforms: {
388
+ [uniform: string]: THREE.IUniform<any>;
389
+ }, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
593
390
  }
594
391
  export namespace Viewer3DIcons {
595
392
  const VIEWER_SETTINGS_ICON: string;
@@ -607,8 +404,6 @@ export namespace Viewer3DIcons {
607
404
  const VIEWER_MEASUREMENT_DIMENSION_ICON: string;
608
405
  }
609
406
  export namespace ViewerGeneralIcons {
610
- const ZOOM_IN: string;
611
- const ZOOM_OUT: string;
612
407
  const CLOSE: string;
613
408
  const STRETCH_WINDOW: string;
614
409
  const EXPAND_TREE: string;
@@ -618,6 +413,13 @@ export namespace ViewerGeneralIcons {
618
413
  const CIRCLE_ICON: string;
619
414
  const SHOW: string;
620
415
  const HIDE: string;
416
+ const TRASH: string;
417
+ const ARROW_DR: string;
418
+ }
419
+ export namespace Viewer2DIcons {
420
+ const REMARK_CIRCLE_ICON: string;
421
+ const ZOOM_IN: string;
422
+ const ZOOM_OUT: string;
621
423
  }
622
424
  export class MeshLineGeometry extends THREE.InstancedBufferGeometry {
623
425
  type: string;
@@ -629,7 +431,7 @@ export class MeshLineGeometry extends THREE.InstancedBufferGeometry {
629
431
  constructor();
630
432
  applyMatrix4(matrix: THREE.Matrix4): this;
631
433
  updatePoint(index: number, point: THREE.Vector3): void;
632
- updateColor(index: number, color: THREE.Color): void;
434
+ updateColor(index: number, color: Color): void;
633
435
  setPoints(points: THREE.Vector3[]): this;
634
436
  setPositions(array: ArrayLike<number>): this;
635
437
  setColors(array: ArrayLike<number>): this;
@@ -652,14 +454,98 @@ export class MeshLine extends THREE.Mesh {
652
454
  raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection[]): void;
653
455
  }
654
456
  export class TPair<TKey, TValue> {
457
+
458
+ constructor(key: TKey, value: TValue);
655
459
  get key(): TKey;
656
460
  get value(): TValue;
657
461
  }
462
+ export interface IEventsDispatcher {
463
+ addEventListener(event: string, listener: EventListener, options?: object): void;
464
+ removeEventListener(event: string, listener: EventListener): void;
465
+ hasEventListener(event: string, listener: EventListener): boolean;
466
+ dispatchEvent(event: string | Event): void;
467
+ dispatchEventAsync(event: string | Event): void;
468
+ clearListeners(): void;
469
+ }
470
+ export class EventsDispatcherCore implements IEventsDispatcher {
471
+ dispatchEventAsync(event: string | Event): void;
472
+ hasEventListener(type: string, listener: EventListener): boolean;
473
+ dispatchEvent(event: string | Event): void;
474
+ addEventListener(type: string, listener: EventListener, options?: object): void;
475
+ removeEventListener(type: string, listener: EventListener): void;
476
+ removeEvent(type: string): void;
477
+ clearListeners(): void;
478
+ }
479
+ export const MouseButtons: {
480
+ Left: number;
481
+ Middle: number;
482
+ Right: number;
483
+ };
484
+ export class RenderEventTypes {
485
+ static SELECTION_CHANGED_EVENT: string;
486
+ static SELECTION_RESET_EVENT: string;
487
+ static CAMERA_CHANGED_EVENT: string;
488
+ static CAMERA_NAVIGATION_MODE_CHANGED_EVENT: string;
489
+ static RENDER_CLICK_EVENT: string;
490
+ static RENDER_HOVER_EVENT: string;
491
+ static RENDER_DOUBLE_CLICK_EVENT: string;
492
+ }
493
+ export class SelectionChangedEvent extends Event {
494
+ selectedIds: ModelElementIds[];
495
+
496
+ constructor(type: string, selectedIds?: ModelElementIds[]);
497
+ }
498
+ export class ClickedEvent extends Event {
499
+ modelId: string;
500
+ modelElementId: string;
501
+ ctrlKey: boolean;
502
+
503
+ constructor(type: string, modelId: string, modelElementId: string, ctrlKey: boolean);
504
+ }
505
+ export class HoverEvent extends Event {
506
+ modelId: string;
507
+ modelElementId: string;
508
+
509
+ constructor(type: string, modelId: string, modelElementId: string);
510
+ }
511
+ export class GlobalEvents {
512
+ static events: EventsDispatcherCore;
513
+ }
514
+
515
+ export enum SelectionMode {
516
+ Append = 0,
517
+ Replace = 1
518
+ }
519
+ export interface ISettingsStorage {
520
+ clear(): void;
521
+ getItem<T>(key: string): T | null;
522
+ removeItem(key: string): void;
523
+ setItem<T>(key: string, value: T): void;
524
+ getKeys(): string[];
525
+ }
526
+ export class SettingsStorageFactory {
527
+ getSettingsStorage(): ISettingsStorage;
528
+ }
529
+ export class LocalSettingsStorage implements ISettingsStorage {
530
+ clear(): void;
531
+ getItem<T>(key: string): T | null;
532
+ removeItem(key: string): void;
533
+ setItem<T>(key: string, value: T): void;
534
+ getKeys(): string[];
535
+ }
536
+ export class InMemorySettingsStorage implements ISettingsStorage {
537
+ clear(): void;
538
+ getItem<T>(key: string): T | null;
539
+ removeItem(key: string): void;
540
+ setItem<T>(key: string, value: T): void;
541
+ getKeys(): string[];
542
+ }
658
543
  export type Point3 = {
659
544
  x: number;
660
545
  y: number;
661
546
  z: number;
662
547
  };
548
+ export function pointToVector3(point: Point3): THREE.Vector3;
663
549
  export type CameraParameters = {
664
550
  /** Camera position */
665
551
  position: Point3;
@@ -667,7 +553,9 @@ export type CameraParameters = {
667
553
  eyeDir: Point3;
668
554
  /** Field of view: angle in radians */
669
555
  angle: number;
670
- /** (optional) Vector pointing to the center of viewing area. Used only in the NavigationTool */
556
+ /** (optional) Camera up vector*/
557
+ upDir?: Point3;
558
+ /** (optional) Vector pointing to the center of viewing area.*/
671
559
  viewCenter?: Point3;
672
560
  };
673
561
  export type CameraOrientation = {
@@ -696,6 +584,15 @@ export interface ICameraControl {
696
584
  * Sets the camera parameters.
697
585
  */
698
586
  setCameraParameters(iParams: CameraParameters): void;
587
+ /**
588
+ * Sets the camera view point.
589
+ * @param viewCenter - view point
590
+ */
591
+ setViewCenter(viewCenter: THREE.Vector3): void;
592
+ /**
593
+ * Gets the camera view point.
594
+ */
595
+ getViewCenter(): THREE.Vector3;
699
596
  /**
700
597
  * Sets the aspect ratio.
701
598
  */
@@ -718,12 +615,16 @@ export interface ICameraControl {
718
615
  * @param movement - offset in the screen space
719
616
  */
720
617
  spin(movement: THREE.Vector2): void;
618
+ /**
619
+ * Gets the camera orientation.
620
+ */
621
+ getCameraOrientation(): CameraOrientation;
721
622
  /**
722
623
  * Orient the camera
723
624
  * @param iOrientation
724
625
  * @param isAnimationEnabled
725
626
  */
726
- orientateCamera(iOrientation: CameraOrientation, isAnimationEnabled?: boolean): void;
627
+ setCameraOrientation(iOrientation: CameraOrientation, isAnimationEnabled?: boolean): void;
727
628
  /**
728
629
  * Zoom camera to the point
729
630
  * @param deltaSign - zoom distance
@@ -749,66 +650,6 @@ export interface ICameraControl {
749
650
  */
750
651
  setNavigationMode(mode: CameraNavigationMode, isEnable: boolean, duration?: number): void;
751
652
  }
752
- export type EventFunction<Data> = ((data: Data) => void) | (() => void);
753
- export interface IEventListener<Data> {
754
- dispose(): void;
755
- }
756
- export interface IEventSigner<Data> {
757
- listen(callback: EventFunction<Data>, options?: {
758
- bind?: object;
759
- }): IEventListener<Data>;
760
- unlisten(callback: EventFunction<Data>, options?: {
761
- bind?: object;
762
- allowMissing?: boolean;
763
- }): boolean;
764
- }
765
- export interface IDisposable {
766
- dispose(): void;
767
- }
768
- export class DisposeBy implements IDisposable {
769
-
770
- constructor(callback: () => void);
771
- dispose(): void;
772
- }
773
- class RevertProperty<T, P extends keyof T> implements IDisposable {
774
- dispose(): void;
775
- }
776
- export function changeProperty<T, P extends keyof T>(who: T, propName: P, newValue: T[P]): RevertProperty<T, P>;
777
- export class MergeDisposables implements IDisposable {
778
-
779
- constructor(handles: IDisposable[]);
780
- push(...moreHandles: IDisposable[]): void;
781
- dispose(): void;
782
- }
783
- class RemoveDomHandler implements IDisposable {
784
- dispose(): void;
785
- }
786
- export function addDomListener<DomElement extends HTMLElement, Type extends keyof HTMLElementEventMap>(domElement: DomElement, type: Type, listener: (this: HTMLElement, ev: HTMLElementEventMap[Type]) => any): RemoveDomHandler;
787
- export {};
788
- export interface EventEmitter<Data> {
789
- emit(data?: Data, options?: object): void;
790
- }
791
- export class RenderEventListener<Data> implements IEventListener<Data>, IDisposable {
792
-
793
- constructor(event: IEventSigner<Data>, func: EventFunction<Data>, options: {
794
- bind?: object;
795
- });
796
- dispose(): void;
797
- }
798
- export class EventDispatcher<Data> implements IEventSigner<Data>, EventEmitter<Data> {
799
- listen(func: EventFunction<Data>, options?: {
800
- bind?: object;
801
- }): IEventListener<Data>;
802
- unlisten(func: EventFunction<Data>, options?: {
803
- bind?: object;
804
- allowMissing?: boolean;
805
- }): boolean;
806
- emit(data?: Data): void;
807
- emitR(data?: Data): any[];
808
- asSigner(): IEventSigner<Data>;
809
- asEmitter(): EventEmitter<Data>;
810
- removeAllListeners(): void;
811
- }
812
653
  export interface IModelIntersectionChecker {
813
654
  /** Gets the center of the model*/
814
655
  get modelCenter(): THREE.Vector3;
@@ -860,6 +701,106 @@ export interface IModelIntersectionChecker {
860
701
  guid: string;
861
702
  }[];
862
703
  }
704
+ export enum NavigationHandlerPriority {
705
+ DefaultNavigation = 0,
706
+ GizmoHandlers = 20,
707
+ EmbeddedExtensions = 40,
708
+ CustomExtensions = 100
709
+ }
710
+ export class NavigationEventOptions implements EventListenerOptions {
711
+ /** If true, use event capturing instead of event bubbling*/
712
+ readonly capture: boolean;
713
+ /** Call priority of navigation event handlers, from highest to lowest*/
714
+ readonly priority: number | NavigationHandlerPriority;
715
+ /** Always handle, used if `NavigationEvent.isHandled` set to true*/
716
+ readonly alwaysHandle: boolean;
717
+ /** (optional) listener name*/
718
+ readonly navigationTargetName?: string;
719
+
720
+ constructor(
721
+ /** If true, use event capturing instead of event bubbling*/
722
+ capture?: boolean,
723
+ /** Call priority of navigation event handlers, from highest to lowest*/
724
+ priority?: number | NavigationHandlerPriority,
725
+ /** Always handle, used if `NavigationEvent.isHandled` set to true*/
726
+ alwaysHandle?: boolean,
727
+ /** (optional) listener name*/
728
+ navigationTargetName?: string);
729
+ }
730
+ export type NavigationEvent = {
731
+ /**
732
+ * (optional) Value indicating whether the NavigationEvent event was handled.
733
+ */
734
+ isHandled?: boolean;
735
+ };
736
+ export interface ActiveEvent extends Event {
737
+ readonly isActive: boolean;
738
+ }
739
+ export interface NavigationEventSourceEventMap extends HTMLElementEventMap {
740
+ /**
741
+ * Occurs when the {@link INavigationEventSource.isActive} property changes.
742
+ */
743
+ "active": ActiveEvent;
744
+ }
745
+ export interface INavigationEventSource {
746
+ /**
747
+ * Activity of the event source
748
+ */
749
+ get isActive(): boolean;
750
+ set isActive(value: boolean);
751
+ addEventListener<T extends keyof NavigationEventSourceEventMap>(type: T, listener: (this: object, ev: NavigationEventSourceEventMap[T] & NavigationEvent) => void, options?: boolean | EventListenerOptions | NavigationEventOptions): void;
752
+ removeEventListener<T extends keyof NavigationEventSourceEventMap>(type: T, listener: (this: object, ev: NavigationEventSourceEventMap[T] & NavigationEvent) => void, options?: boolean | EventListenerOptions | NavigationEventOptions): void;
753
+ }
754
+ export interface INavigationAgent {
755
+ /**
756
+ * Canvas DOM-events source
757
+ */
758
+ readonly canvasNavigationSource: INavigationEventSource;
759
+ /**
760
+ * Keyboard DOM-events source
761
+ */
762
+ readonly keyboardNavigationSource: INavigationEventSource;
763
+ /**
764
+ * Activity of the navigation agent
765
+ */
766
+ get isActive(): boolean;
767
+ set isActive(value: boolean);
768
+ /**
769
+ * Gets rectangle of the navigation area
770
+ */
771
+ getNavigationArea(): DOMRect;
772
+ }
773
+ export interface INavigationTool {
774
+ /**
775
+ * Gets name of this navigation tool.
776
+ */
777
+ get name(): string;
778
+ /**
779
+ * Initialize navigation tool.
780
+ */
781
+ init(navAgent: INavigationAgent, cameraControl: ICameraControl, intersectionChecker: IModelIntersectionChecker): void;
782
+ /**
783
+ * Activates or deactivates this navigation tool.
784
+ */
785
+ setActive(isActive: boolean): void;
786
+ /**
787
+ * Gets the camera pivot point.
788
+ */
789
+ getPivotPoint(): THREE.Vector3;
790
+ /**
791
+ * Sets the camera pivot point.
792
+ */
793
+ setPivotPoint(pivotPoint: THREE.Vector3): void;
794
+ /**
795
+ * Sets the camera parameters.
796
+ * @param iParams
797
+ */
798
+ setCameraParameters(iParams: CameraParameters): void;
799
+ /**
800
+ * Gets the camera parameters.
801
+ */
802
+ getCameraParameters(): CameraParameters;
803
+ }
863
804
  export class RenderViewSettings {
864
805
  telemetry?: boolean;
865
806
  hideEdgesWhenNavigation?: boolean;
@@ -966,8 +907,6 @@ export interface IUserScene extends THREE.Scene {
966
907
  manageScene(context?: IRenderOperationContext): boolean;
967
908
  /** Render scene */
968
909
  render(context: IRenderOperationContext): void;
969
- /** Clear scene */
970
- clear(): this;
971
910
  /** Dispose scene */
972
911
  dispose(): void;
973
912
  }
@@ -979,6 +918,7 @@ export interface I3DRenderer {
979
918
  getSize(target: THREE.Vector2): THREE.Vector2;
980
919
  setSize(width: number, height: number, updateStyle?: boolean): void;
981
920
  setViewport(x: THREE.Vector4 | number, y?: number, width?: number, height?: number): void;
921
+ getViewport(target: THREE.Vector4): THREE.Vector4;
982
922
  clippingPlanes: THREE.Plane[];
983
923
  domElement: HTMLCanvasElement;
984
924
  }
@@ -1025,6 +965,27 @@ export interface IRenderViewer3D {
1025
965
  */
1026
966
  removeScene(scene: IUserScene): void;
1027
967
  }
968
+ export class InitializerOptions {
969
+ libList?: string[];
970
+ language?: string;
971
+ }
972
+ class Global {
973
+ G: any;
974
+ RESOURCE_ROOT: string;
975
+ initializeResourceRoot(options: InitializerOptions): void;
976
+ getResourceUrl(resourceRelativePath: string): string;
977
+ }
978
+ export const global: Global;
979
+ export {};
980
+ export type StringMap = {
981
+ [key: string]: any;
982
+ };
983
+ export class Localization {
984
+ static initialize(options: any): Promise<void>;
985
+ static translate<T extends (string | StringMap) = string>(stringToTrans: string): T;
986
+ static setLanguage(language: string): Promise<void>;
987
+ static extendLocalization(locales: any): boolean;
988
+ }
1028
989
  export class ModelElement {
1029
990
  get id(): string;
1030
991
  get modelPartId(): string;
@@ -1084,1519 +1045,1584 @@ export class ModelPart {
1084
1045
  get elementTree(): ModelElementTree;
1085
1046
  dispose(): void;
1086
1047
  }
1087
-
1088
- export class SettingsNames {
1089
- static TELEMETRY: string;
1090
- static AXES: string;
1091
- static CAMERA_ANIMATION: string;
1092
- static HIDE_SMALL_ELEMENTS_WHEN_NAVIGATING: string;
1093
- static GLOBAL_LIGHT: string;
1094
- static LIGHT_SOURCE: string;
1095
- static ANTI_ALIASING: string;
1096
- static HIDE_SMALL_ELEMENTS_MOVING: string;
1097
- static SMALL_ELEMENT_SIZE: string;
1098
- static LABEL_LINE_LENGTH: string;
1099
- static HIDE_EDGES_WHEN_NAVIGATING: string;
1100
- static DISPLAY_MODE: string;
1101
- static NAVIGATION_CUBE: string;
1102
- static DESIRED_FRAMERATE: string;
1103
- static MANAGE_TIME: string;
1104
- static HOVER_MESHES: string;
1105
- static HOVER_EDGES: string;
1106
- static SELECT_MESHES: string;
1107
- static SELECT_EDGES: string;
1108
- }
1109
- export enum ValueType {
1110
- STRING = 0,
1111
- NUMBER = 1,
1112
- ENUM = 2,
1113
- BOOL = 3
1114
- }
1115
- export class Viewer3DConfiguration extends ViewerConfiguration {
1116
- render: ViewerSettings;
1117
-
1118
- constructor(appearance?: ViewerSettings, render?: ViewerSettings);
1119
- }
1120
- export const defaultViewer3DSettings: ViewerSettings;
1121
- export enum IfcType {
1122
- IfcAbsorbedDoseMeasure = 0,
1123
- IfcAccelerationMeasure = 1,
1124
- IfcActionRequest = 2,
1125
- IfcActionRequestTypeEnum = 3,
1126
- IfcActionSourceTypeEnum = 4,
1127
- IfcActionTypeEnum = 5,
1128
- IfcActor = 6,
1129
- IfcActorRole = 7,
1130
- IfcActorSelect = 8,
1131
- IfcActuator = 9,
1132
- IfcActuatorType = 10,
1133
- IfcActuatorTypeEnum = 11,
1134
- IfcAddress = 12,
1135
- IfcAddressTypeEnum = 13,
1136
- IfcAdvancedBrep = 14,
1137
- IfcAdvancedBrepWithVoids = 15,
1138
- IfcAdvancedFace = 16,
1139
- IfcAirTerminal = 17,
1140
- IfcAirTerminalBox = 18,
1141
- IfcAirTerminalBoxType = 19,
1142
- IfcAirTerminalBoxTypeEnum = 20,
1143
- IfcAirTerminalType = 21,
1144
- IfcAirTerminalTypeEnum = 22,
1145
- IfcAirToAirHeatRecovery = 23,
1146
- IfcAirToAirHeatRecoveryType = 24,
1147
- IfcAirToAirHeatRecoveryTypeEnum = 25,
1148
- IfcAlarm = 26,
1149
- IfcAlarmType = 27,
1150
- IfcAlarmTypeEnum = 28,
1151
- IfcAlignment = 29,
1152
- IfcAlignment2DHorizontal = 30,
1153
- IfcAlignment2DHorizontalSegment = 31,
1154
- IfcAlignment2DSegment = 32,
1155
- IfcAlignment2DVerSegCircularArc = 33,
1156
- IfcAlignment2DVerSegLine = 34,
1157
- IfcAlignment2DVerSegParabolicArc = 35,
1158
- IfcAlignment2DVertical = 36,
1159
- IfcAlignment2DVerticalSegment = 37,
1160
- IfcAlignmentCurve = 38,
1161
- IfcAlignmentTypeEnum = 39,
1162
- IfcAmountOfSubstanceMeasure = 40,
1163
- IfcAnalysisModelTypeEnum = 41,
1164
- IfcAnalysisTheoryTypeEnum = 42,
1165
- IfcAngularVelocityMeasure = 43,
1166
- IfcAnnotation = 44,
1167
- IfcAnnotationFillArea = 45,
1168
- IfcApplication = 46,
1169
- IfcAppliedValue = 47,
1170
- IfcAppliedValueSelect = 48,
1171
- IfcApproval = 49,
1172
- IfcApprovalRelationship = 50,
1173
- IfcArbitraryClosedProfileDef = 51,
1174
- IfcArbitraryOpenProfileDef = 52,
1175
- IfcArbitraryProfileDefWithVoids = 53,
1176
- IfcArcIndex = 54,
1177
- IfcAreaDensityMeasure = 55,
1178
- IfcAreaMeasure = 56,
1179
- IfcArithmeticOperatorEnum = 57,
1180
- IfcAssemblyPlaceEnum = 58,
1181
- IfcAsset = 59,
1182
- IfcAsymmetricIShapeProfileDef = 60,
1183
- IfcAudioVisualAppliance = 61,
1184
- IfcAudioVisualApplianceType = 62,
1185
- IfcAudioVisualApplianceTypeEnum = 63,
1186
- IfcAxis1Placement = 64,
1187
- IfcAxis2Placement = 65,
1188
- IfcAxis2Placement2D = 66,
1189
- IfcAxis2Placement3D = 67,
1190
- IfcBeam = 68,
1191
- IfcBeamStandardCase = 69,
1192
- IfcBeamType = 70,
1193
- IfcBeamTypeEnum = 71,
1194
- IfcBenchmarkEnum = 72,
1195
- IfcBendingParameterSelect = 73,
1196
- IfcBinary = 74,
1197
- IfcBlobTexture = 75,
1198
- IfcBlock = 76,
1199
- IfcBoiler = 77,
1200
- IfcBoilerType = 78,
1201
- IfcBoilerTypeEnum = 79,
1202
- IfcBoolean = 80,
1203
- IfcBooleanClippingResult = 81,
1204
- IfcBooleanOperand = 82,
1205
- IfcBooleanOperator = 83,
1206
- IfcBooleanResult = 84,
1207
- IfcBoundaryCondition = 85,
1208
- IfcBoundaryCurve = 86,
1209
- IfcBoundaryEdgeCondition = 87,
1210
- IfcBoundaryFaceCondition = 88,
1211
- IfcBoundaryNodeCondition = 89,
1212
- IfcBoundaryNodeConditionWarping = 90,
1213
- IfcBoundedCurve = 91,
1214
- IfcBoundedSurface = 92,
1215
- IfcBoundingBox = 93,
1216
- IfcBoxAlignment = 94,
1217
- IfcBoxedHalfSpace = 95,
1218
- IfcBSplineCurve = 96,
1219
- IfcBSplineCurveForm = 97,
1220
- IfcBSplineCurveWithKnots = 98,
1221
- IfcBSplineSurface = 99,
1222
- IfcBSplineSurfaceForm = 100,
1223
- IfcBSplineSurfaceWithKnots = 101,
1224
- IfcBuilding = 102,
1225
- IfcBuildingElement = 103,
1226
- IfcBuildingElementPart = 104,
1227
- IfcBuildingElementPartType = 105,
1228
- IfcBuildingElementPartTypeEnum = 106,
1229
- IfcBuildingElementProxy = 107,
1230
- IfcBuildingElementProxyType = 108,
1231
- IfcBuildingElementProxyTypeEnum = 109,
1232
- IfcBuildingElementType = 110,
1233
- IfcBuildingStorey = 111,
1234
- IfcBuildingSystem = 112,
1235
- IfcBuildingSystemTypeEnum = 113,
1236
- IfcBurner = 114,
1237
- IfcBurnerType = 115,
1238
- IfcBurnerTypeEnum = 116,
1239
- IfcCableCarrierFitting = 117,
1240
- IfcCableCarrierFittingType = 118,
1241
- IfcCableCarrierFittingTypeEnum = 119,
1242
- IfcCableCarrierSegment = 120,
1243
- IfcCableCarrierSegmentType = 121,
1244
- IfcCableCarrierSegmentTypeEnum = 122,
1245
- IfcCableFitting = 123,
1246
- IfcCableFittingType = 124,
1247
- IfcCableFittingTypeEnum = 125,
1248
- IfcCableSegment = 126,
1249
- IfcCableSegmentType = 127,
1250
- IfcCableSegmentTypeEnum = 128,
1251
- IfcCardinalPointReference = 129,
1252
- IfcCartesianPoint = 130,
1253
- IfcCartesianPointList = 131,
1254
- IfcCartesianPointList2D = 132,
1255
- IfcCartesianPointList3D = 133,
1256
- IfcCartesianTransformationOperator = 134,
1257
- IfcCartesianTransformationOperator2D = 135,
1258
- IfcCartesianTransformationOperator2DnonUniform = 136,
1259
- IfcCartesianTransformationOperator3D = 137,
1260
- IfcCartesianTransformationOperator3DnonUniform = 138,
1261
- IfcCenterLineProfileDef = 139,
1262
- IfcChangeActionEnum = 140,
1263
- IfcChiller = 141,
1264
- IfcChillerType = 142,
1265
- IfcChillerTypeEnum = 143,
1266
- IfcChimney = 144,
1267
- IfcChimneyType = 145,
1268
- IfcChimneyTypeEnum = 146,
1269
- IfcCircle = 147,
1270
- IfcCircleHollowProfileDef = 148,
1271
- IfcCircleProfileDef = 149,
1272
- IfcCircularArcSegment2D = 150,
1273
- IfcCivilElement = 151,
1274
- IfcCivilElementType = 152,
1275
- IfcClassification = 153,
1276
- IfcClassificationReference = 154,
1277
- IfcClassificationReferenceSelect = 155,
1278
- IfcClassificationSelect = 156,
1279
- IfcClosedShell = 157,
1280
- IfcCoil = 158,
1281
- IfcCoilType = 159,
1282
- IfcCoilTypeEnum = 160,
1283
- IfcColour = 161,
1284
- IfcColourOrFactor = 162,
1285
- IfcColourRgb = 163,
1286
- IfcColourRgbList = 164,
1287
- IfcColourSpecification = 165,
1288
- IfcColumn = 166,
1289
- IfcColumnStandardCase = 167,
1290
- IfcColumnType = 168,
1291
- IfcColumnTypeEnum = 169,
1292
- IfcCommunicationsAppliance = 170,
1293
- IfcCommunicationsApplianceType = 171,
1294
- IfcCommunicationsApplianceTypeEnum = 172,
1295
- IfcComplexNumber = 173,
1296
- IfcComplexProperty = 174,
1297
- IfcComplexPropertyTemplate = 175,
1298
- IfcComplexPropertyTemplateTypeEnum = 176,
1299
- IfcCompositeCurve = 177,
1300
- IfcCompositeCurveOnSurface = 178,
1301
- IfcCompositeCurveSegment = 179,
1302
- IfcCompositeProfileDef = 180,
1303
- IfcCompoundPlaneAngleMeasure = 181,
1304
- IfcCompressor = 182,
1305
- IfcCompressorType = 183,
1306
- IfcCompressorTypeEnum = 184,
1307
- IfcCondenser = 185,
1308
- IfcCondenserType = 186,
1309
- IfcCondenserTypeEnum = 187,
1310
- IfcConic = 188,
1311
- IfcConnectedFaceSet = 189,
1312
- IfcConnectionCurveGeometry = 190,
1313
- IfcConnectionGeometry = 191,
1314
- IfcConnectionPointEccentricity = 192,
1315
- IfcConnectionPointGeometry = 193,
1316
- IfcConnectionSurfaceGeometry = 194,
1317
- IfcConnectionTypeEnum = 195,
1318
- IfcConnectionVolumeGeometry = 196,
1319
- IfcConstraint = 197,
1320
- IfcConstraintEnum = 198,
1321
- IfcConstructionEquipmentResource = 199,
1322
- IfcConstructionEquipmentResourceType = 200,
1323
- IfcConstructionEquipmentResourceTypeEnum = 201,
1324
- IfcConstructionMaterialResource = 202,
1325
- IfcConstructionMaterialResourceType = 203,
1326
- IfcConstructionMaterialResourceTypeEnum = 204,
1327
- IfcConstructionProductResource = 205,
1328
- IfcConstructionProductResourceType = 206,
1329
- IfcConstructionProductResourceTypeEnum = 207,
1330
- IfcConstructionResource = 208,
1331
- IfcConstructionResourceType = 209,
1332
- IfcContext = 210,
1333
- IfcContextDependentMeasure = 211,
1334
- IfcContextDependentUnit = 212,
1335
- IfcControl = 213,
1336
- IfcController = 214,
1337
- IfcControllerType = 215,
1338
- IfcControllerTypeEnum = 216,
1339
- IfcConversionBasedUnit = 217,
1340
- IfcConversionBasedUnitWithOffset = 218,
1341
- IfcCooledBeam = 219,
1342
- IfcCooledBeamType = 220,
1343
- IfcCooledBeamTypeEnum = 221,
1344
- IfcCoolingTower = 222,
1345
- IfcCoolingTowerType = 223,
1346
- IfcCoolingTowerTypeEnum = 224,
1347
- IfcCoordinateOperation = 225,
1348
- IfcCoordinateReferenceSystem = 226,
1349
- IfcCoordinateReferenceSystemSelect = 227,
1350
- IfcCostItem = 228,
1351
- IfcCostItemTypeEnum = 229,
1352
- IfcCostSchedule = 230,
1353
- IfcCostScheduleTypeEnum = 231,
1354
- IfcCostValue = 232,
1355
- IfcCountMeasure = 233,
1356
- IfcCovering = 234,
1357
- IfcCoveringType = 235,
1358
- IfcCoveringTypeEnum = 236,
1359
- IfcCrewResource = 237,
1360
- IfcCrewResourceType = 238,
1361
- IfcCrewResourceTypeEnum = 239,
1362
- IfcCsgPrimitive3D = 240,
1363
- IfcCsgSelect = 241,
1364
- IfcCsgSolid = 242,
1365
- IfcCShapeProfileDef = 243,
1366
- IfcCurrencyRelationship = 244,
1367
- IfcCurtainWall = 245,
1368
- IfcCurtainWallType = 246,
1369
- IfcCurtainWallTypeEnum = 247,
1370
- IfcCurvatureMeasure = 248,
1371
- IfcCurve = 249,
1372
- IfcCurveBoundedPlane = 250,
1373
- IfcCurveBoundedSurface = 251,
1374
- IfcCurveFontOrScaledCurveFontSelect = 252,
1375
- IfcCurveInterpolationEnum = 253,
1376
- IfcCurveOnSurface = 254,
1377
- IfcCurveOrEdgeCurve = 255,
1378
- IfcCurveSegment2D = 256,
1379
- IfcCurveStyle = 257,
1380
- IfcCurveStyleFont = 258,
1381
- IfcCurveStyleFontAndScaling = 259,
1382
- IfcCurveStyleFontPattern = 260,
1383
- IfcCurveStyleFontSelect = 261,
1384
- IfcCylindricalSurface = 262,
1385
- IfcDamper = 263,
1386
- IfcDamperType = 264,
1387
- IfcDamperTypeEnum = 265,
1388
- IfcDataOriginEnum = 266,
1389
- IfcDate = 267,
1390
- IfcDateTime = 268,
1391
- IfcDayInMonthNumber = 269,
1392
- IfcDayInWeekNumber = 270,
1393
- IfcDefinitionSelect = 271,
1394
- IfcDerivedMeasureValue = 272,
1395
- IfcDerivedProfileDef = 273,
1396
- IfcDerivedUnit = 274,
1397
- IfcDerivedUnitElement = 275,
1398
- IfcDerivedUnitEnum = 276,
1399
- IfcDescriptiveMeasure = 277,
1400
- IfcDimensionalExponents = 278,
1401
- IfcDimensionCount = 279,
1402
- IfcDirection = 280,
1403
- IfcDirectionSenseEnum = 281,
1404
- IfcDiscreteAccessory = 282,
1405
- IfcDiscreteAccessoryType = 283,
1406
- IfcDiscreteAccessoryTypeEnum = 284,
1407
- IfcDistanceExpression = 285,
1408
- IfcDistributionChamberElement = 286,
1409
- IfcDistributionChamberElementType = 287,
1410
- IfcDistributionChamberElementTypeEnum = 288,
1411
- IfcDistributionCircuit = 289,
1412
- IfcDistributionControlElement = 290,
1413
- IfcDistributionControlElementType = 291,
1414
- IfcDistributionElement = 292,
1415
- IfcDistributionElementType = 293,
1416
- IfcDistributionFlowElement = 294,
1417
- IfcDistributionFlowElementType = 295,
1418
- IfcDistributionPort = 296,
1419
- IfcDistributionPortTypeEnum = 297,
1420
- IfcDistributionSystem = 298,
1421
- IfcDistributionSystemEnum = 299,
1422
- IfcDocumentConfidentialityEnum = 300,
1423
- IfcDocumentInformation = 301,
1424
- IfcDocumentInformationRelationship = 302,
1425
- IfcDocumentReference = 303,
1426
- IfcDocumentSelect = 304,
1427
- IfcDocumentStatusEnum = 305,
1428
- IfcDoor = 306,
1429
- IfcDoorLiningProperties = 307,
1430
- IfcDoorPanelOperationEnum = 308,
1431
- IfcDoorPanelPositionEnum = 309,
1432
- IfcDoorPanelProperties = 310,
1433
- IfcDoorStandardCase = 311,
1434
- IfcDoorStyle = 312,
1435
- IfcDoorStyleConstructionEnum = 313,
1436
- IfcDoorStyleOperationEnum = 314,
1437
- IfcDoorType = 315,
1438
- IfcDoorTypeEnum = 316,
1439
- IfcDoorTypeOperationEnum = 317,
1440
- IfcDoseEquivalentMeasure = 318,
1441
- IfcDraughtingPreDefinedColour = 319,
1442
- IfcDraughtingPreDefinedCurveFont = 320,
1443
- IfcDuctFitting = 321,
1444
- IfcDuctFittingType = 322,
1445
- IfcDuctFittingTypeEnum = 323,
1446
- IfcDuctSegment = 324,
1447
- IfcDuctSegmentType = 325,
1448
- IfcDuctSegmentTypeEnum = 326,
1449
- IfcDuctSilencer = 327,
1450
- IfcDuctSilencerType = 328,
1451
- IfcDuctSilencerTypeEnum = 329,
1452
- IfcDuration = 330,
1453
- IfcDynamicViscosityMeasure = 331,
1454
- IfcEdge = 332,
1455
- IfcEdgeCurve = 333,
1456
- IfcEdgeLoop = 334,
1457
- IfcElectricAppliance = 335,
1458
- IfcElectricApplianceType = 336,
1459
- IfcElectricApplianceTypeEnum = 337,
1460
- IfcElectricCapacitanceMeasure = 338,
1461
- IfcElectricChargeMeasure = 339,
1462
- IfcElectricConductanceMeasure = 340,
1463
- IfcElectricCurrentMeasure = 341,
1464
- IfcElectricDistributionBoard = 342,
1465
- IfcElectricDistributionBoardType = 343,
1466
- IfcElectricDistributionBoardTypeEnum = 344,
1467
- IfcElectricFlowStorageDevice = 345,
1468
- IfcElectricFlowStorageDeviceType = 346,
1469
- IfcElectricFlowStorageDeviceTypeEnum = 347,
1470
- IfcElectricGenerator = 348,
1471
- IfcElectricGeneratorType = 349,
1472
- IfcElectricGeneratorTypeEnum = 350,
1473
- IfcElectricMotor = 351,
1474
- IfcElectricMotorType = 352,
1475
- IfcElectricMotorTypeEnum = 353,
1476
- IfcElectricResistanceMeasure = 354,
1477
- IfcElectricTimeControl = 355,
1478
- IfcElectricTimeControlType = 356,
1479
- IfcElectricTimeControlTypeEnum = 357,
1480
- IfcElectricVoltageMeasure = 358,
1481
- IfcElement = 359,
1482
- IfcElementarySurface = 360,
1483
- IfcElementAssembly = 361,
1484
- IfcElementAssemblyType = 362,
1485
- IfcElementAssemblyTypeEnum = 363,
1486
- IfcElementComponent = 364,
1487
- IfcElementComponentType = 365,
1488
- IfcElementCompositionEnum = 366,
1489
- IfcElementQuantity = 367,
1490
- IfcElementType = 368,
1491
- IfcEllipse = 369,
1492
- IfcEllipseProfileDef = 370,
1493
- IfcEnergyConversionDevice = 371,
1494
- IfcEnergyConversionDeviceType = 372,
1495
- IfcEnergyMeasure = 373,
1496
- IfcEngine = 374,
1497
- IfcEngineType = 375,
1498
- IfcEngineTypeEnum = 376,
1499
- IfcEvaporativeCooler = 377,
1500
- IfcEvaporativeCoolerType = 378,
1501
- IfcEvaporativeCoolerTypeEnum = 379,
1502
- IfcEvaporator = 380,
1503
- IfcEvaporatorType = 381,
1504
- IfcEvaporatorTypeEnum = 382,
1505
- IfcEvent = 383,
1506
- IfcEventTime = 384,
1507
- IfcEventTriggerTypeEnum = 385,
1508
- IfcEventType = 386,
1509
- IfcEventTypeEnum = 387,
1510
- IfcExtendedProperties = 388,
1511
- IfcExternalInformation = 389,
1512
- IfcExternallyDefinedHatchStyle = 390,
1513
- IfcExternallyDefinedSurfaceStyle = 391,
1514
- IfcExternallyDefinedTextFont = 392,
1515
- IfcExternalReference = 393,
1516
- IfcExternalReferenceRelationship = 394,
1517
- IfcExternalSpatialElement = 395,
1518
- IfcExternalSpatialElementTypeEnum = 396,
1519
- IfcExternalSpatialStructureElement = 397,
1520
- IfcExtrudedAreaSolid = 398,
1521
- IfcExtrudedAreaSolidTapered = 399,
1522
- IfcFace = 400,
1523
- IfcFaceBasedSurfaceModel = 401,
1524
- IfcFaceBound = 402,
1525
- IfcFaceOuterBound = 403,
1526
- IfcFaceSurface = 404,
1527
- IfcFacetedBrep = 405,
1528
- IfcFacetedBrepWithVoids = 406,
1529
- IfcFailureConnectionCondition = 407,
1530
- IfcFan = 408,
1531
- IfcFanType = 409,
1532
- IfcFanTypeEnum = 410,
1533
- IfcFastener = 411,
1534
- IfcFastenerType = 412,
1535
- IfcFastenerTypeEnum = 413,
1536
- IfcFeatureElement = 414,
1537
- IfcFeatureElementAddition = 415,
1538
- IfcFeatureElementSubtraction = 416,
1539
- IfcFillAreaStyle = 417,
1540
- IfcFillAreaStyleHatching = 418,
1541
- IfcFillAreaStyleTiles = 419,
1542
- IfcFillStyleSelect = 420,
1543
- IfcFilter = 421,
1544
- IfcFilterType = 422,
1545
- IfcFilterTypeEnum = 423,
1546
- IfcFireSuppressionTerminal = 424,
1547
- IfcFireSuppressionTerminalType = 425,
1548
- IfcFireSuppressionTerminalTypeEnum = 426,
1549
- IfcFixedReferenceSweptAreaSolid = 427,
1550
- IfcFlowController = 428,
1551
- IfcFlowControllerType = 429,
1552
- IfcFlowDirectionEnum = 430,
1553
- IfcFlowFitting = 431,
1554
- IfcFlowFittingType = 432,
1555
- IfcFlowInstrument = 433,
1556
- IfcFlowInstrumentType = 434,
1557
- IfcFlowInstrumentTypeEnum = 435,
1558
- IfcFlowMeter = 436,
1559
- IfcFlowMeterType = 437,
1560
- IfcFlowMeterTypeEnum = 438,
1561
- IfcFlowMovingDevice = 439,
1562
- IfcFlowMovingDeviceType = 440,
1563
- IfcFlowSegment = 441,
1564
- IfcFlowSegmentType = 442,
1565
- IfcFlowStorageDevice = 443,
1566
- IfcFlowStorageDeviceType = 444,
1567
- IfcFlowTerminal = 445,
1568
- IfcFlowTerminalType = 446,
1569
- IfcFlowTreatmentDevice = 447,
1570
- IfcFlowTreatmentDeviceType = 448,
1571
- IfcFontStyle = 449,
1572
- IfcFontVariant = 450,
1573
- IfcFontWeight = 451,
1574
- IfcFooting = 452,
1575
- IfcFootingType = 453,
1576
- IfcFootingTypeEnum = 454,
1577
- IfcForceMeasure = 455,
1578
- IfcFrequencyMeasure = 456,
1579
- IfcFurnishingElement = 457,
1580
- IfcFurnishingElementType = 458,
1581
- IfcFurniture = 459,
1582
- IfcFurnitureType = 460,
1583
- IfcFurnitureTypeEnum = 461,
1584
- IfcGeographicElement = 462,
1585
- IfcGeographicElementType = 463,
1586
- IfcGeographicElementTypeEnum = 464,
1587
- IfcGeometricCurveSet = 465,
1588
- IfcGeometricProjectionEnum = 466,
1589
- IfcGeometricRepresentationContext = 467,
1590
- IfcGeometricRepresentationItem = 468,
1591
- IfcGeometricRepresentationSubContext = 469,
1592
- IfcGeometricSet = 470,
1593
- IfcGeometricSetSelect = 471,
1594
- IfcGloballyUniqueId = 472,
1595
- IfcGlobalOrLocalEnum = 473,
1596
- IfcGrid = 474,
1597
- IfcGridAxis = 475,
1598
- IfcGridPlacement = 476,
1599
- IfcGridPlacementDirectionSelect = 477,
1600
- IfcGridTypeEnum = 478,
1601
- IfcGroup = 479,
1602
- IfcHalfSpaceSolid = 480,
1603
- IfcHatchLineDistanceSelect = 481,
1604
- IfcHeatExchanger = 482,
1605
- IfcHeatExchangerType = 483,
1606
- IfcHeatExchangerTypeEnum = 484,
1607
- IfcHeatFluxDensityMeasure = 485,
1608
- IfcHeatingValueMeasure = 486,
1609
- IfcHumidifier = 487,
1610
- IfcHumidifierType = 488,
1611
- IfcHumidifierTypeEnum = 489,
1612
- IfcIdentifier = 490,
1613
- IfcIlluminanceMeasure = 491,
1614
- IfcImageTexture = 492,
1615
- IfcIndexedColourMap = 493,
1616
- IfcIndexedPolyCurve = 494,
1617
- IfcIndexedPolygonalFace = 495,
1618
- IfcIndexedPolygonalFaceWithVoids = 496,
1619
- IfcIndexedTextureMap = 497,
1620
- IfcIndexedTriangleTextureMap = 498,
1621
- IfcInductanceMeasure = 499,
1622
- IfcInteger = 500,
1623
- IfcIntegerCountRateMeasure = 501,
1624
- IfcInterceptor = 502,
1625
- IfcInterceptorType = 503,
1626
- IfcInterceptorTypeEnum = 504,
1627
- IfcInternalOrExternalEnum = 505,
1628
- IfcIntersectionCurve = 506,
1629
- IfcInventory = 507,
1630
- IfcInventoryTypeEnum = 508,
1631
- IfcIonConcentrationMeasure = 509,
1632
- IfcIrregularTimeSeries = 510,
1633
- IfcIrregularTimeSeriesValue = 511,
1634
- IfcIShapeProfileDef = 512,
1635
- IfcIsothermalMoistureCapacityMeasure = 513,
1636
- IfcJunctionBox = 514,
1637
- IfcJunctionBoxType = 515,
1638
- IfcJunctionBoxTypeEnum = 516,
1639
- IfcKinematicViscosityMeasure = 517,
1640
- IfcKnotType = 518,
1641
- IfcLabel = 519,
1642
- IfcLaborResource = 520,
1643
- IfcLaborResourceType = 521,
1644
- IfcLaborResourceTypeEnum = 522,
1645
- IfcLagTime = 523,
1646
- IfcLamp = 524,
1647
- IfcLampType = 525,
1648
- IfcLampTypeEnum = 526,
1649
- IfcLanguageId = 527,
1650
- IfcLayeredItem = 528,
1651
- IfcLayerSetDirectionEnum = 529,
1652
- IfcLengthMeasure = 530,
1653
- IfcLibraryInformation = 531,
1654
- IfcLibraryReference = 532,
1655
- IfcLibrarySelect = 533,
1656
- IfcLightDistributionCurveEnum = 534,
1657
- IfcLightDistributionData = 535,
1658
- IfcLightDistributionDataSourceSelect = 536,
1659
- IfcLightEmissionSourceEnum = 537,
1660
- IfcLightFixture = 538,
1661
- IfcLightFixtureType = 539,
1662
- IfcLightFixtureTypeEnum = 540,
1663
- IfcLightIntensityDistribution = 541,
1664
- IfcLightSource = 542,
1665
- IfcLightSourceAmbient = 543,
1666
- IfcLightSourceDirectional = 544,
1667
- IfcLightSourceGoniometric = 545,
1668
- IfcLightSourcePositional = 546,
1669
- IfcLightSourceSpot = 547,
1670
- IfcLine = 548,
1671
- IfcLinearForceMeasure = 549,
1672
- IfcLinearMomentMeasure = 550,
1673
- IfcLinearPlacement = 551,
1674
- IfcLinearPositioningElement = 552,
1675
- IfcLinearStiffnessMeasure = 553,
1676
- IfcLinearVelocityMeasure = 554,
1677
- IfcLineIndex = 555,
1678
- IfcLineSegment2D = 556,
1679
- IfcLoadGroupTypeEnum = 557,
1680
- IfcLocalPlacement = 558,
1681
- IfcLogical = 559,
1682
- IfcLogicalOperatorEnum = 560,
1683
- IfcLoop = 561,
1684
- IfcLShapeProfileDef = 562,
1685
- IfcLuminousFluxMeasure = 563,
1686
- IfcLuminousIntensityDistributionMeasure = 564,
1687
- IfcLuminousIntensityMeasure = 565,
1688
- IfcMagneticFluxDensityMeasure = 566,
1689
- IfcMagneticFluxMeasure = 567,
1690
- IfcManifoldSolidBrep = 568,
1691
- IfcMapConversion = 569,
1692
- IfcMappedItem = 570,
1693
- IfcMassDensityMeasure = 571,
1694
- IfcMassFlowRateMeasure = 572,
1695
- IfcMassMeasure = 573,
1696
- IfcMassPerLengthMeasure = 574,
1697
- IfcMaterial = 575,
1698
- IfcMaterialClassificationRelationship = 576,
1699
- IfcMaterialConstituent = 577,
1700
- IfcMaterialConstituentSet = 578,
1701
- IfcMaterialDefinition = 579,
1702
- IfcMaterialDefinitionRepresentation = 580,
1703
- IfcMaterialLayer = 581,
1704
- IfcMaterialLayerSet = 582,
1705
- IfcMaterialLayerSetUsage = 583,
1706
- IfcMaterialLayerWithOffsets = 584,
1707
- IfcMaterialList = 585,
1708
- IfcMaterialProfile = 586,
1709
- IfcMaterialProfileSet = 587,
1710
- IfcMaterialProfileSetUsage = 588,
1711
- IfcMaterialProfileSetUsageTapering = 589,
1712
- IfcMaterialProfileWithOffsets = 590,
1713
- IfcMaterialProperties = 591,
1714
- IfcMaterialRelationship = 592,
1715
- IfcMaterialSelect = 593,
1716
- IfcMaterialUsageDefinition = 594,
1717
- IfcMeasureValue = 595,
1718
- IfcMeasureWithUnit = 596,
1719
- IfcMechanicalFastener = 597,
1720
- IfcMechanicalFastenerType = 598,
1721
- IfcMechanicalFastenerTypeEnum = 599,
1722
- IfcMedicalDevice = 600,
1723
- IfcMedicalDeviceType = 601,
1724
- IfcMedicalDeviceTypeEnum = 602,
1725
- IfcMember = 603,
1726
- IfcMemberStandardCase = 604,
1727
- IfcMemberType = 605,
1728
- IfcMemberTypeEnum = 606,
1729
- IfcMetric = 607,
1730
- IfcMetricValueSelect = 608,
1731
- IfcMirroredProfileDef = 609,
1732
- IfcModulusOfElasticityMeasure = 610,
1733
- IfcModulusOfLinearSubgradeReactionMeasure = 611,
1734
- IfcModulusOfRotationalSubgradeReactionMeasure = 612,
1735
- IfcModulusOfRotationalSubgradeReactionSelect = 613,
1736
- IfcModulusOfSubgradeReactionMeasure = 614,
1737
- IfcModulusOfSubgradeReactionSelect = 615,
1738
- IfcModulusOfTranslationalSubgradeReactionSelect = 616,
1739
- IfcMoistureDiffusivityMeasure = 617,
1740
- IfcMolecularWeightMeasure = 618,
1741
- IfcMomentOfInertiaMeasure = 619,
1742
- IfcMonetaryMeasure = 620,
1743
- IfcMonetaryUnit = 621,
1744
- IfcMonthInYearNumber = 622,
1745
- IfcMotorConnection = 623,
1746
- IfcMotorConnectionType = 624,
1747
- IfcMotorConnectionTypeEnum = 625,
1748
- IfcNamedUnit = 626,
1749
- IfcNonNegativeLengthMeasure = 627,
1750
- IfcNormalisedRatioMeasure = 628,
1751
- IfcNullStyle = 629,
1752
- IfcNumericMeasure = 630,
1753
- IfcObject = 631,
1754
- IfcObjectDefinition = 632,
1755
- IfcObjective = 633,
1756
- IfcObjectiveEnum = 634,
1757
- IfcObjectPlacement = 635,
1758
- IfcObjectReferenceSelect = 636,
1759
- IfcObjectTypeEnum = 637,
1760
- IfcOccupant = 638,
1761
- IfcOccupantTypeEnum = 639,
1762
- IfcOffsetCurve = 640,
1763
- IfcOffsetCurve2D = 641,
1764
- IfcOffsetCurve3D = 642,
1765
- IfcOffsetCurveByDistances = 643,
1766
- IfcOpeningElement = 644,
1767
- IfcOpeningElementTypeEnum = 645,
1768
- IfcOpeningStandardCase = 646,
1769
- IfcOpenShell = 647,
1770
- IfcOrganization = 648,
1771
- IfcOrganizationRelationship = 649,
1772
- IfcOrientationExpression = 650,
1773
- IfcOrientedEdge = 651,
1774
- IfcOuterBoundaryCurve = 652,
1775
- IfcOutlet = 653,
1776
- IfcOutletType = 654,
1777
- IfcOutletTypeEnum = 655,
1778
- IfcOwnerHistory = 656,
1779
- IfcParameterizedProfileDef = 657,
1780
- IfcParameterValue = 658,
1781
- IfcPath = 659,
1782
- IfcPcurve = 660,
1783
- IfcPerformanceHistory = 661,
1784
- IfcPerformanceHistoryTypeEnum = 662,
1785
- IfcPermeableCoveringOperationEnum = 663,
1786
- IfcPermeableCoveringProperties = 664,
1787
- IfcPermit = 665,
1788
- IfcPermitTypeEnum = 666,
1789
- IfcPerson = 667,
1790
- IfcPersonAndOrganization = 668,
1791
- IfcPHMeasure = 669,
1792
- IfcPhysicalComplexQuantity = 670,
1793
- IfcPhysicalOrVirtualEnum = 671,
1794
- IfcPhysicalQuantity = 672,
1795
- IfcPhysicalSimpleQuantity = 673,
1796
- IfcPile = 674,
1797
- IfcPileConstructionEnum = 675,
1798
- IfcPileType = 676,
1799
- IfcPileTypeEnum = 677,
1800
- IfcPipeFitting = 678,
1801
- IfcPipeFittingType = 679,
1802
- IfcPipeFittingTypeEnum = 680,
1803
- IfcPipeSegment = 681,
1804
- IfcPipeSegmentType = 682,
1805
- IfcPipeSegmentTypeEnum = 683,
1806
- IfcPixelTexture = 684,
1807
- IfcPlacement = 685,
1808
- IfcPlanarBox = 686,
1809
- IfcPlanarExtent = 687,
1810
- IfcPlanarForceMeasure = 688,
1811
- IfcPlane = 689,
1812
- IfcPlaneAngleMeasure = 690,
1813
- IfcPlate = 691,
1814
- IfcPlateStandardCase = 692,
1815
- IfcPlateType = 693,
1816
- IfcPlateTypeEnum = 694,
1817
- IfcPoint = 695,
1818
- IfcPointOnCurve = 696,
1819
- IfcPointOnSurface = 697,
1820
- IfcPointOrVertexPoint = 698,
1821
- IfcPolygonalBoundedHalfSpace = 699,
1822
- IfcPolygonalFaceSet = 700,
1823
- IfcPolyline = 701,
1824
- IfcPolyLoop = 702,
1825
- IfcPort = 703,
1826
- IfcPositioningElement = 704,
1827
- IfcPositiveInteger = 705,
1828
- IfcPositiveLengthMeasure = 706,
1829
- IfcPositivePlaneAngleMeasure = 707,
1830
- IfcPositiveRatioMeasure = 708,
1831
- IfcPostalAddress = 709,
1832
- IfcPowerMeasure = 710,
1833
- IfcPreDefinedColour = 711,
1834
- IfcPreDefinedCurveFont = 712,
1835
- IfcPreDefinedItem = 713,
1836
- IfcPreDefinedProperties = 714,
1837
- IfcPreDefinedPropertySet = 715,
1838
- IfcPreDefinedTextFont = 716,
1839
- IfcPreferredSurfaceCurveRepresentation = 717,
1840
- IfcPresentableText = 718,
1841
- IfcPresentationItem = 719,
1842
- IfcPresentationLayerAssignment = 720,
1843
- IfcPresentationLayerWithStyle = 721,
1844
- IfcPresentationStyle = 722,
1845
- IfcPresentationStyleAssignment = 723,
1846
- IfcPresentationStyleSelect = 724,
1847
- IfcPressureMeasure = 725,
1848
- IfcProcedure = 726,
1849
- IfcProcedureType = 727,
1850
- IfcProcedureTypeEnum = 728,
1851
- IfcProcess = 729,
1852
- IfcProcessSelect = 730,
1853
- IfcProduct = 731,
1854
- IfcProductDefinitionShape = 732,
1855
- IfcProductRepresentation = 733,
1856
- IfcProductRepresentationSelect = 734,
1857
- IfcProductSelect = 735,
1858
- IfcProfileDef = 736,
1859
- IfcProfileProperties = 737,
1860
- IfcProfileTypeEnum = 738,
1861
- IfcProject = 739,
1862
- IfcProjectedCRS = 740,
1863
- IfcProjectedOrTrueLengthEnum = 741,
1864
- IfcProjectionElement = 742,
1865
- IfcProjectionElementTypeEnum = 743,
1866
- IfcProjectLibrary = 744,
1867
- IfcProjectOrder = 745,
1868
- IfcProjectOrderTypeEnum = 746,
1869
- IfcProperty = 747,
1870
- IfcPropertyAbstraction = 748,
1871
- IfcPropertyBoundedValue = 749,
1872
- IfcPropertyDefinition = 750,
1873
- IfcPropertyDependencyRelationship = 751,
1874
- IfcPropertyEnumeratedValue = 752,
1875
- IfcPropertyEnumeration = 753,
1876
- IfcPropertyListValue = 754,
1877
- IfcPropertyReferenceValue = 755,
1878
- IfcPropertySet = 756,
1879
- IfcPropertySetDefinition = 757,
1880
- IfcPropertySetDefinitionSelect = 758,
1881
- IfcPropertySetDefinitionSet = 759,
1882
- IfcPropertySetTemplate = 760,
1883
- IfcPropertySetTemplateTypeEnum = 761,
1884
- IfcPropertySingleValue = 762,
1885
- IfcPropertyTableValue = 763,
1886
- IfcPropertyTemplate = 764,
1887
- IfcPropertyTemplateDefinition = 765,
1888
- IfcProtectiveDevice = 766,
1889
- IfcProtectiveDeviceTrippingUnit = 767,
1890
- IfcProtectiveDeviceTrippingUnitType = 768,
1891
- IfcProtectiveDeviceTrippingUnitTypeEnum = 769,
1892
- IfcProtectiveDeviceType = 770,
1893
- IfcProtectiveDeviceTypeEnum = 771,
1894
- IfcProxy = 772,
1895
- IfcPump = 773,
1896
- IfcPumpType = 774,
1897
- IfcPumpTypeEnum = 775,
1898
- IfcQuantityArea = 776,
1899
- IfcQuantityCount = 777,
1900
- IfcQuantityLength = 778,
1901
- IfcQuantitySet = 779,
1902
- IfcQuantityTime = 780,
1903
- IfcQuantityVolume = 781,
1904
- IfcQuantityWeight = 782,
1905
- IfcRadioActivityMeasure = 783,
1906
- IfcRailing = 784,
1907
- IfcRailingType = 785,
1908
- IfcRailingTypeEnum = 786,
1909
- IfcRamp = 787,
1910
- IfcRampFlight = 788,
1911
- IfcRampFlightType = 789,
1912
- IfcRampFlightTypeEnum = 790,
1913
- IfcRampType = 791,
1914
- IfcRampTypeEnum = 792,
1915
- IfcRatioMeasure = 793,
1916
- IfcRationalBSplineCurveWithKnots = 794,
1917
- IfcRationalBSplineSurfaceWithKnots = 795,
1918
- IfcReal = 796,
1919
- IfcRectangleHollowProfileDef = 797,
1920
- IfcRectangleProfileDef = 798,
1921
- IfcRectangularPyramid = 799,
1922
- IfcRectangularTrimmedSurface = 800,
1923
- IfcRecurrencePattern = 801,
1924
- IfcRecurrenceTypeEnum = 802,
1925
- IfcReference = 803,
1926
- IfcReferent = 804,
1927
- IfcReferentTypeEnum = 805,
1928
- IfcReflectanceMethodEnum = 806,
1929
- IfcRegularTimeSeries = 807,
1930
- IfcReinforcementBarProperties = 808,
1931
- IfcReinforcementDefinitionProperties = 809,
1932
- IfcReinforcingBar = 810,
1933
- IfcReinforcingBarRoleEnum = 811,
1934
- IfcReinforcingBarSurfaceEnum = 812,
1935
- IfcReinforcingBarType = 813,
1936
- IfcReinforcingBarTypeEnum = 814,
1937
- IfcReinforcingElement = 815,
1938
- IfcReinforcingElementType = 816,
1939
- IfcReinforcingMesh = 817,
1940
- IfcReinforcingMeshType = 818,
1941
- IfcReinforcingMeshTypeEnum = 819,
1942
- IfcRelAggregates = 820,
1943
- IfcRelAssigns = 821,
1944
- IfcRelAssignsToActor = 822,
1945
- IfcRelAssignsToControl = 823,
1946
- IfcRelAssignsToGroup = 824,
1947
- IfcRelAssignsToGroupByFactor = 825,
1948
- IfcRelAssignsToProcess = 826,
1949
- IfcRelAssignsToProduct = 827,
1950
- IfcRelAssignsToResource = 828,
1951
- IfcRelAssociates = 829,
1952
- IfcRelAssociatesApproval = 830,
1953
- IfcRelAssociatesClassification = 831,
1954
- IfcRelAssociatesConstraint = 832,
1955
- IfcRelAssociatesDocument = 833,
1956
- IfcRelAssociatesLibrary = 834,
1957
- IfcRelAssociatesMaterial = 835,
1958
- IfcRelationship = 836,
1959
- IfcRelConnects = 837,
1960
- IfcRelConnectsElements = 838,
1961
- IfcRelConnectsPathElements = 839,
1962
- IfcRelConnectsPorts = 840,
1963
- IfcRelConnectsPortToElement = 841,
1964
- IfcRelConnectsStructuralActivity = 842,
1965
- IfcRelConnectsStructuralMember = 843,
1966
- IfcRelConnectsWithEccentricity = 844,
1967
- IfcRelConnectsWithRealizingElements = 845,
1968
- IfcRelContainedInSpatialStructure = 846,
1969
- IfcRelCoversBldgElements = 847,
1970
- IfcRelCoversSpaces = 848,
1971
- IfcRelDeclares = 849,
1972
- IfcRelDecomposes = 850,
1973
- IfcRelDefines = 851,
1974
- IfcRelDefinesByObject = 852,
1975
- IfcRelDefinesByProperties = 853,
1976
- IfcRelDefinesByTemplate = 854,
1977
- IfcRelDefinesByType = 855,
1978
- IfcRelFillsElement = 856,
1979
- IfcRelFlowControlElements = 857,
1980
- IfcRelInterferesElements = 858,
1981
- IfcRelNests = 859,
1982
- IfcRelProjectsElement = 860,
1983
- IfcRelReferencedInSpatialStructure = 861,
1984
- IfcRelSequence = 862,
1985
- IfcRelServicesBuildings = 863,
1986
- IfcRelSpaceBoundary = 864,
1987
- IfcRelSpaceBoundary1stLevel = 865,
1988
- IfcRelSpaceBoundary2ndLevel = 866,
1989
- IfcRelVoidsElement = 867,
1990
- IfcReparametrisedCompositeCurveSegment = 868,
1991
- IfcRepresentation = 869,
1992
- IfcRepresentationContext = 870,
1993
- IfcRepresentationItem = 871,
1994
- IfcRepresentationMap = 872,
1995
- IfcResource = 873,
1996
- IfcResourceApprovalRelationship = 874,
1997
- IfcResourceConstraintRelationship = 875,
1998
- IfcResourceLevelRelationship = 876,
1999
- IfcResourceObjectSelect = 877,
2000
- IfcResourceSelect = 878,
2001
- IfcResourceTime = 879,
2002
- IfcRevolvedAreaSolid = 880,
2003
- IfcRevolvedAreaSolidTapered = 881,
2004
- IfcRightCircularCone = 882,
2005
- IfcRightCircularCylinder = 883,
2006
- IfcRoleEnum = 884,
2007
- IfcRoof = 885,
2008
- IfcRoofType = 886,
2009
- IfcRoofTypeEnum = 887,
2010
- IfcRoot = 888,
2011
- IfcRotationalFrequencyMeasure = 889,
2012
- IfcRotationalMassMeasure = 890,
2013
- IfcRotationalStiffnessMeasure = 891,
2014
- IfcRotationalStiffnessSelect = 892,
2015
- IfcRoundedRectangleProfileDef = 893,
2016
- IfcSanitaryTerminal = 894,
2017
- IfcSanitaryTerminalType = 895,
2018
- IfcSanitaryTerminalTypeEnum = 896,
2019
- IfcSchedulingTime = 897,
2020
- IfcSeamCurve = 898,
2021
- IfcSectionalAreaIntegralMeasure = 899,
2022
- IfcSectionedSolid = 900,
2023
- IfcSectionedSolidHorizontal = 901,
2024
- IfcSectionedSpine = 902,
2025
- IfcSectionModulusMeasure = 903,
2026
- IfcSectionProperties = 904,
2027
- IfcSectionReinforcementProperties = 905,
2028
- IfcSectionTypeEnum = 906,
2029
- IfcSegmentIndexSelect = 907,
2030
- IfcSensor = 908,
2031
- IfcSensorType = 909,
2032
- IfcSensorTypeEnum = 910,
2033
- IfcSequenceEnum = 911,
2034
- IfcShadingDevice = 912,
2035
- IfcShadingDeviceType = 913,
2036
- IfcShadingDeviceTypeEnum = 914,
2037
- IfcShapeAspect = 915,
2038
- IfcShapeModel = 916,
2039
- IfcShapeRepresentation = 917,
2040
- IfcShearModulusMeasure = 918,
2041
- IfcShell = 919,
2042
- IfcShellBasedSurfaceModel = 920,
2043
- IfcSimpleProperty = 921,
2044
- IfcSimplePropertyTemplate = 922,
2045
- IfcSimplePropertyTemplateTypeEnum = 923,
2046
- IfcSimpleValue = 924,
2047
- IfcSIPrefix = 925,
2048
- IfcSite = 926,
2049
- IfcSIUnit = 927,
2050
- IfcSIUnitName = 928,
2051
- IfcSizeSelect = 929,
2052
- IfcSlab = 930,
2053
- IfcSlabElementedCase = 931,
2054
- IfcSlabStandardCase = 932,
2055
- IfcSlabType = 933,
2056
- IfcSlabTypeEnum = 934,
2057
- IfcSlippageConnectionCondition = 935,
2058
- IfcSolarDevice = 936,
2059
- IfcSolarDeviceType = 937,
2060
- IfcSolarDeviceTypeEnum = 938,
2061
- IfcSolidAngleMeasure = 939,
2062
- IfcSolidModel = 940,
2063
- IfcSolidOrShell = 941,
2064
- IfcSoundPowerLevelMeasure = 942,
2065
- IfcSoundPowerMeasure = 943,
2066
- IfcSoundPressureLevelMeasure = 944,
2067
- IfcSoundPressureMeasure = 945,
2068
- IfcSpace = 946,
2069
- IfcSpaceBoundarySelect = 947,
2070
- IfcSpaceHeater = 948,
2071
- IfcSpaceHeaterType = 949,
2072
- IfcSpaceHeaterTypeEnum = 950,
2073
- IfcSpaceType = 951,
2074
- IfcSpaceTypeEnum = 952,
2075
- IfcSpatialElement = 953,
2076
- IfcSpatialElementType = 954,
2077
- IfcSpatialStructureElement = 955,
2078
- IfcSpatialStructureElementType = 956,
2079
- IfcSpatialZone = 957,
2080
- IfcSpatialZoneType = 958,
2081
- IfcSpatialZoneTypeEnum = 959,
2082
- IfcSpecificHeatCapacityMeasure = 960,
2083
- IfcSpecularExponent = 961,
2084
- IfcSpecularHighlightSelect = 962,
2085
- IfcSpecularRoughness = 963,
2086
- IfcSphere = 964,
2087
- IfcSphericalSurface = 965,
2088
- IfcStackTerminal = 966,
2089
- IfcStackTerminalType = 967,
2090
- IfcStackTerminalTypeEnum = 968,
2091
- IfcStair = 969,
2092
- IfcStairFlight = 970,
2093
- IfcStairFlightType = 971,
2094
- IfcStairFlightTypeEnum = 972,
2095
- IfcStairType = 973,
2096
- IfcStairTypeEnum = 974,
2097
- IfcStateEnum = 975,
2098
- IfcStrippedOptional = 976,
2099
- IfcStructuralAction = 977,
2100
- IfcStructuralActivity = 978,
2101
- IfcStructuralActivityAssignmentSelect = 979,
2102
- IfcStructuralAnalysisModel = 980,
2103
- IfcStructuralConnection = 981,
2104
- IfcStructuralConnectionCondition = 982,
2105
- IfcStructuralCurveAction = 983,
2106
- IfcStructuralCurveActivityTypeEnum = 984,
2107
- IfcStructuralCurveConnection = 985,
2108
- IfcStructuralCurveMember = 986,
2109
- IfcStructuralCurveMemberTypeEnum = 987,
2110
- IfcStructuralCurveMemberVarying = 988,
2111
- IfcStructuralCurveReaction = 989,
2112
- IfcStructuralItem = 990,
2113
- IfcStructuralLinearAction = 991,
2114
- IfcStructuralLoad = 992,
2115
- IfcStructuralLoadCase = 993,
2116
- IfcStructuralLoadConfiguration = 994,
2117
- IfcStructuralLoadGroup = 995,
2118
- IfcStructuralLoadLinearForce = 996,
2119
- IfcStructuralLoadOrResult = 997,
2120
- IfcStructuralLoadPlanarForce = 998,
2121
- IfcStructuralLoadSingleDisplacement = 999,
2122
- IfcStructuralLoadSingleDisplacementDistortion = 1000,
2123
- IfcStructuralLoadSingleForce = 1001,
2124
- IfcStructuralLoadSingleForceWarping = 1002,
2125
- IfcStructuralLoadStatic = 1003,
2126
- IfcStructuralLoadTemperature = 1004,
2127
- IfcStructuralMember = 1005,
2128
- IfcStructuralPlanarAction = 1006,
2129
- IfcStructuralPointAction = 1007,
2130
- IfcStructuralPointConnection = 1008,
2131
- IfcStructuralPointReaction = 1009,
2132
- IfcStructuralReaction = 1010,
2133
- IfcStructuralResultGroup = 1011,
2134
- IfcStructuralSurfaceAction = 1012,
2135
- IfcStructuralSurfaceActivityTypeEnum = 1013,
2136
- IfcStructuralSurfaceConnection = 1014,
2137
- IfcStructuralSurfaceMember = 1015,
2138
- IfcStructuralSurfaceMemberTypeEnum = 1016,
2139
- IfcStructuralSurfaceMemberVarying = 1017,
2140
- IfcStructuralSurfaceReaction = 1018,
2141
- IfcStyleAssignmentSelect = 1019,
2142
- IfcStyledItem = 1020,
2143
- IfcStyledRepresentation = 1021,
2144
- IfcStyleModel = 1022,
2145
- IfcSubContractResource = 1023,
2146
- IfcSubContractResourceType = 1024,
2147
- IfcSubContractResourceTypeEnum = 1025,
2148
- IfcSubedge = 1026,
2149
- IfcSurface = 1027,
2150
- IfcSurfaceCurve = 1028,
2151
- IfcSurfaceCurveSweptAreaSolid = 1029,
2152
- IfcSurfaceFeature = 1030,
2153
- IfcSurfaceFeatureTypeEnum = 1031,
2154
- IfcSurfaceOfLinearExtrusion = 1032,
2155
- IfcSurfaceOfRevolution = 1033,
2156
- IfcSurfaceOrFaceSurface = 1034,
2157
- IfcSurfaceReinforcementArea = 1035,
2158
- IfcSurfaceSide = 1036,
2159
- IfcSurfaceStyle = 1037,
2160
- IfcSurfaceStyleElementSelect = 1038,
2161
- IfcSurfaceStyleLighting = 1039,
2162
- IfcSurfaceStyleRefraction = 1040,
2163
- IfcSurfaceStyleRendering = 1041,
2164
- IfcSurfaceStyleShading = 1042,
2165
- IfcSurfaceStyleWithTextures = 1043,
2166
- IfcSurfaceTexture = 1044,
2167
- IfcSweptAreaSolid = 1045,
2168
- IfcSweptDiskSolid = 1046,
2169
- IfcSweptDiskSolidPolygonal = 1047,
2170
- IfcSweptSurface = 1048,
2171
- IfcSwitchingDevice = 1049,
2172
- IfcSwitchingDeviceType = 1050,
2173
- IfcSwitchingDeviceTypeEnum = 1051,
2174
- IfcSystem = 1052,
2175
- IfcSystemFurnitureElement = 1053,
2176
- IfcSystemFurnitureElementType = 1054,
2177
- IfcSystemFurnitureElementTypeEnum = 1055,
2178
- IfcTable = 1056,
2179
- IfcTableColumn = 1057,
2180
- IfcTableRow = 1058,
2181
- IfcTank = 1059,
2182
- IfcTankType = 1060,
2183
- IfcTankTypeEnum = 1061,
2184
- IfcTask = 1062,
2185
- IfcTaskDurationEnum = 1063,
2186
- IfcTaskTime = 1064,
2187
- IfcTaskTimeRecurring = 1065,
2188
- IfcTaskType = 1066,
2189
- IfcTaskTypeEnum = 1067,
2190
- IfcTelecomAddress = 1068,
2191
- IfcTemperatureGradientMeasure = 1069,
2192
- IfcTemperatureRateOfChangeMeasure = 1070,
2193
- IfcTendon = 1071,
2194
- IfcTendonAnchor = 1072,
2195
- IfcTendonAnchorType = 1073,
2196
- IfcTendonAnchorTypeEnum = 1074,
2197
- IfcTendonType = 1075,
2198
- IfcTendonTypeEnum = 1076,
2199
- IfcTessellatedFaceSet = 1077,
2200
- IfcTessellatedItem = 1078,
2201
- IfcText = 1079,
2202
- IfcTextAlignment = 1080,
2203
- IfcTextDecoration = 1081,
2204
- IfcTextFontName = 1082,
2205
- IfcTextFontSelect = 1083,
2206
- IfcTextLiteral = 1084,
2207
- IfcTextLiteralWithExtent = 1085,
2208
- IfcTextPath = 1086,
2209
- IfcTextStyle = 1087,
2210
- IfcTextStyleFontModel = 1088,
2211
- IfcTextStyleForDefinedFont = 1089,
2212
- IfcTextStyleTextModel = 1090,
2213
- IfcTextTransformation = 1091,
2214
- IfcTextureCoordinate = 1092,
2215
- IfcTextureCoordinateGenerator = 1093,
2216
- IfcTextureMap = 1094,
2217
- IfcTextureVertex = 1095,
2218
- IfcTextureVertexList = 1096,
2219
- IfcThermalAdmittanceMeasure = 1097,
2220
- IfcThermalConductivityMeasure = 1098,
2221
- IfcThermalExpansionCoefficientMeasure = 1099,
2222
- IfcThermalResistanceMeasure = 1100,
2223
- IfcThermalTransmittanceMeasure = 1101,
2224
- IfcThermodynamicTemperatureMeasure = 1102,
2225
- IfcTime = 1103,
2226
- IfcTimeMeasure = 1104,
2227
- IfcTimeOrRatioSelect = 1105,
2228
- IfcTimePeriod = 1106,
2229
- IfcTimeSeries = 1107,
2230
- IfcTimeSeriesDataTypeEnum = 1108,
2231
- IfcTimeSeriesValue = 1109,
2232
- IfcTimeStamp = 1110,
2233
- IfcTopologicalRepresentationItem = 1111,
2234
- IfcTopologyRepresentation = 1112,
2235
- IfcToroidalSurface = 1113,
2236
- IfcTorqueMeasure = 1114,
2237
- IfcTransformer = 1115,
2238
- IfcTransformerType = 1116,
2239
- IfcTransformerTypeEnum = 1117,
2240
- IfcTransitionCode = 1118,
2241
- IfcTransitionCurveSegment2D = 1119,
2242
- IfcTransitionCurveType = 1120,
2243
- IfcTranslationalStiffnessSelect = 1121,
2244
- IfcTransportElement = 1122,
2245
- IfcTransportElementType = 1123,
2246
- IfcTransportElementTypeEnum = 1124,
2247
- IfcTrapeziumProfileDef = 1125,
2248
- IfcTriangulatedFaceSet = 1126,
2249
- IfcTriangulatedIrregularNetwork = 1127,
2250
- IfcTrimmedCurve = 1128,
2251
- IfcTrimmingPreference = 1129,
2252
- IfcTrimmingSelect = 1130,
2253
- IfcTShapeProfileDef = 1131,
2254
- IfcTubeBundle = 1132,
2255
- IfcTubeBundleType = 1133,
2256
- IfcTubeBundleTypeEnum = 1134,
2257
- IfcTypeObject = 1135,
2258
- IfcTypeProcess = 1136,
2259
- IfcTypeProduct = 1137,
2260
- IfcTypeResource = 1138,
2261
- IfcUnit = 1139,
2262
- IfcUnitaryControlElement = 1140,
2263
- IfcUnitaryControlElementType = 1141,
2264
- IfcUnitaryControlElementTypeEnum = 1142,
2265
- IfcUnitaryEquipment = 1143,
2266
- IfcUnitaryEquipmentType = 1144,
2267
- IfcUnitaryEquipmentTypeEnum = 1145,
2268
- IfcUnitAssignment = 1146,
2269
- IfcUnitEnum = 1147,
2270
- IfcURIReference = 1148,
2271
- IfcUShapeProfileDef = 1149,
2272
- IfcValue = 1150,
2273
- IfcValve = 1151,
2274
- IfcValveType = 1152,
2275
- IfcValveTypeEnum = 1153,
2276
- IfcVaporPermeabilityMeasure = 1154,
2277
- IfcVector = 1155,
2278
- IfcVectorOrDirection = 1156,
2279
- IfcVertex = 1157,
2280
- IfcVertexLoop = 1158,
2281
- IfcVertexPoint = 1159,
2282
- IfcVibrationIsolator = 1160,
2283
- IfcVibrationIsolatorType = 1161,
2284
- IfcVibrationIsolatorTypeEnum = 1162,
2285
- IfcVirtualElement = 1163,
2286
- IfcVirtualGridIntersection = 1164,
2287
- IfcVoidingFeature = 1165,
2288
- IfcVoidingFeatureTypeEnum = 1166,
2289
- IfcVolumeMeasure = 1167,
2290
- IfcVolumetricFlowRateMeasure = 1168,
2291
- IfcWall = 1169,
2292
- IfcWallElementedCase = 1170,
2293
- IfcWallStandardCase = 1171,
2294
- IfcWallType = 1172,
2295
- IfcWallTypeEnum = 1173,
2296
- IfcWarpingConstantMeasure = 1174,
2297
- IfcWarpingMomentMeasure = 1175,
2298
- IfcWarpingStiffnessSelect = 1176,
2299
- IfcWasteTerminal = 1177,
2300
- IfcWasteTerminalType = 1178,
2301
- IfcWasteTerminalTypeEnum = 1179,
2302
- IfcWindow = 1180,
2303
- IfcWindowLiningProperties = 1181,
2304
- IfcWindowPanelOperationEnum = 1182,
2305
- IfcWindowPanelPositionEnum = 1183,
2306
- IfcWindowPanelProperties = 1184,
2307
- IfcWindowStandardCase = 1185,
2308
- IfcWindowStyle = 1186,
2309
- IfcWindowStyleConstructionEnum = 1187,
2310
- IfcWindowStyleOperationEnum = 1188,
2311
- IfcWindowType = 1189,
2312
- IfcWindowTypeEnum = 1190,
2313
- IfcWindowTypePartitioningEnum = 1191,
2314
- IfcWorkCalendar = 1192,
2315
- IfcWorkCalendarTypeEnum = 1193,
2316
- IfcWorkControl = 1194,
2317
- IfcWorkPlan = 1195,
2318
- IfcWorkPlanTypeEnum = 1196,
2319
- IfcWorkSchedule = 1197,
2320
- IfcWorkScheduleTypeEnum = 1198,
2321
- IfcWorkTime = 1199,
2322
- IfcZone = 1200,
2323
- IfcZShapeProfileDef = 1201,
2324
- UNDEFINED = 1202,
2325
- Other3DModel = 1203
1048
+ export interface INavigation {
1049
+ /**
1050
+ * Register navigation tool.
1051
+ */
1052
+ registerNavigation(navigationTool: INavigationTool): void;
1053
+ /**
1054
+ * Unregister navigation tool.
1055
+ */
1056
+ unregisterNavigation(navigationTool: INavigationTool): void;
1057
+ /**
1058
+ * Activate or deactivate registered navigation tool.
1059
+ * NB: There can be only one active navigation tool at time.
1060
+ */
1061
+ setActive(navigationToolName: string, isActive: boolean): void;
1062
+ /**
1063
+ * Get active navigation tool.
1064
+ */
1065
+ getActiveNavigation(): INavigationTool | null;
1066
+ /**
1067
+ * Get navigation agent.
1068
+ */
1069
+ getNavigationAgent(): INavigationAgent;
1070
+ /**
1071
+ * Gets navigation area rectangle
1072
+ */
1073
+ getNavigationArea(): DOMRect;
1074
+ /**
1075
+ * Sets the camera parameters.
1076
+ */
1077
+ setCameraParameters(params: CameraParameters): void;
1078
+ /**
1079
+ * Gets the camera parameters.
1080
+ */
1081
+ getCameraParameters(): CameraParameters;
1082
+ /**
1083
+ * Gets the camera control.
1084
+ */
1085
+ getCameraControl(): ICameraControl;
1086
+ /**
1087
+ * Gets the Three.js camera.
1088
+ */
1089
+ getCamera(): THREE.Camera;
1090
+ /**
1091
+ * Fits camera to objects by IDs.
1092
+ * @param {string[] | string} elementIds - element or array of elements
1093
+ * @param {string | ModelPart} modelPart - the model part id or the model part instance containing the elements.
1094
+ * @param {boolean} immediate - true to avoid the default transition.
1095
+ * @returns
1096
+ */
1097
+ fitToView(elementIds: string[] | string, modelPart: string | ModelPart, immediate?: boolean): void;
1098
+ /**
1099
+ * Sets the camera pivot point.
1100
+ */
1101
+ setPivotPoint(point: Point3): void;
1102
+ /**
1103
+ * Gets the camera pivot point.
1104
+ */
1105
+ getPivotPoint(): Point3;
1106
+ /**
1107
+ * Reset the camera pivot point.
1108
+ */
1109
+ resetPivotPoint(): void;
2326
1110
  }
2327
- export class ModelElementPropertySet {
2328
- name: string;
2329
- properties: ModelElementProperty[];
2330
- type: IfcType;
1111
+ export interface CustomSpriteMaterialParameters extends THREE.ShaderMaterialParameters {
1112
+ color?: THREE.ColorRepresentation | undefined;
1113
+ map?: THREE.Texture | null | undefined;
1114
+ alphaMap?: THREE.Texture | null | undefined;
1115
+ rotation?: number | undefined;
1116
+ sizeAttenuation?: boolean | undefined;
1117
+ center?: THREE.Vector2 | undefined;
1118
+ discreteClipping?: boolean | undefined;
1119
+ offset?: THREE.Vector2 | undefined;
2331
1120
  }
2332
- export class ModelElementProperty {
1121
+ export class CustomSpriteMaterial extends CustomMaterial {
1122
+ type: string;
1123
+ readonly isSpriteMaterial: true;
1124
+
1125
+ constructor(parameters?: CustomSpriteMaterialParameters);
1126
+ /**
1127
+ * @default true
1128
+ */
1129
+ get discreteClipping(): boolean;
1130
+ set discreteClipping(value: boolean);
1131
+ get resolution(): THREE.Vector2;
1132
+ /**
1133
+ * @default new THREE.Color( 0xffffff )
1134
+ */
1135
+ color: THREE.Color;
1136
+ /**
1137
+ * @default null
1138
+ */
1139
+ map: THREE.Texture | null;
1140
+ /**
1141
+ * @default null
1142
+ */
1143
+ alphaMap: THREE.Texture | null;
1144
+ /**
1145
+ * @default 0
1146
+ */
1147
+ rotation: number;
1148
+ /**
1149
+ * @default true
1150
+ */
1151
+ sizeAttenuation: boolean;
1152
+ /**
1153
+ * @default new THREE.Vector2(0.5, 0.5)
1154
+ */
1155
+ center: THREE.Vector2;
1156
+ /**
1157
+ * @default new THREE.Vector2(0.0, 0.0)
1158
+ */
1159
+ offset: THREE.Vector2;
1160
+ copy(source: CustomSpriteMaterial): this;
1161
+ protected refreshUniformsCommon(uniforms: {
1162
+ [uniform: string]: THREE.IUniform;
1163
+ }, material: CustomSpriteMaterial, renderer: THREE.WebGLRenderer): void;
1164
+ protected refreshUniforms(uniforms: {
1165
+ [uniform: string]: THREE.IUniform<any>;
1166
+ }, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
1167
+ }
1168
+
1169
+ export class SettingsNames {
1170
+ static TELEMETRY: string;
1171
+ static AXES: string;
1172
+ static CAMERA_ANIMATION: string;
1173
+ static HIDE_SMALL_ELEMENTS_WHEN_NAVIGATING: string;
1174
+ static GLOBAL_LIGHT: string;
1175
+ static LIGHT_SOURCE: string;
1176
+ static ANTI_ALIASING: string;
1177
+ static HIDE_SMALL_ELEMENTS_MOVING: string;
1178
+ static SMALL_ELEMENT_SIZE: string;
1179
+ static LABEL_LINE_LENGTH: string;
1180
+ static HIDE_EDGES_WHEN_NAVIGATING: string;
1181
+ static DISPLAY_MODE: string;
1182
+ static NAVIGATION_CUBE: string;
1183
+ static DESIRED_FRAMERATE: string;
1184
+ static MANAGE_TIME: string;
1185
+ static HOVER_MESHES: string;
1186
+ static HOVER_EDGES: string;
1187
+ static SELECT_MESHES: string;
1188
+ static SELECT_EDGES: string;
1189
+ }
1190
+ export enum ValueType {
1191
+ STRING = 0,
1192
+ NUMBER = 1,
1193
+ ENUM = 2,
1194
+ BOOL = 3
1195
+ }
1196
+ export interface ISettings {
1197
+ changeSetting<T>(name: string, value: T, notify?: boolean, providedData?: any): void;
1198
+ getSettingValue<T>(name: string): T;
1199
+ }
1200
+ export enum BaseSettingsNames {
1201
+ TOOLBAR = "toolbar",
1202
+ TOOLBAR_POSITION = "toolbarPosition",
1203
+ TOOLBAR_CONTENT_ALIGNMENT = "toolbarContent",
1204
+ THEME = "theme"
1205
+ }
1206
+ export class SettingChangedEvent extends Event {
2333
1207
  name: string;
2334
- unit: number;
2335
- value: ModelElementPropertyValue;
1208
+ oldValue: any;
1209
+ newValue: any;
1210
+ providedData: any;
2336
1211
  }
2337
- export class ModelElementPropertyValue {
2338
- str_value?: string;
2339
- int_value?: number;
2340
- double_value?: number;
2341
- date_value?: bigint;
2342
- array_value: Array<string>;
2343
- decimal_value?: number;
2344
- guid_value?: string;
2345
- array_int_value: Array<number>;
2346
- bool_value?: boolean;
2347
- get value(): unknown;
1212
+ export enum SettingsTheme {
1213
+ LIGHT_THEME = "ascn-light",
1214
+ DARK_THEME = "ascn-dark"
2348
1215
  }
2349
-
2350
- export enum SelectionMode {
2351
- Append = 0,
2352
- Replace = 1
1216
+ export const defaultThemeAppearance: string;
1217
+ export enum ToolbarPosition {
1218
+ TOP_FIXED = "ascn-toolbar-position-fixed-top",
1219
+ TOP_FLUENT = "ascn-toolbar-position-top",
1220
+ BOTTOM_FIXED = "ascn-toolbar-position-fixed-bottom",
1221
+ BOTTOM_FLUENT = "ascn-toolbar-position-bottom"
2353
1222
  }
2354
- export class ModelElementIds {
2355
- modelPartId: string;
2356
- elementIds: string[];
1223
+ export enum ToolbarContentAlignment {
1224
+ CENTER = "ascn-toolbar-content-center",
1225
+ START = "ascn-toolbar-content-start",
1226
+ END = "ascn-toolbar-content-end"
2357
1227
  }
2358
- export class EventTypes extends CoreEventTypes {
2359
- static SELECTION_CHANGED_EVENT: string;
2360
- static MODEL_PART_LOADED: string;
2361
- static MODEL_PART_UNLOADED: string;
2362
- static CAMERA_CHANGE_EVENT: string;
2363
- static CAMERA_NAVIGATION_MODE_CHANGED_EVENT: string;
2364
- static RENDER_CLICK_EVENT: string;
2365
- static RENDER_HOVER_EVENT: string;
2366
- static RENDER_DOUBLE_CLICK_EVENT: string;
1228
+ export interface ToolbarStyle {
1229
+ [BaseSettingsNames.TOOLBAR_POSITION]?: ToolbarPosition;
1230
+ [BaseSettingsNames.TOOLBAR_CONTENT_ALIGNMENT]?: ToolbarContentAlignment;
2367
1231
  }
2368
- export class SelectionChangedEvent extends Event {
2369
- selectedIds: ModelElementIds[];
1232
+ export const defaultToolbarAppearance: ToolbarStyle;
1233
+ export type ViewerSettings = Record<string, any>;
1234
+ export class ViewerConfiguration {
1235
+ settingsPrefix: string;
1236
+ appearance: ViewerSettings;
1237
+ createConfiguration(configuration: ViewerSettings, origin: ViewerSettings): void;
1238
+ mergeConfigurationAndSettings(configuration: ViewerSettings, settings: ISettings): void;
1239
+ changeTheme(newTheme: string): void;
2370
1240
  }
2371
- export class ModelPartEvent extends Event {
2372
- modelPartId: string;
1241
+ export class Viewer3DConfiguration extends ViewerConfiguration {
1242
+ render: ViewerSettings;
1243
+
1244
+ constructor(appearance?: ViewerSettings, render?: ViewerSettings);
2373
1245
  }
2374
- export class CameraEvent extends Event {
1246
+ export const defaultViewer3DSettings: ViewerSettings;
1247
+ export class LoadingSpinner {
1248
+ addToDOM(container: HTMLElement): void;
1249
+ removeFromDOM(container: HTMLElement): void;
2375
1250
  }
2376
- export class ClickedEvent extends Event {
2377
- modelId: string;
2378
- modelElementId: string;
2379
- ctrlKey: boolean;
1251
+ export class CoreEventTypes {
1252
+ static VIEWER_RESIZE_EVENT: string;
1253
+ static VIEWER_MOUSE_DOWN_EVENT: string;
1254
+ static VIEWER_MOUSE_MOVE_EVENT: string;
1255
+ static VIEWER_MOUSE_UP_EVENT: string;
1256
+ static VIEWER_MOUSE_LONG_TOUCH_EVENT: string;
1257
+ static VIEWER_TOUCHSTART_EVENT: string;
1258
+ static VIEWER_TOUCHEND_EVENT: string;
1259
+ static SETTING_CHANGED_EVENT: string;
1260
+ static SETTING_RESET_EVENT: string;
1261
+ static SETTING_LANGUAGE_CHANGED_EVENT: string;
1262
+ static SETTING_THEME_CHANGED_EVENT: string;
2380
1263
  }
2381
- export class HoverEvent extends Event {
2382
- modelId: string;
2383
- modelElementId: string;
1264
+ export namespace ControlState {
1265
+ enum State {
1266
+ ACTIVE = 0,
1267
+ INACTIVE = 1,
1268
+ DISABLED = 2
1269
+ }
2384
1270
  }
2385
- export enum NavigationHandlerPriority {
2386
- DefaultNavigation = 0,
2387
- GizmoHandlers = 20,
2388
- EmbeddedExtensions = 40,
2389
- CustomExtensions = 100
1271
+ export interface IControl {
1272
+ container: HTMLElement;
1273
+ getId(): string;
1274
+ setToolTip(tooltipText: string): void;
1275
+ setText(text: string): void;
1276
+ setState(state: ControlState.State): void;
2390
1277
  }
2391
- export class NavigationEventOptions implements EventListenerOptions {
2392
- /** If true, use event capturing instead of event bubbling*/
2393
- readonly capture: boolean;
2394
- /** Call priority of navigation event handlers, from highest to lowest*/
2395
- readonly priority: number | NavigationHandlerPriority;
2396
- /** Always handle, used if `NavigationEvent.isHandled` set to true*/
2397
- readonly alwaysHandle: boolean;
2398
- /** (optional) listener name*/
2399
- readonly navigationTargetName?: string;
1278
+ export class Control implements IControl {
1279
+ container: HTMLElement;
2400
1280
 
2401
- constructor(
2402
- /** If true, use event capturing instead of event bubbling*/
2403
- capture?: boolean,
2404
- /** Call priority of navigation event handlers, from highest to lowest*/
2405
- priority?: number | NavigationHandlerPriority,
2406
- /** Always handle, used if `NavigationEvent.isHandled` set to true*/
2407
- alwaysHandle?: boolean,
2408
- /** (optional) listener name*/
2409
- navigationTargetName?: string);
1281
+ constructor(id: string);
1282
+ addClass(cssClass: string): void;
1283
+ removeClass(cssClass: string): void;
1284
+ getId(): string;
1285
+ setToolTip(tooltipText: string): void;
1286
+ setText(text: string): void;
1287
+ setState(state: ControlState.State): void;
1288
+ }
1289
+ export interface IMenu {
1290
+ controls: IControl[];
1291
+ addControl(control: IControl, index?: number): void;
1292
+ removeControl(index: number): void;
1293
+ }
1294
+ interface IToolbarButton {
1295
+ button: IControl;
1296
+ index: number;
1297
+ }
1298
+ export class Toolbar extends Control implements IMenu {
1299
+ readonly controls: IControl[];
1300
+ addControl(control: IControl, index?: number): void;
1301
+ removeControl(index: number): void;
1302
+ getControls(): IToolbarButton[];
1303
+ changeToolbarPosition(direction: ToolbarPosition): void;
1304
+ changeToolbarContentAlignment(content: ToolbarContentAlignment): void;
2410
1305
  }
2411
- export type NavigationEvent = {
2412
- /**
2413
- * (optional) Value indicating whether the NavigationEvent event was handled.
2414
- */
2415
- isHandled?: boolean;
2416
- };
2417
- export interface INavigationEventSource {
2418
- /**
2419
- * Event fired on activity changed
2420
- */
2421
- readonly eventSourceActivityChanged: IEventSigner<boolean>;
1306
+ export {};
1307
+ export class ExtensionBase {
1308
+ protected _viewer: ViewerBase;
1309
+ protected _options: object;
1310
+
1311
+ constructor(viewer3D: ViewerBase, options?: object);
1312
+ load(): boolean | Promise<boolean>;
1313
+ unload(): boolean;
1314
+ activate(): boolean;
1315
+ deactivate(): boolean;
2422
1316
  /**
2423
- * Activates or deactivate event source
2424
- * @param value - activate if true
2425
- */
2426
- setActive(value: boolean): void;
2427
- addEventListener<T extends keyof HTMLElementEventMap>(type: T, listener: (this: object, ev: HTMLElementEventMap[T] & NavigationEvent) => void, options?: boolean | EventListenerOptions | NavigationEventOptions): void;
2428
- removeEventListener<T extends keyof HTMLElementEventMap>(type: T, listener: (this: object, ev: HTMLElementEventMap[T] & NavigationEvent) => void, options?: boolean | EventListenerOptions | NavigationEventOptions): void;
1317
+ * Gets the name of the extension.
1318
+ * @returns {string} Returns the name of the extension.
1319
+ */
1320
+ getName(): string;
1321
+ addCursorPhantomFromSvg(template: string): void;
1322
+ removeCursorPhantom(): void;
1323
+ onMouseDown(event: MouseEvent): void;
1324
+ onMouseMove(event: MouseEvent): void;
1325
+ onMouseUp(event: MouseEvent): void;
1326
+ onMouseLongTouch(event: MouseEvent): void;
1327
+ onToolbarCreated(toolbar: Toolbar): void;
1328
+ onTouchStart(event: TouchEvent): void;
1329
+ onTouchEnd(event: TouchEvent): void;
1330
+ protected bindDomEvents(): void;
2429
1331
  }
2430
- export interface INavigationAgent {
2431
- /**
2432
- * Canvas DOM-events source
2433
- */
2434
- readonly canvasNavigationSource: INavigationEventSource;
2435
- /**
2436
- * Keyboard DOM-events source
2437
- */
2438
- readonly keyboardNavigationSource: INavigationEventSource;
2439
- /**
2440
- * Activates canvas and keyboard navigation event sources
2441
- */
2442
- setActive(value: boolean): void;
2443
- /**
2444
- * Gets rectangle of the navigation area
2445
- */
2446
- getNavigationArea(): DOMRect;
1332
+ export class ExtensionManager {
1333
+ registerExtensionType(extensionId: string, extension: typeof ExtensionBase): boolean;
1334
+ unregisterExtensionType(extensionId: string): boolean;
1335
+ getExtensionType(extensionId: string): typeof ExtensionBase;
2447
1336
  }
2448
- export interface INavigationTool {
2449
- /**
2450
- * Gets name of this navigation tool.
2451
- */
2452
- get name(): string;
2453
- /**
2454
- * Initialize navigation tool.
2455
- */
2456
- init(navAgent: INavigationAgent, cameraControl: ICameraControl, intersectionChecker: IModelIntersectionChecker): void;
2457
- /**
2458
- * Activates or deactivates this navigation tool.
2459
- */
2460
- setActive(isActive: boolean): void;
1337
+ export const theExtensionManager: ExtensionManager;
1338
+ export class ExtensionLoader {
2461
1339
  /**
2462
- * Gets the camera pivot point.
1340
+ * Loads the extension with the given id and options.
1341
+ *
1342
+ * @param {string} extensionId - The string id of the extension.
1343
+ * @param {object} options - An optional dictionary of options.
1344
+ *
1345
+ * @returns {Promise<ExtensionBase>} - Resolves with the extension requested.
2463
1346
  */
2464
- getPivotPoint(): THREE.Vector3;
1347
+ loadExtension(extensionId: string, options?: object): Promise<ExtensionBase>;
2465
1348
  /**
2466
- * Sets the camera pivot point.
1349
+ * Unloads the extension with the given id.
1350
+ *
1351
+ * @param {string} extensionId - The string id of the extension.
1352
+ * @returns {Promise<boolean>} - True if the extension was successfully unloaded.
2467
1353
  */
2468
- setPivotPoint(pivotPoint: THREE.Vector3): void;
1354
+ unloadExtension(extensionId: string): Promise<boolean>;
2469
1355
  /**
2470
- * Sets the camera parameters.
2471
- * @param iParams
1356
+ * Returns all loaded extensions.
1357
+ * @returns {?string[]} - Ids of loaded extensions.
2472
1358
  */
2473
- setCameraParameters(iParams: CameraParameters): void;
1359
+ getExtensions(): string[];
2474
1360
  /**
2475
- * Gets the camera parameters.
1361
+ * Returns the loaded extension.
1362
+ * @param {string} extensionId - The string id of the extension.
1363
+ * @returns {?ExtensionBase} - Extension.
2476
1364
  */
2477
- getCameraParameters(): CameraParameters;
1365
+ getExtension(extensionId: string): ExtensionBase;
2478
1366
  }
2479
- export interface INavigation {
2480
- /**
2481
- * Register navigation tool.
2482
- */
2483
- registerNavigation(navigationTool: INavigationTool): void;
2484
- /**
2485
- * Unregister navigation tool.
2486
- */
2487
- unregisterNavigation(navigationTool: INavigationTool): void;
2488
- /**
2489
- * Activate or deactivate registered navigation tool.
2490
- * NB: There can be only one active navigation tool at time.
2491
- */
2492
- setActive(navigationToolName: string, isActive: boolean): void;
2493
- /**
2494
- * Get active navigation tool.
2495
- */
2496
- getActiveNavigation(): INavigationTool | null;
2497
- /**
2498
- * Get navigation agent.
2499
- */
2500
- getNavigationAgent(): INavigationAgent;
2501
- /**
2502
- * Gets navigation area rectangle
2503
- */
2504
- getNavigationArea(): DOMRect;
2505
- /**
2506
- * Sets the camera parameters.
2507
- */
2508
- setCameraParameters(params: CameraParameters): void;
2509
- /**
2510
- * Gets the camera parameters.
2511
- */
2512
- getCameraParameters(): CameraParameters;
2513
- /**
2514
- * Gets the camera control.
2515
- */
2516
- getCameraControl(): ICameraControl;
2517
- /**
2518
- * Gets the Three.js camera.
2519
- */
2520
- getCamera(): THREE.Camera;
1367
+ export type ErrorCallback = (message: string) => void;
1368
+ export type SuccessCallback = (modelId: any) => void;
1369
+ export enum DocumentType {
1370
+ UNKNOWN = 0,
1371
+ DOCUMENT_2D = 1,
1372
+ DOCUMENT_3D = 2
1373
+ }
1374
+ export const defaultBaseSettings: ViewerConfiguration;
1375
+ export abstract class ViewerBase {
1376
+ protected _clientContainer: HTMLElement;
1377
+ protected _loadingSpinner: LoadingSpinner;
1378
+ protected _documentType: DocumentType;
1379
+ protected _configuration: ViewerConfiguration;
1380
+ readonly container: HTMLElement;
1381
+ readonly extensionsLoader: ExtensionLoader;
1382
+ abstract settings: ISettings;
1383
+ abstract events: IEventsDispatcher;
1384
+ get rootContainer(): HTMLElement;
1385
+ getConfiguration(): ViewerConfiguration;
2521
1386
  /**
2522
- * Fits camera to objects by IDs.
2523
- * @param {string[] | string} elementIds - element or array of elements
2524
- * @param {string | ModelPart} modelPart - the model part id or the model part instance containing the elements.
2525
- * @param {boolean} immediate - true to avoid the default transition.
1387
+ *
2526
1388
  * @returns
2527
1389
  */
2528
- fitToView(elementIds: string[] | string, modelPart: string | ModelPart, immediate?: boolean): void;
2529
- /**
2530
- * Sets the camera pivot point.
2531
- */
2532
- setPivotPoint(point: Point3): void;
2533
- /**
2534
- * Gets the camera pivot point.
2535
- */
2536
- getPivotPoint(): Point3;
1390
+ start(): Promise<number>;
2537
1391
  /**
2538
- * Reset the camera pivot point.
1392
+ *
2539
1393
  */
2540
- resetPivotPoint(): void;
1394
+ finish(): void;
1395
+ onPostExtensionLoad(extension: ExtensionBase): void;
1396
+ protected loadExtensions(): void;
1397
+ protected setThemeFromSettings(): void;
1398
+ }
1399
+ export enum IfcType {
1400
+ IfcAbsorbedDoseMeasure = 0,
1401
+ IfcAccelerationMeasure = 1,
1402
+ IfcActionRequest = 2,
1403
+ IfcActionRequestTypeEnum = 3,
1404
+ IfcActionSourceTypeEnum = 4,
1405
+ IfcActionTypeEnum = 5,
1406
+ IfcActor = 6,
1407
+ IfcActorRole = 7,
1408
+ IfcActorSelect = 8,
1409
+ IfcActuator = 9,
1410
+ IfcActuatorType = 10,
1411
+ IfcActuatorTypeEnum = 11,
1412
+ IfcAddress = 12,
1413
+ IfcAddressTypeEnum = 13,
1414
+ IfcAdvancedBrep = 14,
1415
+ IfcAdvancedBrepWithVoids = 15,
1416
+ IfcAdvancedFace = 16,
1417
+ IfcAirTerminal = 17,
1418
+ IfcAirTerminalBox = 18,
1419
+ IfcAirTerminalBoxType = 19,
1420
+ IfcAirTerminalBoxTypeEnum = 20,
1421
+ IfcAirTerminalType = 21,
1422
+ IfcAirTerminalTypeEnum = 22,
1423
+ IfcAirToAirHeatRecovery = 23,
1424
+ IfcAirToAirHeatRecoveryType = 24,
1425
+ IfcAirToAirHeatRecoveryTypeEnum = 25,
1426
+ IfcAlarm = 26,
1427
+ IfcAlarmType = 27,
1428
+ IfcAlarmTypeEnum = 28,
1429
+ IfcAlignment = 29,
1430
+ IfcAlignment2DHorizontal = 30,
1431
+ IfcAlignment2DHorizontalSegment = 31,
1432
+ IfcAlignment2DSegment = 32,
1433
+ IfcAlignment2DVerSegCircularArc = 33,
1434
+ IfcAlignment2DVerSegLine = 34,
1435
+ IfcAlignment2DVerSegParabolicArc = 35,
1436
+ IfcAlignment2DVertical = 36,
1437
+ IfcAlignment2DVerticalSegment = 37,
1438
+ IfcAlignmentCurve = 38,
1439
+ IfcAlignmentTypeEnum = 39,
1440
+ IfcAmountOfSubstanceMeasure = 40,
1441
+ IfcAnalysisModelTypeEnum = 41,
1442
+ IfcAnalysisTheoryTypeEnum = 42,
1443
+ IfcAngularVelocityMeasure = 43,
1444
+ IfcAnnotation = 44,
1445
+ IfcAnnotationFillArea = 45,
1446
+ IfcApplication = 46,
1447
+ IfcAppliedValue = 47,
1448
+ IfcAppliedValueSelect = 48,
1449
+ IfcApproval = 49,
1450
+ IfcApprovalRelationship = 50,
1451
+ IfcArbitraryClosedProfileDef = 51,
1452
+ IfcArbitraryOpenProfileDef = 52,
1453
+ IfcArbitraryProfileDefWithVoids = 53,
1454
+ IfcArcIndex = 54,
1455
+ IfcAreaDensityMeasure = 55,
1456
+ IfcAreaMeasure = 56,
1457
+ IfcArithmeticOperatorEnum = 57,
1458
+ IfcAssemblyPlaceEnum = 58,
1459
+ IfcAsset = 59,
1460
+ IfcAsymmetricIShapeProfileDef = 60,
1461
+ IfcAudioVisualAppliance = 61,
1462
+ IfcAudioVisualApplianceType = 62,
1463
+ IfcAudioVisualApplianceTypeEnum = 63,
1464
+ IfcAxis1Placement = 64,
1465
+ IfcAxis2Placement = 65,
1466
+ IfcAxis2Placement2D = 66,
1467
+ IfcAxis2Placement3D = 67,
1468
+ IfcBeam = 68,
1469
+ IfcBeamStandardCase = 69,
1470
+ IfcBeamType = 70,
1471
+ IfcBeamTypeEnum = 71,
1472
+ IfcBenchmarkEnum = 72,
1473
+ IfcBendingParameterSelect = 73,
1474
+ IfcBinary = 74,
1475
+ IfcBlobTexture = 75,
1476
+ IfcBlock = 76,
1477
+ IfcBoiler = 77,
1478
+ IfcBoilerType = 78,
1479
+ IfcBoilerTypeEnum = 79,
1480
+ IfcBoolean = 80,
1481
+ IfcBooleanClippingResult = 81,
1482
+ IfcBooleanOperand = 82,
1483
+ IfcBooleanOperator = 83,
1484
+ IfcBooleanResult = 84,
1485
+ IfcBoundaryCondition = 85,
1486
+ IfcBoundaryCurve = 86,
1487
+ IfcBoundaryEdgeCondition = 87,
1488
+ IfcBoundaryFaceCondition = 88,
1489
+ IfcBoundaryNodeCondition = 89,
1490
+ IfcBoundaryNodeConditionWarping = 90,
1491
+ IfcBoundedCurve = 91,
1492
+ IfcBoundedSurface = 92,
1493
+ IfcBoundingBox = 93,
1494
+ IfcBoxAlignment = 94,
1495
+ IfcBoxedHalfSpace = 95,
1496
+ IfcBSplineCurve = 96,
1497
+ IfcBSplineCurveForm = 97,
1498
+ IfcBSplineCurveWithKnots = 98,
1499
+ IfcBSplineSurface = 99,
1500
+ IfcBSplineSurfaceForm = 100,
1501
+ IfcBSplineSurfaceWithKnots = 101,
1502
+ IfcBuilding = 102,
1503
+ IfcBuildingElement = 103,
1504
+ IfcBuildingElementPart = 104,
1505
+ IfcBuildingElementPartType = 105,
1506
+ IfcBuildingElementPartTypeEnum = 106,
1507
+ IfcBuildingElementProxy = 107,
1508
+ IfcBuildingElementProxyType = 108,
1509
+ IfcBuildingElementProxyTypeEnum = 109,
1510
+ IfcBuildingElementType = 110,
1511
+ IfcBuildingStorey = 111,
1512
+ IfcBuildingSystem = 112,
1513
+ IfcBuildingSystemTypeEnum = 113,
1514
+ IfcBurner = 114,
1515
+ IfcBurnerType = 115,
1516
+ IfcBurnerTypeEnum = 116,
1517
+ IfcCableCarrierFitting = 117,
1518
+ IfcCableCarrierFittingType = 118,
1519
+ IfcCableCarrierFittingTypeEnum = 119,
1520
+ IfcCableCarrierSegment = 120,
1521
+ IfcCableCarrierSegmentType = 121,
1522
+ IfcCableCarrierSegmentTypeEnum = 122,
1523
+ IfcCableFitting = 123,
1524
+ IfcCableFittingType = 124,
1525
+ IfcCableFittingTypeEnum = 125,
1526
+ IfcCableSegment = 126,
1527
+ IfcCableSegmentType = 127,
1528
+ IfcCableSegmentTypeEnum = 128,
1529
+ IfcCardinalPointReference = 129,
1530
+ IfcCartesianPoint = 130,
1531
+ IfcCartesianPointList = 131,
1532
+ IfcCartesianPointList2D = 132,
1533
+ IfcCartesianPointList3D = 133,
1534
+ IfcCartesianTransformationOperator = 134,
1535
+ IfcCartesianTransformationOperator2D = 135,
1536
+ IfcCartesianTransformationOperator2DnonUniform = 136,
1537
+ IfcCartesianTransformationOperator3D = 137,
1538
+ IfcCartesianTransformationOperator3DnonUniform = 138,
1539
+ IfcCenterLineProfileDef = 139,
1540
+ IfcChangeActionEnum = 140,
1541
+ IfcChiller = 141,
1542
+ IfcChillerType = 142,
1543
+ IfcChillerTypeEnum = 143,
1544
+ IfcChimney = 144,
1545
+ IfcChimneyType = 145,
1546
+ IfcChimneyTypeEnum = 146,
1547
+ IfcCircle = 147,
1548
+ IfcCircleHollowProfileDef = 148,
1549
+ IfcCircleProfileDef = 149,
1550
+ IfcCircularArcSegment2D = 150,
1551
+ IfcCivilElement = 151,
1552
+ IfcCivilElementType = 152,
1553
+ IfcClassification = 153,
1554
+ IfcClassificationReference = 154,
1555
+ IfcClassificationReferenceSelect = 155,
1556
+ IfcClassificationSelect = 156,
1557
+ IfcClosedShell = 157,
1558
+ IfcCoil = 158,
1559
+ IfcCoilType = 159,
1560
+ IfcCoilTypeEnum = 160,
1561
+ IfcColour = 161,
1562
+ IfcColourOrFactor = 162,
1563
+ IfcColourRgb = 163,
1564
+ IfcColourRgbList = 164,
1565
+ IfcColourSpecification = 165,
1566
+ IfcColumn = 166,
1567
+ IfcColumnStandardCase = 167,
1568
+ IfcColumnType = 168,
1569
+ IfcColumnTypeEnum = 169,
1570
+ IfcCommunicationsAppliance = 170,
1571
+ IfcCommunicationsApplianceType = 171,
1572
+ IfcCommunicationsApplianceTypeEnum = 172,
1573
+ IfcComplexNumber = 173,
1574
+ IfcComplexProperty = 174,
1575
+ IfcComplexPropertyTemplate = 175,
1576
+ IfcComplexPropertyTemplateTypeEnum = 176,
1577
+ IfcCompositeCurve = 177,
1578
+ IfcCompositeCurveOnSurface = 178,
1579
+ IfcCompositeCurveSegment = 179,
1580
+ IfcCompositeProfileDef = 180,
1581
+ IfcCompoundPlaneAngleMeasure = 181,
1582
+ IfcCompressor = 182,
1583
+ IfcCompressorType = 183,
1584
+ IfcCompressorTypeEnum = 184,
1585
+ IfcCondenser = 185,
1586
+ IfcCondenserType = 186,
1587
+ IfcCondenserTypeEnum = 187,
1588
+ IfcConic = 188,
1589
+ IfcConnectedFaceSet = 189,
1590
+ IfcConnectionCurveGeometry = 190,
1591
+ IfcConnectionGeometry = 191,
1592
+ IfcConnectionPointEccentricity = 192,
1593
+ IfcConnectionPointGeometry = 193,
1594
+ IfcConnectionSurfaceGeometry = 194,
1595
+ IfcConnectionTypeEnum = 195,
1596
+ IfcConnectionVolumeGeometry = 196,
1597
+ IfcConstraint = 197,
1598
+ IfcConstraintEnum = 198,
1599
+ IfcConstructionEquipmentResource = 199,
1600
+ IfcConstructionEquipmentResourceType = 200,
1601
+ IfcConstructionEquipmentResourceTypeEnum = 201,
1602
+ IfcConstructionMaterialResource = 202,
1603
+ IfcConstructionMaterialResourceType = 203,
1604
+ IfcConstructionMaterialResourceTypeEnum = 204,
1605
+ IfcConstructionProductResource = 205,
1606
+ IfcConstructionProductResourceType = 206,
1607
+ IfcConstructionProductResourceTypeEnum = 207,
1608
+ IfcConstructionResource = 208,
1609
+ IfcConstructionResourceType = 209,
1610
+ IfcContext = 210,
1611
+ IfcContextDependentMeasure = 211,
1612
+ IfcContextDependentUnit = 212,
1613
+ IfcControl = 213,
1614
+ IfcController = 214,
1615
+ IfcControllerType = 215,
1616
+ IfcControllerTypeEnum = 216,
1617
+ IfcConversionBasedUnit = 217,
1618
+ IfcConversionBasedUnitWithOffset = 218,
1619
+ IfcCooledBeam = 219,
1620
+ IfcCooledBeamType = 220,
1621
+ IfcCooledBeamTypeEnum = 221,
1622
+ IfcCoolingTower = 222,
1623
+ IfcCoolingTowerType = 223,
1624
+ IfcCoolingTowerTypeEnum = 224,
1625
+ IfcCoordinateOperation = 225,
1626
+ IfcCoordinateReferenceSystem = 226,
1627
+ IfcCoordinateReferenceSystemSelect = 227,
1628
+ IfcCostItem = 228,
1629
+ IfcCostItemTypeEnum = 229,
1630
+ IfcCostSchedule = 230,
1631
+ IfcCostScheduleTypeEnum = 231,
1632
+ IfcCostValue = 232,
1633
+ IfcCountMeasure = 233,
1634
+ IfcCovering = 234,
1635
+ IfcCoveringType = 235,
1636
+ IfcCoveringTypeEnum = 236,
1637
+ IfcCrewResource = 237,
1638
+ IfcCrewResourceType = 238,
1639
+ IfcCrewResourceTypeEnum = 239,
1640
+ IfcCsgPrimitive3D = 240,
1641
+ IfcCsgSelect = 241,
1642
+ IfcCsgSolid = 242,
1643
+ IfcCShapeProfileDef = 243,
1644
+ IfcCurrencyRelationship = 244,
1645
+ IfcCurtainWall = 245,
1646
+ IfcCurtainWallType = 246,
1647
+ IfcCurtainWallTypeEnum = 247,
1648
+ IfcCurvatureMeasure = 248,
1649
+ IfcCurve = 249,
1650
+ IfcCurveBoundedPlane = 250,
1651
+ IfcCurveBoundedSurface = 251,
1652
+ IfcCurveFontOrScaledCurveFontSelect = 252,
1653
+ IfcCurveInterpolationEnum = 253,
1654
+ IfcCurveOnSurface = 254,
1655
+ IfcCurveOrEdgeCurve = 255,
1656
+ IfcCurveSegment2D = 256,
1657
+ IfcCurveStyle = 257,
1658
+ IfcCurveStyleFont = 258,
1659
+ IfcCurveStyleFontAndScaling = 259,
1660
+ IfcCurveStyleFontPattern = 260,
1661
+ IfcCurveStyleFontSelect = 261,
1662
+ IfcCylindricalSurface = 262,
1663
+ IfcDamper = 263,
1664
+ IfcDamperType = 264,
1665
+ IfcDamperTypeEnum = 265,
1666
+ IfcDataOriginEnum = 266,
1667
+ IfcDate = 267,
1668
+ IfcDateTime = 268,
1669
+ IfcDayInMonthNumber = 269,
1670
+ IfcDayInWeekNumber = 270,
1671
+ IfcDefinitionSelect = 271,
1672
+ IfcDerivedMeasureValue = 272,
1673
+ IfcDerivedProfileDef = 273,
1674
+ IfcDerivedUnit = 274,
1675
+ IfcDerivedUnitElement = 275,
1676
+ IfcDerivedUnitEnum = 276,
1677
+ IfcDescriptiveMeasure = 277,
1678
+ IfcDimensionalExponents = 278,
1679
+ IfcDimensionCount = 279,
1680
+ IfcDirection = 280,
1681
+ IfcDirectionSenseEnum = 281,
1682
+ IfcDiscreteAccessory = 282,
1683
+ IfcDiscreteAccessoryType = 283,
1684
+ IfcDiscreteAccessoryTypeEnum = 284,
1685
+ IfcDistanceExpression = 285,
1686
+ IfcDistributionChamberElement = 286,
1687
+ IfcDistributionChamberElementType = 287,
1688
+ IfcDistributionChamberElementTypeEnum = 288,
1689
+ IfcDistributionCircuit = 289,
1690
+ IfcDistributionControlElement = 290,
1691
+ IfcDistributionControlElementType = 291,
1692
+ IfcDistributionElement = 292,
1693
+ IfcDistributionElementType = 293,
1694
+ IfcDistributionFlowElement = 294,
1695
+ IfcDistributionFlowElementType = 295,
1696
+ IfcDistributionPort = 296,
1697
+ IfcDistributionPortTypeEnum = 297,
1698
+ IfcDistributionSystem = 298,
1699
+ IfcDistributionSystemEnum = 299,
1700
+ IfcDocumentConfidentialityEnum = 300,
1701
+ IfcDocumentInformation = 301,
1702
+ IfcDocumentInformationRelationship = 302,
1703
+ IfcDocumentReference = 303,
1704
+ IfcDocumentSelect = 304,
1705
+ IfcDocumentStatusEnum = 305,
1706
+ IfcDoor = 306,
1707
+ IfcDoorLiningProperties = 307,
1708
+ IfcDoorPanelOperationEnum = 308,
1709
+ IfcDoorPanelPositionEnum = 309,
1710
+ IfcDoorPanelProperties = 310,
1711
+ IfcDoorStandardCase = 311,
1712
+ IfcDoorStyle = 312,
1713
+ IfcDoorStyleConstructionEnum = 313,
1714
+ IfcDoorStyleOperationEnum = 314,
1715
+ IfcDoorType = 315,
1716
+ IfcDoorTypeEnum = 316,
1717
+ IfcDoorTypeOperationEnum = 317,
1718
+ IfcDoseEquivalentMeasure = 318,
1719
+ IfcDraughtingPreDefinedColour = 319,
1720
+ IfcDraughtingPreDefinedCurveFont = 320,
1721
+ IfcDuctFitting = 321,
1722
+ IfcDuctFittingType = 322,
1723
+ IfcDuctFittingTypeEnum = 323,
1724
+ IfcDuctSegment = 324,
1725
+ IfcDuctSegmentType = 325,
1726
+ IfcDuctSegmentTypeEnum = 326,
1727
+ IfcDuctSilencer = 327,
1728
+ IfcDuctSilencerType = 328,
1729
+ IfcDuctSilencerTypeEnum = 329,
1730
+ IfcDuration = 330,
1731
+ IfcDynamicViscosityMeasure = 331,
1732
+ IfcEdge = 332,
1733
+ IfcEdgeCurve = 333,
1734
+ IfcEdgeLoop = 334,
1735
+ IfcElectricAppliance = 335,
1736
+ IfcElectricApplianceType = 336,
1737
+ IfcElectricApplianceTypeEnum = 337,
1738
+ IfcElectricCapacitanceMeasure = 338,
1739
+ IfcElectricChargeMeasure = 339,
1740
+ IfcElectricConductanceMeasure = 340,
1741
+ IfcElectricCurrentMeasure = 341,
1742
+ IfcElectricDistributionBoard = 342,
1743
+ IfcElectricDistributionBoardType = 343,
1744
+ IfcElectricDistributionBoardTypeEnum = 344,
1745
+ IfcElectricFlowStorageDevice = 345,
1746
+ IfcElectricFlowStorageDeviceType = 346,
1747
+ IfcElectricFlowStorageDeviceTypeEnum = 347,
1748
+ IfcElectricGenerator = 348,
1749
+ IfcElectricGeneratorType = 349,
1750
+ IfcElectricGeneratorTypeEnum = 350,
1751
+ IfcElectricMotor = 351,
1752
+ IfcElectricMotorType = 352,
1753
+ IfcElectricMotorTypeEnum = 353,
1754
+ IfcElectricResistanceMeasure = 354,
1755
+ IfcElectricTimeControl = 355,
1756
+ IfcElectricTimeControlType = 356,
1757
+ IfcElectricTimeControlTypeEnum = 357,
1758
+ IfcElectricVoltageMeasure = 358,
1759
+ IfcElement = 359,
1760
+ IfcElementarySurface = 360,
1761
+ IfcElementAssembly = 361,
1762
+ IfcElementAssemblyType = 362,
1763
+ IfcElementAssemblyTypeEnum = 363,
1764
+ IfcElementComponent = 364,
1765
+ IfcElementComponentType = 365,
1766
+ IfcElementCompositionEnum = 366,
1767
+ IfcElementQuantity = 367,
1768
+ IfcElementType = 368,
1769
+ IfcEllipse = 369,
1770
+ IfcEllipseProfileDef = 370,
1771
+ IfcEnergyConversionDevice = 371,
1772
+ IfcEnergyConversionDeviceType = 372,
1773
+ IfcEnergyMeasure = 373,
1774
+ IfcEngine = 374,
1775
+ IfcEngineType = 375,
1776
+ IfcEngineTypeEnum = 376,
1777
+ IfcEvaporativeCooler = 377,
1778
+ IfcEvaporativeCoolerType = 378,
1779
+ IfcEvaporativeCoolerTypeEnum = 379,
1780
+ IfcEvaporator = 380,
1781
+ IfcEvaporatorType = 381,
1782
+ IfcEvaporatorTypeEnum = 382,
1783
+ IfcEvent = 383,
1784
+ IfcEventTime = 384,
1785
+ IfcEventTriggerTypeEnum = 385,
1786
+ IfcEventType = 386,
1787
+ IfcEventTypeEnum = 387,
1788
+ IfcExtendedProperties = 388,
1789
+ IfcExternalInformation = 389,
1790
+ IfcExternallyDefinedHatchStyle = 390,
1791
+ IfcExternallyDefinedSurfaceStyle = 391,
1792
+ IfcExternallyDefinedTextFont = 392,
1793
+ IfcExternalReference = 393,
1794
+ IfcExternalReferenceRelationship = 394,
1795
+ IfcExternalSpatialElement = 395,
1796
+ IfcExternalSpatialElementTypeEnum = 396,
1797
+ IfcExternalSpatialStructureElement = 397,
1798
+ IfcExtrudedAreaSolid = 398,
1799
+ IfcExtrudedAreaSolidTapered = 399,
1800
+ IfcFace = 400,
1801
+ IfcFaceBasedSurfaceModel = 401,
1802
+ IfcFaceBound = 402,
1803
+ IfcFaceOuterBound = 403,
1804
+ IfcFaceSurface = 404,
1805
+ IfcFacetedBrep = 405,
1806
+ IfcFacetedBrepWithVoids = 406,
1807
+ IfcFailureConnectionCondition = 407,
1808
+ IfcFan = 408,
1809
+ IfcFanType = 409,
1810
+ IfcFanTypeEnum = 410,
1811
+ IfcFastener = 411,
1812
+ IfcFastenerType = 412,
1813
+ IfcFastenerTypeEnum = 413,
1814
+ IfcFeatureElement = 414,
1815
+ IfcFeatureElementAddition = 415,
1816
+ IfcFeatureElementSubtraction = 416,
1817
+ IfcFillAreaStyle = 417,
1818
+ IfcFillAreaStyleHatching = 418,
1819
+ IfcFillAreaStyleTiles = 419,
1820
+ IfcFillStyleSelect = 420,
1821
+ IfcFilter = 421,
1822
+ IfcFilterType = 422,
1823
+ IfcFilterTypeEnum = 423,
1824
+ IfcFireSuppressionTerminal = 424,
1825
+ IfcFireSuppressionTerminalType = 425,
1826
+ IfcFireSuppressionTerminalTypeEnum = 426,
1827
+ IfcFixedReferenceSweptAreaSolid = 427,
1828
+ IfcFlowController = 428,
1829
+ IfcFlowControllerType = 429,
1830
+ IfcFlowDirectionEnum = 430,
1831
+ IfcFlowFitting = 431,
1832
+ IfcFlowFittingType = 432,
1833
+ IfcFlowInstrument = 433,
1834
+ IfcFlowInstrumentType = 434,
1835
+ IfcFlowInstrumentTypeEnum = 435,
1836
+ IfcFlowMeter = 436,
1837
+ IfcFlowMeterType = 437,
1838
+ IfcFlowMeterTypeEnum = 438,
1839
+ IfcFlowMovingDevice = 439,
1840
+ IfcFlowMovingDeviceType = 440,
1841
+ IfcFlowSegment = 441,
1842
+ IfcFlowSegmentType = 442,
1843
+ IfcFlowStorageDevice = 443,
1844
+ IfcFlowStorageDeviceType = 444,
1845
+ IfcFlowTerminal = 445,
1846
+ IfcFlowTerminalType = 446,
1847
+ IfcFlowTreatmentDevice = 447,
1848
+ IfcFlowTreatmentDeviceType = 448,
1849
+ IfcFontStyle = 449,
1850
+ IfcFontVariant = 450,
1851
+ IfcFontWeight = 451,
1852
+ IfcFooting = 452,
1853
+ IfcFootingType = 453,
1854
+ IfcFootingTypeEnum = 454,
1855
+ IfcForceMeasure = 455,
1856
+ IfcFrequencyMeasure = 456,
1857
+ IfcFurnishingElement = 457,
1858
+ IfcFurnishingElementType = 458,
1859
+ IfcFurniture = 459,
1860
+ IfcFurnitureType = 460,
1861
+ IfcFurnitureTypeEnum = 461,
1862
+ IfcGeographicElement = 462,
1863
+ IfcGeographicElementType = 463,
1864
+ IfcGeographicElementTypeEnum = 464,
1865
+ IfcGeometricCurveSet = 465,
1866
+ IfcGeometricProjectionEnum = 466,
1867
+ IfcGeometricRepresentationContext = 467,
1868
+ IfcGeometricRepresentationItem = 468,
1869
+ IfcGeometricRepresentationSubContext = 469,
1870
+ IfcGeometricSet = 470,
1871
+ IfcGeometricSetSelect = 471,
1872
+ IfcGloballyUniqueId = 472,
1873
+ IfcGlobalOrLocalEnum = 473,
1874
+ IfcGrid = 474,
1875
+ IfcGridAxis = 475,
1876
+ IfcGridPlacement = 476,
1877
+ IfcGridPlacementDirectionSelect = 477,
1878
+ IfcGridTypeEnum = 478,
1879
+ IfcGroup = 479,
1880
+ IfcHalfSpaceSolid = 480,
1881
+ IfcHatchLineDistanceSelect = 481,
1882
+ IfcHeatExchanger = 482,
1883
+ IfcHeatExchangerType = 483,
1884
+ IfcHeatExchangerTypeEnum = 484,
1885
+ IfcHeatFluxDensityMeasure = 485,
1886
+ IfcHeatingValueMeasure = 486,
1887
+ IfcHumidifier = 487,
1888
+ IfcHumidifierType = 488,
1889
+ IfcHumidifierTypeEnum = 489,
1890
+ IfcIdentifier = 490,
1891
+ IfcIlluminanceMeasure = 491,
1892
+ IfcImageTexture = 492,
1893
+ IfcIndexedColourMap = 493,
1894
+ IfcIndexedPolyCurve = 494,
1895
+ IfcIndexedPolygonalFace = 495,
1896
+ IfcIndexedPolygonalFaceWithVoids = 496,
1897
+ IfcIndexedTextureMap = 497,
1898
+ IfcIndexedTriangleTextureMap = 498,
1899
+ IfcInductanceMeasure = 499,
1900
+ IfcInteger = 500,
1901
+ IfcIntegerCountRateMeasure = 501,
1902
+ IfcInterceptor = 502,
1903
+ IfcInterceptorType = 503,
1904
+ IfcInterceptorTypeEnum = 504,
1905
+ IfcInternalOrExternalEnum = 505,
1906
+ IfcIntersectionCurve = 506,
1907
+ IfcInventory = 507,
1908
+ IfcInventoryTypeEnum = 508,
1909
+ IfcIonConcentrationMeasure = 509,
1910
+ IfcIrregularTimeSeries = 510,
1911
+ IfcIrregularTimeSeriesValue = 511,
1912
+ IfcIShapeProfileDef = 512,
1913
+ IfcIsothermalMoistureCapacityMeasure = 513,
1914
+ IfcJunctionBox = 514,
1915
+ IfcJunctionBoxType = 515,
1916
+ IfcJunctionBoxTypeEnum = 516,
1917
+ IfcKinematicViscosityMeasure = 517,
1918
+ IfcKnotType = 518,
1919
+ IfcLabel = 519,
1920
+ IfcLaborResource = 520,
1921
+ IfcLaborResourceType = 521,
1922
+ IfcLaborResourceTypeEnum = 522,
1923
+ IfcLagTime = 523,
1924
+ IfcLamp = 524,
1925
+ IfcLampType = 525,
1926
+ IfcLampTypeEnum = 526,
1927
+ IfcLanguageId = 527,
1928
+ IfcLayeredItem = 528,
1929
+ IfcLayerSetDirectionEnum = 529,
1930
+ IfcLengthMeasure = 530,
1931
+ IfcLibraryInformation = 531,
1932
+ IfcLibraryReference = 532,
1933
+ IfcLibrarySelect = 533,
1934
+ IfcLightDistributionCurveEnum = 534,
1935
+ IfcLightDistributionData = 535,
1936
+ IfcLightDistributionDataSourceSelect = 536,
1937
+ IfcLightEmissionSourceEnum = 537,
1938
+ IfcLightFixture = 538,
1939
+ IfcLightFixtureType = 539,
1940
+ IfcLightFixtureTypeEnum = 540,
1941
+ IfcLightIntensityDistribution = 541,
1942
+ IfcLightSource = 542,
1943
+ IfcLightSourceAmbient = 543,
1944
+ IfcLightSourceDirectional = 544,
1945
+ IfcLightSourceGoniometric = 545,
1946
+ IfcLightSourcePositional = 546,
1947
+ IfcLightSourceSpot = 547,
1948
+ IfcLine = 548,
1949
+ IfcLinearForceMeasure = 549,
1950
+ IfcLinearMomentMeasure = 550,
1951
+ IfcLinearPlacement = 551,
1952
+ IfcLinearPositioningElement = 552,
1953
+ IfcLinearStiffnessMeasure = 553,
1954
+ IfcLinearVelocityMeasure = 554,
1955
+ IfcLineIndex = 555,
1956
+ IfcLineSegment2D = 556,
1957
+ IfcLoadGroupTypeEnum = 557,
1958
+ IfcLocalPlacement = 558,
1959
+ IfcLogical = 559,
1960
+ IfcLogicalOperatorEnum = 560,
1961
+ IfcLoop = 561,
1962
+ IfcLShapeProfileDef = 562,
1963
+ IfcLuminousFluxMeasure = 563,
1964
+ IfcLuminousIntensityDistributionMeasure = 564,
1965
+ IfcLuminousIntensityMeasure = 565,
1966
+ IfcMagneticFluxDensityMeasure = 566,
1967
+ IfcMagneticFluxMeasure = 567,
1968
+ IfcManifoldSolidBrep = 568,
1969
+ IfcMapConversion = 569,
1970
+ IfcMappedItem = 570,
1971
+ IfcMassDensityMeasure = 571,
1972
+ IfcMassFlowRateMeasure = 572,
1973
+ IfcMassMeasure = 573,
1974
+ IfcMassPerLengthMeasure = 574,
1975
+ IfcMaterial = 575,
1976
+ IfcMaterialClassificationRelationship = 576,
1977
+ IfcMaterialConstituent = 577,
1978
+ IfcMaterialConstituentSet = 578,
1979
+ IfcMaterialDefinition = 579,
1980
+ IfcMaterialDefinitionRepresentation = 580,
1981
+ IfcMaterialLayer = 581,
1982
+ IfcMaterialLayerSet = 582,
1983
+ IfcMaterialLayerSetUsage = 583,
1984
+ IfcMaterialLayerWithOffsets = 584,
1985
+ IfcMaterialList = 585,
1986
+ IfcMaterialProfile = 586,
1987
+ IfcMaterialProfileSet = 587,
1988
+ IfcMaterialProfileSetUsage = 588,
1989
+ IfcMaterialProfileSetUsageTapering = 589,
1990
+ IfcMaterialProfileWithOffsets = 590,
1991
+ IfcMaterialProperties = 591,
1992
+ IfcMaterialRelationship = 592,
1993
+ IfcMaterialSelect = 593,
1994
+ IfcMaterialUsageDefinition = 594,
1995
+ IfcMeasureValue = 595,
1996
+ IfcMeasureWithUnit = 596,
1997
+ IfcMechanicalFastener = 597,
1998
+ IfcMechanicalFastenerType = 598,
1999
+ IfcMechanicalFastenerTypeEnum = 599,
2000
+ IfcMedicalDevice = 600,
2001
+ IfcMedicalDeviceType = 601,
2002
+ IfcMedicalDeviceTypeEnum = 602,
2003
+ IfcMember = 603,
2004
+ IfcMemberStandardCase = 604,
2005
+ IfcMemberType = 605,
2006
+ IfcMemberTypeEnum = 606,
2007
+ IfcMetric = 607,
2008
+ IfcMetricValueSelect = 608,
2009
+ IfcMirroredProfileDef = 609,
2010
+ IfcModulusOfElasticityMeasure = 610,
2011
+ IfcModulusOfLinearSubgradeReactionMeasure = 611,
2012
+ IfcModulusOfRotationalSubgradeReactionMeasure = 612,
2013
+ IfcModulusOfRotationalSubgradeReactionSelect = 613,
2014
+ IfcModulusOfSubgradeReactionMeasure = 614,
2015
+ IfcModulusOfSubgradeReactionSelect = 615,
2016
+ IfcModulusOfTranslationalSubgradeReactionSelect = 616,
2017
+ IfcMoistureDiffusivityMeasure = 617,
2018
+ IfcMolecularWeightMeasure = 618,
2019
+ IfcMomentOfInertiaMeasure = 619,
2020
+ IfcMonetaryMeasure = 620,
2021
+ IfcMonetaryUnit = 621,
2022
+ IfcMonthInYearNumber = 622,
2023
+ IfcMotorConnection = 623,
2024
+ IfcMotorConnectionType = 624,
2025
+ IfcMotorConnectionTypeEnum = 625,
2026
+ IfcNamedUnit = 626,
2027
+ IfcNonNegativeLengthMeasure = 627,
2028
+ IfcNormalisedRatioMeasure = 628,
2029
+ IfcNullStyle = 629,
2030
+ IfcNumericMeasure = 630,
2031
+ IfcObject = 631,
2032
+ IfcObjectDefinition = 632,
2033
+ IfcObjective = 633,
2034
+ IfcObjectiveEnum = 634,
2035
+ IfcObjectPlacement = 635,
2036
+ IfcObjectReferenceSelect = 636,
2037
+ IfcObjectTypeEnum = 637,
2038
+ IfcOccupant = 638,
2039
+ IfcOccupantTypeEnum = 639,
2040
+ IfcOffsetCurve = 640,
2041
+ IfcOffsetCurve2D = 641,
2042
+ IfcOffsetCurve3D = 642,
2043
+ IfcOffsetCurveByDistances = 643,
2044
+ IfcOpeningElement = 644,
2045
+ IfcOpeningElementTypeEnum = 645,
2046
+ IfcOpeningStandardCase = 646,
2047
+ IfcOpenShell = 647,
2048
+ IfcOrganization = 648,
2049
+ IfcOrganizationRelationship = 649,
2050
+ IfcOrientationExpression = 650,
2051
+ IfcOrientedEdge = 651,
2052
+ IfcOuterBoundaryCurve = 652,
2053
+ IfcOutlet = 653,
2054
+ IfcOutletType = 654,
2055
+ IfcOutletTypeEnum = 655,
2056
+ IfcOwnerHistory = 656,
2057
+ IfcParameterizedProfileDef = 657,
2058
+ IfcParameterValue = 658,
2059
+ IfcPath = 659,
2060
+ IfcPcurve = 660,
2061
+ IfcPerformanceHistory = 661,
2062
+ IfcPerformanceHistoryTypeEnum = 662,
2063
+ IfcPermeableCoveringOperationEnum = 663,
2064
+ IfcPermeableCoveringProperties = 664,
2065
+ IfcPermit = 665,
2066
+ IfcPermitTypeEnum = 666,
2067
+ IfcPerson = 667,
2068
+ IfcPersonAndOrganization = 668,
2069
+ IfcPHMeasure = 669,
2070
+ IfcPhysicalComplexQuantity = 670,
2071
+ IfcPhysicalOrVirtualEnum = 671,
2072
+ IfcPhysicalQuantity = 672,
2073
+ IfcPhysicalSimpleQuantity = 673,
2074
+ IfcPile = 674,
2075
+ IfcPileConstructionEnum = 675,
2076
+ IfcPileType = 676,
2077
+ IfcPileTypeEnum = 677,
2078
+ IfcPipeFitting = 678,
2079
+ IfcPipeFittingType = 679,
2080
+ IfcPipeFittingTypeEnum = 680,
2081
+ IfcPipeSegment = 681,
2082
+ IfcPipeSegmentType = 682,
2083
+ IfcPipeSegmentTypeEnum = 683,
2084
+ IfcPixelTexture = 684,
2085
+ IfcPlacement = 685,
2086
+ IfcPlanarBox = 686,
2087
+ IfcPlanarExtent = 687,
2088
+ IfcPlanarForceMeasure = 688,
2089
+ IfcPlane = 689,
2090
+ IfcPlaneAngleMeasure = 690,
2091
+ IfcPlate = 691,
2092
+ IfcPlateStandardCase = 692,
2093
+ IfcPlateType = 693,
2094
+ IfcPlateTypeEnum = 694,
2095
+ IfcPoint = 695,
2096
+ IfcPointOnCurve = 696,
2097
+ IfcPointOnSurface = 697,
2098
+ IfcPointOrVertexPoint = 698,
2099
+ IfcPolygonalBoundedHalfSpace = 699,
2100
+ IfcPolygonalFaceSet = 700,
2101
+ IfcPolyline = 701,
2102
+ IfcPolyLoop = 702,
2103
+ IfcPort = 703,
2104
+ IfcPositioningElement = 704,
2105
+ IfcPositiveInteger = 705,
2106
+ IfcPositiveLengthMeasure = 706,
2107
+ IfcPositivePlaneAngleMeasure = 707,
2108
+ IfcPositiveRatioMeasure = 708,
2109
+ IfcPostalAddress = 709,
2110
+ IfcPowerMeasure = 710,
2111
+ IfcPreDefinedColour = 711,
2112
+ IfcPreDefinedCurveFont = 712,
2113
+ IfcPreDefinedItem = 713,
2114
+ IfcPreDefinedProperties = 714,
2115
+ IfcPreDefinedPropertySet = 715,
2116
+ IfcPreDefinedTextFont = 716,
2117
+ IfcPreferredSurfaceCurveRepresentation = 717,
2118
+ IfcPresentableText = 718,
2119
+ IfcPresentationItem = 719,
2120
+ IfcPresentationLayerAssignment = 720,
2121
+ IfcPresentationLayerWithStyle = 721,
2122
+ IfcPresentationStyle = 722,
2123
+ IfcPresentationStyleAssignment = 723,
2124
+ IfcPresentationStyleSelect = 724,
2125
+ IfcPressureMeasure = 725,
2126
+ IfcProcedure = 726,
2127
+ IfcProcedureType = 727,
2128
+ IfcProcedureTypeEnum = 728,
2129
+ IfcProcess = 729,
2130
+ IfcProcessSelect = 730,
2131
+ IfcProduct = 731,
2132
+ IfcProductDefinitionShape = 732,
2133
+ IfcProductRepresentation = 733,
2134
+ IfcProductRepresentationSelect = 734,
2135
+ IfcProductSelect = 735,
2136
+ IfcProfileDef = 736,
2137
+ IfcProfileProperties = 737,
2138
+ IfcProfileTypeEnum = 738,
2139
+ IfcProject = 739,
2140
+ IfcProjectedCRS = 740,
2141
+ IfcProjectedOrTrueLengthEnum = 741,
2142
+ IfcProjectionElement = 742,
2143
+ IfcProjectionElementTypeEnum = 743,
2144
+ IfcProjectLibrary = 744,
2145
+ IfcProjectOrder = 745,
2146
+ IfcProjectOrderTypeEnum = 746,
2147
+ IfcProperty = 747,
2148
+ IfcPropertyAbstraction = 748,
2149
+ IfcPropertyBoundedValue = 749,
2150
+ IfcPropertyDefinition = 750,
2151
+ IfcPropertyDependencyRelationship = 751,
2152
+ IfcPropertyEnumeratedValue = 752,
2153
+ IfcPropertyEnumeration = 753,
2154
+ IfcPropertyListValue = 754,
2155
+ IfcPropertyReferenceValue = 755,
2156
+ IfcPropertySet = 756,
2157
+ IfcPropertySetDefinition = 757,
2158
+ IfcPropertySetDefinitionSelect = 758,
2159
+ IfcPropertySetDefinitionSet = 759,
2160
+ IfcPropertySetTemplate = 760,
2161
+ IfcPropertySetTemplateTypeEnum = 761,
2162
+ IfcPropertySingleValue = 762,
2163
+ IfcPropertyTableValue = 763,
2164
+ IfcPropertyTemplate = 764,
2165
+ IfcPropertyTemplateDefinition = 765,
2166
+ IfcProtectiveDevice = 766,
2167
+ IfcProtectiveDeviceTrippingUnit = 767,
2168
+ IfcProtectiveDeviceTrippingUnitType = 768,
2169
+ IfcProtectiveDeviceTrippingUnitTypeEnum = 769,
2170
+ IfcProtectiveDeviceType = 770,
2171
+ IfcProtectiveDeviceTypeEnum = 771,
2172
+ IfcProxy = 772,
2173
+ IfcPump = 773,
2174
+ IfcPumpType = 774,
2175
+ IfcPumpTypeEnum = 775,
2176
+ IfcQuantityArea = 776,
2177
+ IfcQuantityCount = 777,
2178
+ IfcQuantityLength = 778,
2179
+ IfcQuantitySet = 779,
2180
+ IfcQuantityTime = 780,
2181
+ IfcQuantityVolume = 781,
2182
+ IfcQuantityWeight = 782,
2183
+ IfcRadioActivityMeasure = 783,
2184
+ IfcRailing = 784,
2185
+ IfcRailingType = 785,
2186
+ IfcRailingTypeEnum = 786,
2187
+ IfcRamp = 787,
2188
+ IfcRampFlight = 788,
2189
+ IfcRampFlightType = 789,
2190
+ IfcRampFlightTypeEnum = 790,
2191
+ IfcRampType = 791,
2192
+ IfcRampTypeEnum = 792,
2193
+ IfcRatioMeasure = 793,
2194
+ IfcRationalBSplineCurveWithKnots = 794,
2195
+ IfcRationalBSplineSurfaceWithKnots = 795,
2196
+ IfcReal = 796,
2197
+ IfcRectangleHollowProfileDef = 797,
2198
+ IfcRectangleProfileDef = 798,
2199
+ IfcRectangularPyramid = 799,
2200
+ IfcRectangularTrimmedSurface = 800,
2201
+ IfcRecurrencePattern = 801,
2202
+ IfcRecurrenceTypeEnum = 802,
2203
+ IfcReference = 803,
2204
+ IfcReferent = 804,
2205
+ IfcReferentTypeEnum = 805,
2206
+ IfcReflectanceMethodEnum = 806,
2207
+ IfcRegularTimeSeries = 807,
2208
+ IfcReinforcementBarProperties = 808,
2209
+ IfcReinforcementDefinitionProperties = 809,
2210
+ IfcReinforcingBar = 810,
2211
+ IfcReinforcingBarRoleEnum = 811,
2212
+ IfcReinforcingBarSurfaceEnum = 812,
2213
+ IfcReinforcingBarType = 813,
2214
+ IfcReinforcingBarTypeEnum = 814,
2215
+ IfcReinforcingElement = 815,
2216
+ IfcReinforcingElementType = 816,
2217
+ IfcReinforcingMesh = 817,
2218
+ IfcReinforcingMeshType = 818,
2219
+ IfcReinforcingMeshTypeEnum = 819,
2220
+ IfcRelAggregates = 820,
2221
+ IfcRelAssigns = 821,
2222
+ IfcRelAssignsToActor = 822,
2223
+ IfcRelAssignsToControl = 823,
2224
+ IfcRelAssignsToGroup = 824,
2225
+ IfcRelAssignsToGroupByFactor = 825,
2226
+ IfcRelAssignsToProcess = 826,
2227
+ IfcRelAssignsToProduct = 827,
2228
+ IfcRelAssignsToResource = 828,
2229
+ IfcRelAssociates = 829,
2230
+ IfcRelAssociatesApproval = 830,
2231
+ IfcRelAssociatesClassification = 831,
2232
+ IfcRelAssociatesConstraint = 832,
2233
+ IfcRelAssociatesDocument = 833,
2234
+ IfcRelAssociatesLibrary = 834,
2235
+ IfcRelAssociatesMaterial = 835,
2236
+ IfcRelationship = 836,
2237
+ IfcRelConnects = 837,
2238
+ IfcRelConnectsElements = 838,
2239
+ IfcRelConnectsPathElements = 839,
2240
+ IfcRelConnectsPorts = 840,
2241
+ IfcRelConnectsPortToElement = 841,
2242
+ IfcRelConnectsStructuralActivity = 842,
2243
+ IfcRelConnectsStructuralMember = 843,
2244
+ IfcRelConnectsWithEccentricity = 844,
2245
+ IfcRelConnectsWithRealizingElements = 845,
2246
+ IfcRelContainedInSpatialStructure = 846,
2247
+ IfcRelCoversBldgElements = 847,
2248
+ IfcRelCoversSpaces = 848,
2249
+ IfcRelDeclares = 849,
2250
+ IfcRelDecomposes = 850,
2251
+ IfcRelDefines = 851,
2252
+ IfcRelDefinesByObject = 852,
2253
+ IfcRelDefinesByProperties = 853,
2254
+ IfcRelDefinesByTemplate = 854,
2255
+ IfcRelDefinesByType = 855,
2256
+ IfcRelFillsElement = 856,
2257
+ IfcRelFlowControlElements = 857,
2258
+ IfcRelInterferesElements = 858,
2259
+ IfcRelNests = 859,
2260
+ IfcRelProjectsElement = 860,
2261
+ IfcRelReferencedInSpatialStructure = 861,
2262
+ IfcRelSequence = 862,
2263
+ IfcRelServicesBuildings = 863,
2264
+ IfcRelSpaceBoundary = 864,
2265
+ IfcRelSpaceBoundary1stLevel = 865,
2266
+ IfcRelSpaceBoundary2ndLevel = 866,
2267
+ IfcRelVoidsElement = 867,
2268
+ IfcReparametrisedCompositeCurveSegment = 868,
2269
+ IfcRepresentation = 869,
2270
+ IfcRepresentationContext = 870,
2271
+ IfcRepresentationItem = 871,
2272
+ IfcRepresentationMap = 872,
2273
+ IfcResource = 873,
2274
+ IfcResourceApprovalRelationship = 874,
2275
+ IfcResourceConstraintRelationship = 875,
2276
+ IfcResourceLevelRelationship = 876,
2277
+ IfcResourceObjectSelect = 877,
2278
+ IfcResourceSelect = 878,
2279
+ IfcResourceTime = 879,
2280
+ IfcRevolvedAreaSolid = 880,
2281
+ IfcRevolvedAreaSolidTapered = 881,
2282
+ IfcRightCircularCone = 882,
2283
+ IfcRightCircularCylinder = 883,
2284
+ IfcRoleEnum = 884,
2285
+ IfcRoof = 885,
2286
+ IfcRoofType = 886,
2287
+ IfcRoofTypeEnum = 887,
2288
+ IfcRoot = 888,
2289
+ IfcRotationalFrequencyMeasure = 889,
2290
+ IfcRotationalMassMeasure = 890,
2291
+ IfcRotationalStiffnessMeasure = 891,
2292
+ IfcRotationalStiffnessSelect = 892,
2293
+ IfcRoundedRectangleProfileDef = 893,
2294
+ IfcSanitaryTerminal = 894,
2295
+ IfcSanitaryTerminalType = 895,
2296
+ IfcSanitaryTerminalTypeEnum = 896,
2297
+ IfcSchedulingTime = 897,
2298
+ IfcSeamCurve = 898,
2299
+ IfcSectionalAreaIntegralMeasure = 899,
2300
+ IfcSectionedSolid = 900,
2301
+ IfcSectionedSolidHorizontal = 901,
2302
+ IfcSectionedSpine = 902,
2303
+ IfcSectionModulusMeasure = 903,
2304
+ IfcSectionProperties = 904,
2305
+ IfcSectionReinforcementProperties = 905,
2306
+ IfcSectionTypeEnum = 906,
2307
+ IfcSegmentIndexSelect = 907,
2308
+ IfcSensor = 908,
2309
+ IfcSensorType = 909,
2310
+ IfcSensorTypeEnum = 910,
2311
+ IfcSequenceEnum = 911,
2312
+ IfcShadingDevice = 912,
2313
+ IfcShadingDeviceType = 913,
2314
+ IfcShadingDeviceTypeEnum = 914,
2315
+ IfcShapeAspect = 915,
2316
+ IfcShapeModel = 916,
2317
+ IfcShapeRepresentation = 917,
2318
+ IfcShearModulusMeasure = 918,
2319
+ IfcShell = 919,
2320
+ IfcShellBasedSurfaceModel = 920,
2321
+ IfcSimpleProperty = 921,
2322
+ IfcSimplePropertyTemplate = 922,
2323
+ IfcSimplePropertyTemplateTypeEnum = 923,
2324
+ IfcSimpleValue = 924,
2325
+ IfcSIPrefix = 925,
2326
+ IfcSite = 926,
2327
+ IfcSIUnit = 927,
2328
+ IfcSIUnitName = 928,
2329
+ IfcSizeSelect = 929,
2330
+ IfcSlab = 930,
2331
+ IfcSlabElementedCase = 931,
2332
+ IfcSlabStandardCase = 932,
2333
+ IfcSlabType = 933,
2334
+ IfcSlabTypeEnum = 934,
2335
+ IfcSlippageConnectionCondition = 935,
2336
+ IfcSolarDevice = 936,
2337
+ IfcSolarDeviceType = 937,
2338
+ IfcSolarDeviceTypeEnum = 938,
2339
+ IfcSolidAngleMeasure = 939,
2340
+ IfcSolidModel = 940,
2341
+ IfcSolidOrShell = 941,
2342
+ IfcSoundPowerLevelMeasure = 942,
2343
+ IfcSoundPowerMeasure = 943,
2344
+ IfcSoundPressureLevelMeasure = 944,
2345
+ IfcSoundPressureMeasure = 945,
2346
+ IfcSpace = 946,
2347
+ IfcSpaceBoundarySelect = 947,
2348
+ IfcSpaceHeater = 948,
2349
+ IfcSpaceHeaterType = 949,
2350
+ IfcSpaceHeaterTypeEnum = 950,
2351
+ IfcSpaceType = 951,
2352
+ IfcSpaceTypeEnum = 952,
2353
+ IfcSpatialElement = 953,
2354
+ IfcSpatialElementType = 954,
2355
+ IfcSpatialStructureElement = 955,
2356
+ IfcSpatialStructureElementType = 956,
2357
+ IfcSpatialZone = 957,
2358
+ IfcSpatialZoneType = 958,
2359
+ IfcSpatialZoneTypeEnum = 959,
2360
+ IfcSpecificHeatCapacityMeasure = 960,
2361
+ IfcSpecularExponent = 961,
2362
+ IfcSpecularHighlightSelect = 962,
2363
+ IfcSpecularRoughness = 963,
2364
+ IfcSphere = 964,
2365
+ IfcSphericalSurface = 965,
2366
+ IfcStackTerminal = 966,
2367
+ IfcStackTerminalType = 967,
2368
+ IfcStackTerminalTypeEnum = 968,
2369
+ IfcStair = 969,
2370
+ IfcStairFlight = 970,
2371
+ IfcStairFlightType = 971,
2372
+ IfcStairFlightTypeEnum = 972,
2373
+ IfcStairType = 973,
2374
+ IfcStairTypeEnum = 974,
2375
+ IfcStateEnum = 975,
2376
+ IfcStrippedOptional = 976,
2377
+ IfcStructuralAction = 977,
2378
+ IfcStructuralActivity = 978,
2379
+ IfcStructuralActivityAssignmentSelect = 979,
2380
+ IfcStructuralAnalysisModel = 980,
2381
+ IfcStructuralConnection = 981,
2382
+ IfcStructuralConnectionCondition = 982,
2383
+ IfcStructuralCurveAction = 983,
2384
+ IfcStructuralCurveActivityTypeEnum = 984,
2385
+ IfcStructuralCurveConnection = 985,
2386
+ IfcStructuralCurveMember = 986,
2387
+ IfcStructuralCurveMemberTypeEnum = 987,
2388
+ IfcStructuralCurveMemberVarying = 988,
2389
+ IfcStructuralCurveReaction = 989,
2390
+ IfcStructuralItem = 990,
2391
+ IfcStructuralLinearAction = 991,
2392
+ IfcStructuralLoad = 992,
2393
+ IfcStructuralLoadCase = 993,
2394
+ IfcStructuralLoadConfiguration = 994,
2395
+ IfcStructuralLoadGroup = 995,
2396
+ IfcStructuralLoadLinearForce = 996,
2397
+ IfcStructuralLoadOrResult = 997,
2398
+ IfcStructuralLoadPlanarForce = 998,
2399
+ IfcStructuralLoadSingleDisplacement = 999,
2400
+ IfcStructuralLoadSingleDisplacementDistortion = 1000,
2401
+ IfcStructuralLoadSingleForce = 1001,
2402
+ IfcStructuralLoadSingleForceWarping = 1002,
2403
+ IfcStructuralLoadStatic = 1003,
2404
+ IfcStructuralLoadTemperature = 1004,
2405
+ IfcStructuralMember = 1005,
2406
+ IfcStructuralPlanarAction = 1006,
2407
+ IfcStructuralPointAction = 1007,
2408
+ IfcStructuralPointConnection = 1008,
2409
+ IfcStructuralPointReaction = 1009,
2410
+ IfcStructuralReaction = 1010,
2411
+ IfcStructuralResultGroup = 1011,
2412
+ IfcStructuralSurfaceAction = 1012,
2413
+ IfcStructuralSurfaceActivityTypeEnum = 1013,
2414
+ IfcStructuralSurfaceConnection = 1014,
2415
+ IfcStructuralSurfaceMember = 1015,
2416
+ IfcStructuralSurfaceMemberTypeEnum = 1016,
2417
+ IfcStructuralSurfaceMemberVarying = 1017,
2418
+ IfcStructuralSurfaceReaction = 1018,
2419
+ IfcStyleAssignmentSelect = 1019,
2420
+ IfcStyledItem = 1020,
2421
+ IfcStyledRepresentation = 1021,
2422
+ IfcStyleModel = 1022,
2423
+ IfcSubContractResource = 1023,
2424
+ IfcSubContractResourceType = 1024,
2425
+ IfcSubContractResourceTypeEnum = 1025,
2426
+ IfcSubedge = 1026,
2427
+ IfcSurface = 1027,
2428
+ IfcSurfaceCurve = 1028,
2429
+ IfcSurfaceCurveSweptAreaSolid = 1029,
2430
+ IfcSurfaceFeature = 1030,
2431
+ IfcSurfaceFeatureTypeEnum = 1031,
2432
+ IfcSurfaceOfLinearExtrusion = 1032,
2433
+ IfcSurfaceOfRevolution = 1033,
2434
+ IfcSurfaceOrFaceSurface = 1034,
2435
+ IfcSurfaceReinforcementArea = 1035,
2436
+ IfcSurfaceSide = 1036,
2437
+ IfcSurfaceStyle = 1037,
2438
+ IfcSurfaceStyleElementSelect = 1038,
2439
+ IfcSurfaceStyleLighting = 1039,
2440
+ IfcSurfaceStyleRefraction = 1040,
2441
+ IfcSurfaceStyleRendering = 1041,
2442
+ IfcSurfaceStyleShading = 1042,
2443
+ IfcSurfaceStyleWithTextures = 1043,
2444
+ IfcSurfaceTexture = 1044,
2445
+ IfcSweptAreaSolid = 1045,
2446
+ IfcSweptDiskSolid = 1046,
2447
+ IfcSweptDiskSolidPolygonal = 1047,
2448
+ IfcSweptSurface = 1048,
2449
+ IfcSwitchingDevice = 1049,
2450
+ IfcSwitchingDeviceType = 1050,
2451
+ IfcSwitchingDeviceTypeEnum = 1051,
2452
+ IfcSystem = 1052,
2453
+ IfcSystemFurnitureElement = 1053,
2454
+ IfcSystemFurnitureElementType = 1054,
2455
+ IfcSystemFurnitureElementTypeEnum = 1055,
2456
+ IfcTable = 1056,
2457
+ IfcTableColumn = 1057,
2458
+ IfcTableRow = 1058,
2459
+ IfcTank = 1059,
2460
+ IfcTankType = 1060,
2461
+ IfcTankTypeEnum = 1061,
2462
+ IfcTask = 1062,
2463
+ IfcTaskDurationEnum = 1063,
2464
+ IfcTaskTime = 1064,
2465
+ IfcTaskTimeRecurring = 1065,
2466
+ IfcTaskType = 1066,
2467
+ IfcTaskTypeEnum = 1067,
2468
+ IfcTelecomAddress = 1068,
2469
+ IfcTemperatureGradientMeasure = 1069,
2470
+ IfcTemperatureRateOfChangeMeasure = 1070,
2471
+ IfcTendon = 1071,
2472
+ IfcTendonAnchor = 1072,
2473
+ IfcTendonAnchorType = 1073,
2474
+ IfcTendonAnchorTypeEnum = 1074,
2475
+ IfcTendonType = 1075,
2476
+ IfcTendonTypeEnum = 1076,
2477
+ IfcTessellatedFaceSet = 1077,
2478
+ IfcTessellatedItem = 1078,
2479
+ IfcText = 1079,
2480
+ IfcTextAlignment = 1080,
2481
+ IfcTextDecoration = 1081,
2482
+ IfcTextFontName = 1082,
2483
+ IfcTextFontSelect = 1083,
2484
+ IfcTextLiteral = 1084,
2485
+ IfcTextLiteralWithExtent = 1085,
2486
+ IfcTextPath = 1086,
2487
+ IfcTextStyle = 1087,
2488
+ IfcTextStyleFontModel = 1088,
2489
+ IfcTextStyleForDefinedFont = 1089,
2490
+ IfcTextStyleTextModel = 1090,
2491
+ IfcTextTransformation = 1091,
2492
+ IfcTextureCoordinate = 1092,
2493
+ IfcTextureCoordinateGenerator = 1093,
2494
+ IfcTextureMap = 1094,
2495
+ IfcTextureVertex = 1095,
2496
+ IfcTextureVertexList = 1096,
2497
+ IfcThermalAdmittanceMeasure = 1097,
2498
+ IfcThermalConductivityMeasure = 1098,
2499
+ IfcThermalExpansionCoefficientMeasure = 1099,
2500
+ IfcThermalResistanceMeasure = 1100,
2501
+ IfcThermalTransmittanceMeasure = 1101,
2502
+ IfcThermodynamicTemperatureMeasure = 1102,
2503
+ IfcTime = 1103,
2504
+ IfcTimeMeasure = 1104,
2505
+ IfcTimeOrRatioSelect = 1105,
2506
+ IfcTimePeriod = 1106,
2507
+ IfcTimeSeries = 1107,
2508
+ IfcTimeSeriesDataTypeEnum = 1108,
2509
+ IfcTimeSeriesValue = 1109,
2510
+ IfcTimeStamp = 1110,
2511
+ IfcTopologicalRepresentationItem = 1111,
2512
+ IfcTopologyRepresentation = 1112,
2513
+ IfcToroidalSurface = 1113,
2514
+ IfcTorqueMeasure = 1114,
2515
+ IfcTransformer = 1115,
2516
+ IfcTransformerType = 1116,
2517
+ IfcTransformerTypeEnum = 1117,
2518
+ IfcTransitionCode = 1118,
2519
+ IfcTransitionCurveSegment2D = 1119,
2520
+ IfcTransitionCurveType = 1120,
2521
+ IfcTranslationalStiffnessSelect = 1121,
2522
+ IfcTransportElement = 1122,
2523
+ IfcTransportElementType = 1123,
2524
+ IfcTransportElementTypeEnum = 1124,
2525
+ IfcTrapeziumProfileDef = 1125,
2526
+ IfcTriangulatedFaceSet = 1126,
2527
+ IfcTriangulatedIrregularNetwork = 1127,
2528
+ IfcTrimmedCurve = 1128,
2529
+ IfcTrimmingPreference = 1129,
2530
+ IfcTrimmingSelect = 1130,
2531
+ IfcTShapeProfileDef = 1131,
2532
+ IfcTubeBundle = 1132,
2533
+ IfcTubeBundleType = 1133,
2534
+ IfcTubeBundleTypeEnum = 1134,
2535
+ IfcTypeObject = 1135,
2536
+ IfcTypeProcess = 1136,
2537
+ IfcTypeProduct = 1137,
2538
+ IfcTypeResource = 1138,
2539
+ IfcUnit = 1139,
2540
+ IfcUnitaryControlElement = 1140,
2541
+ IfcUnitaryControlElementType = 1141,
2542
+ IfcUnitaryControlElementTypeEnum = 1142,
2543
+ IfcUnitaryEquipment = 1143,
2544
+ IfcUnitaryEquipmentType = 1144,
2545
+ IfcUnitaryEquipmentTypeEnum = 1145,
2546
+ IfcUnitAssignment = 1146,
2547
+ IfcUnitEnum = 1147,
2548
+ IfcURIReference = 1148,
2549
+ IfcUShapeProfileDef = 1149,
2550
+ IfcValue = 1150,
2551
+ IfcValve = 1151,
2552
+ IfcValveType = 1152,
2553
+ IfcValveTypeEnum = 1153,
2554
+ IfcVaporPermeabilityMeasure = 1154,
2555
+ IfcVector = 1155,
2556
+ IfcVectorOrDirection = 1156,
2557
+ IfcVertex = 1157,
2558
+ IfcVertexLoop = 1158,
2559
+ IfcVertexPoint = 1159,
2560
+ IfcVibrationIsolator = 1160,
2561
+ IfcVibrationIsolatorType = 1161,
2562
+ IfcVibrationIsolatorTypeEnum = 1162,
2563
+ IfcVirtualElement = 1163,
2564
+ IfcVirtualGridIntersection = 1164,
2565
+ IfcVoidingFeature = 1165,
2566
+ IfcVoidingFeatureTypeEnum = 1166,
2567
+ IfcVolumeMeasure = 1167,
2568
+ IfcVolumetricFlowRateMeasure = 1168,
2569
+ IfcWall = 1169,
2570
+ IfcWallElementedCase = 1170,
2571
+ IfcWallStandardCase = 1171,
2572
+ IfcWallType = 1172,
2573
+ IfcWallTypeEnum = 1173,
2574
+ IfcWarpingConstantMeasure = 1174,
2575
+ IfcWarpingMomentMeasure = 1175,
2576
+ IfcWarpingStiffnessSelect = 1176,
2577
+ IfcWasteTerminal = 1177,
2578
+ IfcWasteTerminalType = 1178,
2579
+ IfcWasteTerminalTypeEnum = 1179,
2580
+ IfcWindow = 1180,
2581
+ IfcWindowLiningProperties = 1181,
2582
+ IfcWindowPanelOperationEnum = 1182,
2583
+ IfcWindowPanelPositionEnum = 1183,
2584
+ IfcWindowPanelProperties = 1184,
2585
+ IfcWindowStandardCase = 1185,
2586
+ IfcWindowStyle = 1186,
2587
+ IfcWindowStyleConstructionEnum = 1187,
2588
+ IfcWindowStyleOperationEnum = 1188,
2589
+ IfcWindowType = 1189,
2590
+ IfcWindowTypeEnum = 1190,
2591
+ IfcWindowTypePartitioningEnum = 1191,
2592
+ IfcWorkCalendar = 1192,
2593
+ IfcWorkCalendarTypeEnum = 1193,
2594
+ IfcWorkControl = 1194,
2595
+ IfcWorkPlan = 1195,
2596
+ IfcWorkPlanTypeEnum = 1196,
2597
+ IfcWorkSchedule = 1197,
2598
+ IfcWorkScheduleTypeEnum = 1198,
2599
+ IfcWorkTime = 1199,
2600
+ IfcZone = 1200,
2601
+ IfcZShapeProfileDef = 1201,
2602
+ UNDEFINED = 1202,
2603
+ Other3DModel = 1203
2541
2604
  }
2542
- export interface CustomSpriteMaterialParameters extends THREE.ShaderMaterialParameters {
2543
- color?: THREE.ColorRepresentation | undefined;
2544
- map?: THREE.Texture | null | undefined;
2545
- alphaMap?: THREE.Texture | null | undefined;
2546
- rotation?: number | undefined;
2547
- sizeAttenuation?: boolean | undefined;
2548
- fog?: boolean | undefined;
2549
- center?: THREE.Vector2 | undefined;
2605
+ export class ModelElementPropertySet {
2606
+ name: string;
2607
+ properties: ModelElementProperty[];
2608
+ type: IfcType;
2550
2609
  }
2551
- export class CustomSpriteMaterial extends CustomMaterial {
2552
- type: string;
2553
- readonly isSpriteMaterial: true;
2554
-
2555
- constructor(parameters?: CustomSpriteMaterialParameters);
2556
- /**
2557
- * @default new THREE.Color( 0xffffff )
2558
- */
2559
- color: THREE.Color;
2560
- /**
2561
- * @default null
2562
- */
2563
- map: THREE.Texture | null;
2564
- /**
2565
- * @default null
2566
- */
2567
- alphaMap: THREE.Texture | null;
2568
- /**
2569
- * @default 0
2570
- */
2571
- rotation: number;
2572
- /**
2573
- * @default true
2574
- */
2575
- sizeAttenuation: boolean;
2576
- /**
2577
- * @default true
2578
- */
2579
- transparent: boolean;
2580
- /**
2581
- * Whether the material is affected by fog. Default is true.
2582
- * @default fog
2583
- */
2584
- fog: boolean;
2585
- /**
2586
- * @default new THREE.Vector2(0.5, 0.5)
2587
- */
2588
- center: THREE.Vector2;
2589
- get resolution(): THREE.Vector2;
2590
- set resolution(value: THREE.Vector2);
2591
- protected refreshUniformsCommon(uniforms: {
2592
- [uniform: string]: THREE.IUniform;
2593
- }, material: CustomSpriteMaterial, renderer: THREE.WebGLRenderer): void;
2594
- protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
2595
- copy(source: CustomSpriteMaterial): this;
2610
+ export class ModelElementProperty {
2611
+ name: string;
2612
+ unit: number;
2613
+ value: ModelElementPropertyValue;
2596
2614
  }
2597
- export class ModelLoadingOptions {
2598
- guid: string;
2599
- isConsolidatedModel?: boolean;
2615
+ export class ModelElementPropertyValue {
2616
+ str_value?: string;
2617
+ int_value?: number;
2618
+ double_value?: number;
2619
+ date_value?: bigint;
2620
+ array_value: Array<string>;
2621
+ decimal_value?: number;
2622
+ guid_value?: string;
2623
+ array_int_value: Array<number>;
2624
+ bool_value?: boolean;
2625
+ get value(): unknown;
2600
2626
  }
2601
2627
  /**
2602
2628
  * This class describes the coordination model. The coordination model contains parts of the model (aka ModelPart).
@@ -2711,12 +2737,41 @@ export class Model {
2711
2737
  */
2712
2738
  getElementProperties(elementId: string, modelPart?: string | ModelPart, version?: bigint): ModelElementPropertySet[];
2713
2739
  }
2740
+ export class EventTypes extends CoreEventTypes {
2741
+ static MODEL_PART_LOADED: string;
2742
+ static MODEL_PART_UNLOADED: string;
2743
+ static VIRTUAL_ORIGIN_CHANGED: string;
2744
+ static SELECTION_CHANGED_EVENT: string;
2745
+ static CAMERA_CHANGE_EVENT: string;
2746
+ static CAMERA_NAVIGATION_MODE_CHANGED_EVENT: string;
2747
+ static RENDER_CLICK_EVENT: string;
2748
+ static RENDER_HOVER_EVENT: string;
2749
+ static RENDER_DOUBLE_CLICK_EVENT: string;
2750
+ }
2751
+ export class ModelPartEvent extends Event {
2752
+ modelPartId: string;
2753
+ }
2754
+ export class VirtualOriginEvent extends Event {
2755
+ virtualOrigin: Point3;
2756
+ delta: Point3;
2757
+ }
2758
+ export class ModelLoadingOptions {
2759
+ guid: string;
2760
+ isConsolidatedModel?: boolean;
2761
+ }
2714
2762
  export let ViewerInstance: Viewer3D;
2715
2763
  export class Viewer3D extends ViewerBase {
2716
2764
  protected _configuration: Viewer3DConfiguration;
2717
2765
  settings: Readonly<ISettings>;
2718
- get navigation(): INavigation;
2719
2766
  events: Readonly<IEventsDispatcher>;
2767
+ /**
2768
+ * Returns general model
2769
+ * @returns { Model } - general model
2770
+ */
2771
+ get model(): Model;
2772
+ get renderView(): IRenderViewer3D;
2773
+ get canvas(): HTMLCanvasElement;
2774
+ get navigation(): INavigation;
2720
2775
  getConfiguration(): Viewer3DConfiguration;
2721
2776
  start(): Promise<number>;
2722
2777
  finish(): void;
@@ -2727,19 +2782,14 @@ export class Viewer3D extends ViewerBase {
2727
2782
  * @param onSuccessCallback
2728
2783
  * @param onErrorCallback
2729
2784
  */
2730
- loadModelPart(buffer: ArrayBuffer, options: ModelLoadingOptions, onSuccessCallback: SuccessCallback, onErrorCallback: ErrorCallback): void;
2785
+ loadModelPart(data: ArrayBuffer | string, options: ModelLoadingOptions, onSuccessCallback: SuccessCallback, onErrorCallback: ErrorCallback): void;
2731
2786
  /**
2732
2787
  * unloads model part from the viewer
2733
2788
  * @param modelPart - model part id or model part instance
2734
2789
  */
2735
2790
  unloadModelPart(modelPart?: string | ModelPart): void;
2736
- /**
2737
- * Returns general model
2738
- * @returns { Model } - general model
2739
- */
2740
- get model(): Model;
2741
- get renderView(): IRenderViewer3D;
2742
- get canvas(): HTMLCanvasElement;
2791
+ setVirtualOrigin(point: Point3): void;
2792
+ getVirtualOrigin(): Point3;
2743
2793
  /**
2744
2794
  * Makes screenshot
2745
2795
  * @param {string} [mimeType=image/png] Image MIME type.
@@ -2749,16 +2799,26 @@ export class Viewer3D extends ViewerBase {
2749
2799
  makeScreenshot(mimeType?: string, quality?: number): Promise<Blob>;
2750
2800
  setThemeFromSettings(): void;
2751
2801
  }
2802
+ export class ViewerToolbar extends Toolbar {
2803
+ }
2752
2804
  export class GuiViewer3D extends Viewer3D {
2753
2805
  loadModelPart(buffer: ArrayBuffer, options: ModelLoadingOptions, onSuccessCallback: SuccessCallback, onErrorCallback: ErrorCallback): void;
2754
2806
  getToolbar(): ViewerToolbar;
2755
2807
  onPostExtensionLoad(extension: ExtensionBase): void;
2756
2808
  protected getToolbarHeight(): number;
2757
2809
  }
2810
+ export abstract class SettingsBase implements ISettings {
2811
+ protected _eventDispatcher: IEventsDispatcher;
2812
+ protected _storage: ISettingsStorage;
2813
+ changeSetting<T>(name: string, value: T, notify?: boolean, providedData?: any): void;
2814
+ getSettingValue<T>(name: string): T;
2815
+ protected abstract getKeyWithPrefix(key: string): string;
2816
+ }
2758
2817
  export type InitializeSuccessCallback = () => void;
2759
2818
  export function coreInitializer(options: InitializerOptions, callback: InitializeSuccessCallback): void;
2760
2819
  export function coreShutdown(): void;
2761
2820
  export function CreateViewer(container: HTMLElement, configuration?: Viewer3DConfiguration): GuiViewer3D;
2821
+ export function CreateBasicViewer(container: HTMLElement, configuration?: Viewer3DConfiguration): Viewer3D;
2762
2822
  /**
2763
2823
  * @param options
2764
2824
  * @param callback
@@ -2889,6 +2949,7 @@ export interface LabelSpriteParameters {
2889
2949
  }
2890
2950
  export class LabelSprite extends THREE.Sprite {
2891
2951
  readonly extraHeightFactor = 1.4;
2952
+ material: CustomSpriteMaterial;
2892
2953
 
2893
2954
  constructor(parameters: LabelSpriteParameters);
2894
2955
  get sizeAttenuation(): boolean;
@@ -2939,10 +3000,12 @@ export class LabelSprite extends THREE.Sprite {
2939
3000
  */
2940
3001
  get textPadding(): THREE.Vector4Tuple;
2941
3002
  set textPadding(value: THREE.Vector4Tuple);
3003
+ raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]): void;
2942
3004
  dispose(): void;
2943
3005
  }
2944
3006
  export interface MeshPointMaterialParameters extends THREE.ShaderMaterialParameters {
2945
3007
  sizeAttenuation?: boolean | undefined;
3008
+ discreteClipping?: boolean | undefined;
2946
3009
  }
2947
3010
  export class MeshPointMaterial extends CustomMaterial {
2948
3011
 
@@ -2950,14 +3013,17 @@ export class MeshPointMaterial extends CustomMaterial {
2950
3013
  /**
2951
3014
  * @default true
2952
3015
  */
2953
- sizeAttenuation: boolean;
3016
+ get discreteClipping(): boolean;
3017
+ set discreteClipping(value: boolean);
2954
3018
  get resolution(): THREE.Vector2;
2955
- set resolution(value: THREE.Vector2);
2956
- protected refreshUniformsCommon(uniforms: {
2957
- [uniform: string]: THREE.IUniform;
2958
- }, material: MeshPointMaterial, renderer: THREE.WebGLRenderer): void;
2959
- protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
3019
+ /**
3020
+ * @default true
3021
+ */
3022
+ sizeAttenuation: boolean;
2960
3023
  copy(source: MeshPointMaterial): this;
3024
+ protected refreshUniforms(uniforms: {
3025
+ [uniform: string]: THREE.IUniform<any>;
3026
+ }, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
2961
3027
  }
2962
3028
  export interface MeshPointParamter {
2963
3029
  point?: THREE.Vector3;
@@ -3019,8 +3085,9 @@ export class Button extends Control {
3019
3085
 
3020
3086
  constructor(id: string);
3021
3087
  setIsChecked(value: boolean): void;
3022
- setState(state: Button.State): boolean;
3023
- getState(): Button.State;
3088
+ setState(state: ControlState.State): boolean;
3089
+ setText(text: string): void;
3090
+ getState(): ControlState.State;
3024
3091
  setIcon(iconClassName: string): void;
3025
3092
  setFromSvgTemlate(template: string): void;
3026
3093
  /**
@@ -3040,16 +3107,71 @@ export class Button extends Control {
3040
3107
  onMouseOut: (event: MouseEvent) => void;
3041
3108
  }
3042
3109
  export namespace Button {
3043
- enum State {
3044
- ACTIVE = 0,
3045
- INACTIVE = 1,
3046
- DISABLED = 2
3047
- }
3048
3110
  enum Event {
3049
3111
  STATE_CHANGED = "Button.StateChanged",
3050
3112
  CLICK = "click"
3051
3113
  }
3052
3114
  }
3115
+ export class SubMenu implements IMenu {
3116
+ readonly controls: IControl[];
3117
+ set selectedIndex(value: number);
3118
+ get selectedIndex(): number;
3119
+ setEnabled(index: number, value: boolean): void;
3120
+ addControl(control: IControl, index?: number): void;
3121
+ removeControl(index?: number): void;
3122
+ clearList(): void;
3123
+ changeControl(item: IControl, index: number): void;
3124
+ getControlsCount(): number;
3125
+ }
3126
+ export class ComboButton extends Control {
3127
+
3128
+ constructor(id: string, selectedIndex?: number);
3129
+ get subMenu(): SubMenu;
3130
+ /**
3131
+ * Override this method to be notified when the user clicks on the button.
3132
+ * @param {MouseEvent} event
3133
+ */
3134
+ onClick: (event: PointerEvent) => void;
3135
+ onOpen: () => void;
3136
+ onClose: () => void;
3137
+ setState(state: ControlState.State): boolean;
3138
+ setText(text: string): void;
3139
+ setFromSvgTemlate(template: string): void;
3140
+ }
3141
+ export class Checkbox {
3142
+
3143
+ constructor(id: string, checked: boolean, disabled: boolean, placeholder: string);
3144
+ get checked(): boolean;
3145
+ set checked(value: boolean);
3146
+ get disabled(): boolean;
3147
+ set disabled(value: boolean);
3148
+ get label(): HTMLLabelElement;
3149
+ onChange(value: boolean): void;
3150
+ createElement(): Element;
3151
+ }
3152
+ interface ISelectItem {
3153
+ text: string;
3154
+ value: string;
3155
+ }
3156
+ export class Select {
3157
+
3158
+ constructor(id: string, items: ISelectItem[], placeholder: string);
3159
+ get select(): HTMLElement;
3160
+ get disabled(): boolean;
3161
+ set disabled(value: boolean);
3162
+ get selectedIndex(): number;
3163
+ set selectedIndex(value: number);
3164
+ get placeholder(): string;
3165
+ set placeholder(value: string);
3166
+ get label(): HTMLElement;
3167
+ get previousSelectedIndex(): number;
3168
+ onChange({ index, value }: {
3169
+ index: any;
3170
+ value: any;
3171
+ }): void;
3172
+ update(array: ISelectItem[], selectedIndex?: number): void;
3173
+ }
3174
+ export {};
3053
3175
  interface ElementClass {
3054
3176
  panelClassName?: string;
3055
3177
  contentClassName?: string;
@@ -3065,13 +3187,13 @@ export class Dialog extends Control {
3065
3187
  setDialogContent(value: HTMLElement): Dialog;
3066
3188
  setHeader(value: HTMLElement): Dialog;
3067
3189
  setCaption(value: string): Dialog;
3068
- setIcon(iconClassName: string): Dialog;
3190
+ setSvgIcon(template: string): Dialog;
3069
3191
  setFooter(value: HTMLElement): Dialog;
3070
3192
  setDialogElementClassNames(value: ElementClass): Dialog;
3071
3193
  setResizable(value: boolean): Dialog;
3072
3194
  setWindowOptions(value: IWindowStateOptions): Dialog;
3073
3195
  setDraggable(value: boolean): Dialog;
3074
- openDialog(): HTMLElement;
3196
+ openDialog(x?: number, y?: number): HTMLElement;
3075
3197
  destroyDialog(): void;
3076
3198
  isDialogShown(): boolean;
3077
3199
  subscribe(fn: (state: boolean) => void): void;