-
-
Notifications
You must be signed in to change notification settings - Fork 161
Changes Default Property Values #840
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
|
Commit 8ddb6e5 should resolve the following errors: TODO: Consider renaming the class |
|
Commit ca483a4 should resolve the following errors: |
|
Commit 4ab1fd4 should resolve the following errors: |
|
To simplify the location of the errors, I would recommend to create an empty dwg and open it with bricsCad, let me know the results. |
|
The remaing erros are just these 5: |
|
Last 3 commits should resolve the following errors: |
|
Hello. |
|
I've been trying to locate the variable "TILEMODELIGHTSYNCH" but I couldn't find it, there are some sections in the dwg file that are not fully read because they are not rellevant for the file at all, al least for I'll try to focus on the main problem, the Value: Object improperly read: (3D), I'm guessing that is because the For the other issue "Value: Is not externally dependent on an Xref, but XRefBlockId ((4)) is not Null" not sure why is complaining about this one for a text style. |
|
I've noticed that ClipType is set to Rectangular, which takes only the 2 first vertices to draw a box, try to change the vertices to: raster.ClipBoundaryVertices.Add(new XY(0, 0));
raster.ClipBoundaryVertices.Add(new XY(1, 1));Or change the ClipType to polygonal, see if this does something. |
|
|
The same happens with different configurations: |
|
After 05515c9, this is the result: |
Description
This PR changes the Header Value for 3 values that were beeing incorrectly interpreted by BricsCad.
The image shows the error list from BricsCad prompt before and after the code changes.

Related Issues / Pull Requests