forked from mozman/ezdxf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
- issue [#978](https://github.com/mozman/ezdxf/issues/978) | ||
- {{issue 978}} | ||
- [[ACAD_PROXY_ENTITY]] does not yield [[ProxyGraphic]] |
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
- The [[ProxyGraphic]] **is not stored** in subclass [[AcDbEntity]] as in every other entity | ||
- The [[ProxyGraphic]] is stored in subclass [[AcDbProxyEntity]] | ||
- There are multiple binary chunks with group code 310 and a preceeding lenght tag | ||
- Each chunk has a different group code for the length tag | ||
- The assumption is: | ||
- The [[ProxyGraphic]] chunk has a group code of 92 or 160 for the length tag - dependent on the DXF version | ||
- 92 for DXF2010 and earlier | ||
- 160 for DXF R2013 and later | ||
- This assumption is **wrong** | ||
- issue [#978](https://github.com/mozman/ezdxf/issues/978) | ||
- a DXF R2010 file with group code 160 for the length tag | ||
- The solution is to try both group codes and the first binary chunk will be taken as [[ProxyGraphic]] | ||
## Proxy Graphic | ||
- The [[ProxyGraphic]] **is not stored** in subclass [[AcDbEntity]] as in every other entity | ||
- The [[ProxyGraphic]] is stored in subclass [[AcDbProxyEntity]] | ||
- There are multiple binary chunks with group code 310 and a preceding length tag | ||
- Each chunk has a different group code for the length tag | ||
- My assumption was: | ||
- The [[ProxyGraphic]] chunk has a group code of 92 or 160 for the length tag - dependent on the DXF version | ||
- 92 for DXF2010 and earlier | ||
- 160 for DXF R2013 and later | ||
- This assumption was **wrong** | ||
- {{issue 978}} | ||
- DXF R2010 file with group code 160 as length tag for the [[ProxyGraphic]] binary chunk | ||
- The solution is to try both group codes for the length tag and the first existing binary chunk will be taken as [[ProxyGraphic]] |
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