-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
starting BIM folder and refactor Door namespace
- Loading branch information
1 parent
a5febf9
commit 209214b
Showing
8 changed files
with
38 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
Elements.Serialization.IFC/src/IFCToHypar/Converters/FromIfcDoorConverter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace Elements.BIM | ||
{ | ||
public enum DoorOpeningSide | ||
{ | ||
[System.Runtime.Serialization.EnumMember(Value = @"Undefined")] | ||
Undefined, | ||
[System.Runtime.Serialization.EnumMember(Value = @"Left Hand")] | ||
LeftHand, | ||
[System.Runtime.Serialization.EnumMember(Value = @"Right Hand")] | ||
RightHand, | ||
[System.Runtime.Serialization.EnumMember(Value = @"Double Door")] | ||
DoubleDoor | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace Elements.BIM | ||
{ | ||
public enum DoorOpeningType | ||
{ | ||
[System.Runtime.Serialization.EnumMember(Value = @"Undefined")] | ||
Undefined, | ||
[System.Runtime.Serialization.EnumMember(Value = @"Single Swing")] | ||
SingleSwing, | ||
[System.Runtime.Serialization.EnumMember(Value = @"Double Swing")] | ||
DoubleSwing | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters