We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 188d044 commit 325e0faCopy full SHA for 325e0fa
packages/fragments/src/Importers/IfcImporter/index.ts
@@ -52,6 +52,7 @@ export class IfcImporter {
52
classes = {
53
elements: new DataSet<number>([...ifcClasses.elements]),
54
abstract: new DataSet<number>([
55
+ ...ifcClasses.units,
56
...ifcClasses.base,
57
...ifcClasses.materials,
58
...ifcClasses.properties,
packages/fragments/src/Importers/IfcImporter/src/classes.ts
@@ -1,6 +1,13 @@
1
import * as WEBIFC from "web-ifc";
2
3
export const ifcClasses = {
4
+ units: new Set([
5
+ WEBIFC.IFCUNITASSIGNMENT,
6
+ WEBIFC.IFCSIUNIT,
7
+ WEBIFC.IFCNAMEDUNIT,
8
+ WEBIFC.IFCDERIVEDUNIT,
9
+ WEBIFC.IFCMONETARYUNIT,
10
+ ]),
11
base: new Set([
12
WEBIFC.IFCPROJECT,
13
WEBIFC.IFCSITE,
0 commit comments