-
-
Notifications
You must be signed in to change notification settings - Fork 172
Issue 221 aec architecture objects #969
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # src/ACadSharp/DxfSubclassMarker.cs # src/ACadSharp/IO/DWG/DwgStreamReaders/DwgObjectReader.cs
| /// </summary> | ||
| public XYZ EndPoint { get; set; } = XYZ.Zero; | ||
| public XYZ Normal { get; internal set; } | ||
| public double Height { get; internal set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Normal and Height should be able to be modified by the user, the internal can be removed.
We can leave it for the other properties like style by now and come back later.
|
|
||
| this.readCommonNonEntityData(template); | ||
|
|
||
| try |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This try is not needed, the Read() method already has the failsafe in place.
| /// Object name: AEC_CLEANUP_GROUP | ||
| /// </remarks> | ||
| [DxfName("AEC_CLEANUP_GROUP")] | ||
| [DxfSubClass("AecDbCleanupGroup")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of using literals, the 2 attributes should use DxfFileToken and DxfSubclassMarker.
Same for AecWallStyle.
|
Great job with this one 👌! This may be the start to use the AEC Objects. |
|
General review notes:
|
|
I tried analyzing these remaining bytes for their content. Currently it is not usable without having wall positions, width or any other meaningful property. |
|
For the writers, remember to add the new objects to the following methods:
Thanks! |
Description
Two years later I tried again.
Created basic structure.
Found handles to wallStyle and cleanupGroup.
BinRecord handle not found.
Tried analyzing BinRecord but no success so far. Unsure if this is related at all.
Tasks done in this PR
Related Issues / Pull Requests
#221
Notes for reviewer