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 dc731f9 commit 2e9a276Copy full SHA for 2e9a276
packages/fragments/src/Importers/IfcImporter/src/geometry/ifc-file-reader.ts
@@ -254,10 +254,10 @@ export class IfcFileReader {
254
// Force ifc annotations to be processed last because
255
// they can cause some problems with coordination matrix
256
// e.g. when there is an annotation at the 0,0
257
- if(toProcess.includes(WEBIFC.IFCANNOTATION)) {
+ if (toProcess.includes(WEBIFC.IFCANNOTATION)) {
258
toProcess.splice(toProcess.indexOf(WEBIFC.IFCANNOTATION), 1);
259
+ toProcess.push(WEBIFC.IFCANNOTATION);
260
}
- toProcess.push(WEBIFC.IFCANNOTATION);
261
262
const categoryPercentage = 0.5 / toProcess.length;
263
for (const [index, category] of toProcess.entries()) {
0 commit comments