Skip to content

Commit

Permalink
Merge pull request #25 from RyugaRyuzaki/develop
Browse files Browse the repository at this point in the history
fixed build
  • Loading branch information
RyugaRyuzaki committed Jun 14, 2024
2 parents a5488d6 + 1ca5cc9 commit 493a332
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/BimModel/src/system/element/ElementLocation.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
import * as THREE from "three";
import {IFC4X3 as IFC} from "web-ifc";

import {IElement, IElementType, Model} from "clay";
import {IElement, IElementType} from "clay";
import {LocationArc, LocationLine, LocationPoint} from "../geometry";
import {BaseParameterGroup, LevelParameter} from "./Parameter";
import {
BaseParameterGroup,
LevelParameter,
QsetWallCommon,
QsetBeamBaseQuantity,
QsetColumnBaseQuantity,

Check failure on line 11 in src/BimModel/src/system/element/ElementLocation.ts

View workflow job for this annotation

GitHub Actions / deploy

'"./Parameter"' has no exported member named 'QsetColumnBaseQuantity'. Did you mean 'QsetBeamBaseQuantity'?
} from "./Parameter";
import {IBimElementType} from "@ProjectComponent/types";
import {ICategory} from "./types";
import {QsetWallCommon} from "./Parameter/wall/QsetWallCommon";
import {QsetBeamBaseQuantity} from "./Parameter/beam";
import {IAttribute} from "@BimModel/src/system";
import {
Disposable,
Components,
ProjectComponent,
MaterialComponent,
} from "@BimModel/src";
import {QsetColumnBaseQuantity} from "./Parameter/column";

export class ElementLocation implements Disposable {
groupParameter: {[uuid: string]: BaseParameterGroup} = {};
Expand Down

0 comments on commit 493a332

Please sign in to comment.