ifc-reader-2 1.2.2 → 1.2.4

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.
@@ -1,4 +1,4 @@
1
- import { Matrix4 } from "three";
1
+ import { Matrix4 } from 'three';
2
2
  export interface IfcProperties {
3
3
  [expressID: number]: {
4
4
  [attribute: string]: any;
@@ -29,6 +29,7 @@ export declare class ViralutionIFCModel {
29
29
  Elements: ViralutionElement[];
30
30
  Data: ViralutionInformation;
31
31
  CameraData: ViralutionCamera;
32
+ Translation: number[];
32
33
  }
33
34
  export declare class ViralutionInformation {
34
35
  Data: {
@@ -1,5 +1,5 @@
1
- import { IfcFragmentSettings } from "./models/ifc-fragment-settings";
2
- import { ViralutionIFCModel } from "./base-types";
1
+ import { IfcFragmentSettings } from './models/ifc-fragment-settings';
2
+ import { ViralutionIFCModel } from './base-types';
3
3
  export declare class IFCReader {
4
4
  private _webIfc;
5
5
  settings: IfcFragmentSettings;
@@ -8,7 +8,7 @@ export declare class IFCReader {
8
8
  private _propertyExporter;
9
9
  private _materials;
10
10
  private _customWasmPath;
11
- static readonly release = "2.3.8";
11
+ static readonly release = "3.1.2";
12
12
  constructor(autoSetWasm?: boolean, customWasmPath?: string);
13
13
  setup(): Promise<void>;
14
14
  private autoSetWasm;