Skip to content

Commit

Permalink
Merge pull request #29 from RyugaRyuzaki/develop
Browse files Browse the repository at this point in the history
fixed build 3
  • Loading branch information
RyugaRyuzaki authored Jun 14, 2024
2 parents 0d47312 + b38c5ca commit ccb3a3a
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 8 deletions.
11 changes: 7 additions & 4 deletions src/BimModel/src/system/element/ElementLocation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ import {IFC4X3 as IFC} from "web-ifc";

import {IElement, IElementType} from "clay";
import {LocationArc, LocationLine, LocationPoint} from "../geometry";
import {BaseParameterGroup, LevelParameter} from "./Parameter";
import {
BaseParameterGroup,
LevelParameter,
QsetWallCommon,
QsetBeamBaseQuantity,
QsetColumnBaseQuantity,
} from "./Parameter";
import {IBimElementType} from "@ProjectComponent/types";
import {ICategory} from "./types";
import {IAttribute} from "@BimModel/src/system";
Expand All @@ -13,9 +19,6 @@ import {
ProjectComponent,
MaterialComponent,
} from "@BimModel/src";
import {QsetWallCommon} from "./Parameter/wall";
import {QsetBeamBaseQuantity} from "./Parameter/beam";
import {QsetColumnBaseQuantity} from "./Parameter/column/QsetColumnBaseQuantity";

export class ElementLocation implements Disposable {
groupParameter: {[uuid: string]: BaseParameterGroup} = {};
Expand Down
10 changes: 6 additions & 4 deletions src/BimModel/src/system/element/ElementUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ import {
} from "@ProjectComponent/src";
import {ElementLocation} from "./ElementLocation";
import {currentLevelSignal} from "@BimModel/src/Signals";
import {PsetBeamLevelCommon} from "./Parameter/beam";
import {PsetColumnLevelCommon} from "./Parameter/column/PsetColumnLevelCommon";
import {Components} from "@BimModel/src/Components";
import {PsetWallLevelCommon} from "./Parameter/wall";
import {
PsetBeamLevelCommon,
PsetColumnLevelCommon,
PsetWallLevelCommon,
} from "./Parameter";
import {Components} from "@BimModel/src";

export class ElementUtils {
static createWallInstance(
Expand Down
3 changes: 3 additions & 0 deletions src/BimModel/src/system/element/Parameter/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
export * from "./BaseParameter";
export * from "./BaseParameterGroup";
export * from "./LevelParameter";
export * from "./pset-beam";
export * from "./pset-column";
export * from "./pset-wall";
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./PsetColumnLevelCommon";
export * from "./QsetColumnBaseQuantity";

0 comments on commit ccb3a3a

Please sign in to comment.