@bldrs-ai/conway 1.330.1053 → 1.331.1060
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiled/examples/browser-bundled.cjs +1 -1
- package/compiled/examples/cli-bundled.cjs +1 -1
- package/compiled/examples/validator-bundled.cjs +1 -1
- package/compiled/src/compat/web-ifc/ap214_properties.d.ts +21 -0
- package/compiled/src/compat/web-ifc/ap214_properties.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ap214_properties.js +51 -0
- package/compiled/src/compat/web-ifc/ifc2x4.d.ts +818 -0
- package/compiled/src/compat/web-ifc/ifc2x4.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc2x4.js +1003 -0
- package/compiled/src/compat/web-ifc/ifc2x4_helper.d.ts +14433 -0
- package/compiled/src/compat/web-ifc/ifc2x4_helper.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc2x4_helper.js +34985 -0
- package/compiled/src/compat/web-ifc/ifc_api.d.ts +267 -0
- package/compiled/src/compat/web-ifc/ifc_api.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc_api.js +544 -0
- package/compiled/src/compat/web-ifc/ifc_api.smoke.test.d.ts +2 -0
- package/compiled/src/compat/web-ifc/ifc_api.smoke.test.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc_api.smoke.test.js +88 -0
- package/compiled/src/compat/web-ifc/ifc_api_model_passthrough.d.ts +17 -0
- package/compiled/src/compat/web-ifc/ifc_api_model_passthrough.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc_api_model_passthrough.js +1 -0
- package/compiled/src/compat/web-ifc/ifc_api_model_passthrough_factory.d.ts +17 -0
- package/compiled/src/compat/web-ifc/ifc_api_model_passthrough_factory.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc_api_model_passthrough_factory.js +61 -0
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ap214.d.ts +205 -0
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ap214.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ap214.js +958 -0
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.d.ts +200 -0
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc_api_proxy_ifc.js +1162 -0
- package/compiled/src/compat/web-ifc/ifc_properties.d.ts +29 -0
- package/compiled/src/compat/web-ifc/ifc_properties.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/ifc_properties.js +205 -0
- package/compiled/src/compat/web-ifc/index.d.ts +2 -0
- package/compiled/src/compat/web-ifc/index.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/index.js +17 -0
- package/compiled/src/compat/web-ifc/properties.d.ts +14 -0
- package/compiled/src/compat/web-ifc/properties.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/properties.js +27 -0
- package/compiled/src/compat/web-ifc/properties_passthrough.d.ts +15 -0
- package/compiled/src/compat/web-ifc/properties_passthrough.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/properties_passthrough.js +1 -0
- package/compiled/src/compat/web-ifc/shim_schema_mapping.d.ts +7 -0
- package/compiled/src/compat/web-ifc/shim_schema_mapping.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/shim_schema_mapping.js +792 -0
- package/compiled/src/compat/web-ifc/types-map.d.ts +7 -0
- package/compiled/src/compat/web-ifc/types-map.d.ts.map +1 -0
- package/compiled/src/compat/web-ifc/types-map.js +957 -0
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -1
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
import { ConwayGeometry, FileHandlerFunction as FileHandlerCallback } from "../../index.js";
|
|
2
|
+
import * as glmatrix from "gl-matrix";
|
|
3
|
+
import { IfcApiModelPassthrough } from "./ifc_api_model_passthrough.js";
|
|
4
|
+
import { Properties } from "./properties.js";
|
|
5
|
+
export * from "./ifc2x4.js";
|
|
6
|
+
export declare const UNKNOWN = 0;
|
|
7
|
+
export declare const STRING = 1;
|
|
8
|
+
export declare const LABEL = 2;
|
|
9
|
+
export declare const ENUM = 3;
|
|
10
|
+
export declare const REAL = 4;
|
|
11
|
+
export declare const REF = 5;
|
|
12
|
+
export declare const EMPTY = 6;
|
|
13
|
+
export declare const SET_BEGIN = 7;
|
|
14
|
+
export declare const SET_END = 8;
|
|
15
|
+
export declare const LINE_END = 9;
|
|
16
|
+
export interface Loadersettings {
|
|
17
|
+
COORDINATE_TO_ORIGIN: boolean;
|
|
18
|
+
USE_FAST_BOOLS: boolean;
|
|
19
|
+
CIRCLE_SEGMENTS_LOW?: number;
|
|
20
|
+
CIRCLE_SEGMENTS_MEDIUM?: number;
|
|
21
|
+
CIRCLE_SEGMENTS_HIGH?: number;
|
|
22
|
+
BOOL_ABORT_THRESHOLD?: number;
|
|
23
|
+
}
|
|
24
|
+
export interface Vector<T> {
|
|
25
|
+
get(index: number): T;
|
|
26
|
+
push(parameter: T): void;
|
|
27
|
+
size(): number;
|
|
28
|
+
}
|
|
29
|
+
export interface Color {
|
|
30
|
+
x: number;
|
|
31
|
+
y: number;
|
|
32
|
+
z: number;
|
|
33
|
+
w: number;
|
|
34
|
+
}
|
|
35
|
+
export interface PlacedGeometry {
|
|
36
|
+
color: Color;
|
|
37
|
+
geometryExpressID: number;
|
|
38
|
+
flatTransformation: Array<number>;
|
|
39
|
+
}
|
|
40
|
+
export interface FlatMesh {
|
|
41
|
+
geometries: Vector<PlacedGeometry>;
|
|
42
|
+
expressID: number;
|
|
43
|
+
}
|
|
44
|
+
export interface RawLineData {
|
|
45
|
+
ID: number;
|
|
46
|
+
type: number;
|
|
47
|
+
arguments: any[];
|
|
48
|
+
}
|
|
49
|
+
export interface LoaderError {
|
|
50
|
+
type: string;
|
|
51
|
+
message: string;
|
|
52
|
+
expressID: number;
|
|
53
|
+
ifcType: number;
|
|
54
|
+
}
|
|
55
|
+
export interface IfcGeometry {
|
|
56
|
+
GetVertexData(): number;
|
|
57
|
+
GetVertexDataSize(): number;
|
|
58
|
+
GetIndexData(): number;
|
|
59
|
+
GetIndexDataSize(): number;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* @return {number} current time in ms
|
|
63
|
+
*/
|
|
64
|
+
export declare function ms(): number;
|
|
65
|
+
export type LocateFileHandlerFn = FileHandlerCallback;
|
|
66
|
+
/**
|
|
67
|
+
* IfcAPI - Web-IFC API Shim Implementation for full read functionality
|
|
68
|
+
*/
|
|
69
|
+
export declare class IfcAPI {
|
|
70
|
+
wasmModule: undefined | any;
|
|
71
|
+
fs: undefined | any;
|
|
72
|
+
wasmPath: string;
|
|
73
|
+
isWasmPathAbsolute: boolean;
|
|
74
|
+
settings: Loadersettings | undefined;
|
|
75
|
+
globalModelIDCounter: number;
|
|
76
|
+
models: Map<number, IfcApiModelPassthrough>;
|
|
77
|
+
conwaywasm: ConwayGeometry;
|
|
78
|
+
_isCoordinated: boolean;
|
|
79
|
+
linearScalingFactor: number;
|
|
80
|
+
identity: number[];
|
|
81
|
+
NormalizeMat: glmatrix.mat4;
|
|
82
|
+
properties: Properties;
|
|
83
|
+
/**
|
|
84
|
+
* Get the passthrough for a particular model id.
|
|
85
|
+
*
|
|
86
|
+
* @param modelID
|
|
87
|
+
* @return {IfcApiModelPassthrough | undefined}
|
|
88
|
+
*/
|
|
89
|
+
getPassthrough(modelID: number): IfcApiModelPassthrough | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* Initializes the WASM module (WebIFCWasm), required before using any other functionality.
|
|
92
|
+
*
|
|
93
|
+
* @param customLocateFileHandler An optional locateFile function that let's
|
|
94
|
+
* you override the path from which the wasm module is loaded.
|
|
95
|
+
*/
|
|
96
|
+
Init(customLocateFileHandler?: LocateFileHandlerFn): Promise<void>;
|
|
97
|
+
/**
|
|
98
|
+
* Opens a model and returns a modelID number
|
|
99
|
+
*
|
|
100
|
+
* @param data containing IFC data (bytes)
|
|
101
|
+
* @param settings settings for loading the model
|
|
102
|
+
* @return {number} model ID
|
|
103
|
+
*/
|
|
104
|
+
OpenModel(data: Uint8Array, settings?: Loadersettings): number;
|
|
105
|
+
/**
|
|
106
|
+
* Creates a new model and returns a modelID number (unimplemented)
|
|
107
|
+
*
|
|
108
|
+
* @param settings settings for generating data the model
|
|
109
|
+
* @return {number} model ID
|
|
110
|
+
*/
|
|
111
|
+
CreateModel(settings?: Loadersettings): number;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @param modelID
|
|
115
|
+
* @return {Uint8Array} unimplemented
|
|
116
|
+
*/
|
|
117
|
+
ExportFileAsIFC(modelID: number): Uint8Array;
|
|
118
|
+
/**
|
|
119
|
+
* Opens a model and returns a modelID number
|
|
120
|
+
*
|
|
121
|
+
* @param modelID handle retrieved by OpenModel, model must not be closed
|
|
122
|
+
* @param geometryExpressID containing IFC data (bytes)
|
|
123
|
+
* @return {IfcGeometry}
|
|
124
|
+
*/
|
|
125
|
+
GetGeometry(modelID: number, geometryExpressID: number): IfcGeometry;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @param modelID
|
|
129
|
+
* @param expressID
|
|
130
|
+
* @param flatten
|
|
131
|
+
* @return {any} line data
|
|
132
|
+
*/
|
|
133
|
+
GetLine(modelID: number, expressID: number, flatten?: boolean): string | void;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @param modelID
|
|
137
|
+
* @return {Vector<LoaderError>}
|
|
138
|
+
*/
|
|
139
|
+
GetAndClearErrors(modelID: number): Vector<LoaderError>;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @param modelID
|
|
143
|
+
* @param lineObject
|
|
144
|
+
*/
|
|
145
|
+
WriteLine(modelID: number, lineObject: any): void;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @param modelID
|
|
149
|
+
* @param line
|
|
150
|
+
* @return {string | undefined}
|
|
151
|
+
*/
|
|
152
|
+
FlattenLine(modelID: number, line: any): void;
|
|
153
|
+
/**
|
|
154
|
+
*
|
|
155
|
+
* @param modelID
|
|
156
|
+
* @param expressID
|
|
157
|
+
* @return {RawLineData}
|
|
158
|
+
*/
|
|
159
|
+
GetRawLineData(modelID: number, expressID: number): RawLineData;
|
|
160
|
+
/**
|
|
161
|
+
* Get all line ids with the matching type
|
|
162
|
+
*
|
|
163
|
+
* @param modelID
|
|
164
|
+
* @param type
|
|
165
|
+
* @return {Vector<number>} The matching express IDs
|
|
166
|
+
*/
|
|
167
|
+
GetLineIDsWithType(modelID: number, type: number): Vector<number>;
|
|
168
|
+
/**
|
|
169
|
+
*
|
|
170
|
+
* @param modelID
|
|
171
|
+
* @return {Vector<number>}
|
|
172
|
+
*/
|
|
173
|
+
GetAllLines(modelID: number): Vector<number>;
|
|
174
|
+
/**
|
|
175
|
+
*
|
|
176
|
+
* @param modelID
|
|
177
|
+
* @param transformationMatrix
|
|
178
|
+
*/
|
|
179
|
+
setGeometryTransformation(modelID: number, transformationMatrix: Array<number>): void;
|
|
180
|
+
/**
|
|
181
|
+
*
|
|
182
|
+
* @param modelID
|
|
183
|
+
* @return {Array<number>}
|
|
184
|
+
*/
|
|
185
|
+
GetCoordinationMatrix(modelID: number): Array<number>;
|
|
186
|
+
/**
|
|
187
|
+
*
|
|
188
|
+
* @param ptr
|
|
189
|
+
* @param size
|
|
190
|
+
* @return {Float32Array}
|
|
191
|
+
*/
|
|
192
|
+
GetVertexArray(ptr: number, size: number): Float32Array;
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* @param ptr
|
|
196
|
+
* @param size
|
|
197
|
+
* @return {Uint32Array}
|
|
198
|
+
*/
|
|
199
|
+
GetIndexArray(ptr: number, size: number): Uint32Array;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @param heap
|
|
203
|
+
* @param startPtr
|
|
204
|
+
* @param sizeBytes
|
|
205
|
+
* @return {Float32Array | Uint32Array}
|
|
206
|
+
*/
|
|
207
|
+
getSubArray(heap: Float32Array | Uint32Array, startPtr: number, sizeBytes: number): Float32Array | Uint32Array;
|
|
208
|
+
/**
|
|
209
|
+
* Closes a model and frees all related memory
|
|
210
|
+
*
|
|
211
|
+
* @param modelID Model handle retrieved by OpenModel, model must not be closed
|
|
212
|
+
*/
|
|
213
|
+
CloseModel(modelID: number): void;
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @param modelID
|
|
217
|
+
* @param meshCallback
|
|
218
|
+
*/
|
|
219
|
+
StreamAllMeshes(modelID: number, meshCallback: (mesh: FlatMesh) => void): void;
|
|
220
|
+
/**
|
|
221
|
+
*
|
|
222
|
+
* @param modelID
|
|
223
|
+
* @param types
|
|
224
|
+
* @param meshCallback
|
|
225
|
+
*/
|
|
226
|
+
StreamAllMeshesWithTypes(modelID: number, types: Array<number>, meshCallback: (mesh: FlatMesh) => void): void;
|
|
227
|
+
/**
|
|
228
|
+
* Checks if a specific model ID is open or closed
|
|
229
|
+
*
|
|
230
|
+
* @param modelID handle retrieved by OpenModel
|
|
231
|
+
* @return {boolean}
|
|
232
|
+
*/
|
|
233
|
+
IsModelOpen(modelID: number): boolean;
|
|
234
|
+
/**
|
|
235
|
+
* Load all geometry in a model
|
|
236
|
+
*
|
|
237
|
+
* @param modelID handle retrieved by OpenModel
|
|
238
|
+
* @return {Vector<FlatMesh>}
|
|
239
|
+
*/
|
|
240
|
+
LoadAllGeometry(modelID: number): Vector<FlatMesh>;
|
|
241
|
+
/**
|
|
242
|
+
* Load geometry for a single element
|
|
243
|
+
*
|
|
244
|
+
* @param modelID handle retrieved by OpenModel
|
|
245
|
+
* @param expressID express ID of flat mesh
|
|
246
|
+
* @return {FlatMesh}
|
|
247
|
+
*/
|
|
248
|
+
GetFlatMesh(modelID: number, expressID: number): FlatMesh;
|
|
249
|
+
/**
|
|
250
|
+
* Creates a map between element ExpressIDs and GlobalIDs.
|
|
251
|
+
* Each element has two entries, (ExpressID -> GlobalID) and (GlobalID -> ExpressID).
|
|
252
|
+
*
|
|
253
|
+
* @param modelID handle retrieved by OpenModel
|
|
254
|
+
*/
|
|
255
|
+
CreateIfcGuidToExpressIdMapping(modelID: number): void;
|
|
256
|
+
/**
|
|
257
|
+
*
|
|
258
|
+
* @param path new wasm path
|
|
259
|
+
* @param absolute is the path absolute?
|
|
260
|
+
*/
|
|
261
|
+
SetWasmPath(path: string, absolute?: boolean): void;
|
|
262
|
+
/** The conway version string like "0.23.940-WebMT" */
|
|
263
|
+
getConwayVersion(): string;
|
|
264
|
+
/** @see https://bldrs-ai.github.io/conway/classes/statistics_statistics.Statistics.html */
|
|
265
|
+
getStatistics(modelID: number): any;
|
|
266
|
+
}
|
|
267
|
+
//# sourceMappingURL=ifc_api.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ifc_api.d.ts","sourceRoot":"","sources":["../../../../src/compat/web-ifc/ifc_api.ts"],"names":[],"mappings":"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"}
|