Replies: 1 comment
-
I don't really know how to answer this.
You can try load the DXF file with the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm writing a program right now to get the sectional properties of various extrusions, which are contained in individual .dxf files. One of the things I'd like to do to preprocess the .dxf files is by exploding all blocks. Here's the basic code:
However, I'm getting this error when attempting to do so:
copy process ignored ACDB_TEXTOBJECTCONTEXTDATA_CLASS(#BE50) - this may cause problems in AutoCAD
copy process ignored ACDB_TEXTOBJECTCONTEXTDATA_CLASS(#BF3F) - this may cause problems in AutoCAD
copy process ignored ACDB_TEXTOBJECTCONTEXTDATA_CLASS(#BFB8) - this may cause problems in AutoCAD
copy process ignored ACDB_TEXTOBJECTCONTEXTDATA_CLASS(#BFBF) - this may cause problems in AutoCAD
copy process ignored ACDB_TEXTOBJECTCONTEXTDATA_CLASS(#BFB8) - this may cause problems in AutoCAD
copy process ignored ACDB_TEXTOBJECTCONTEXTDATA_CLASS(#BFBF) - this may cause problems in AutoCAD
When I open up the .dxf in AutoCAD, everything appears correct and everything has been exploded, but when I create geometries in the sectionproperties library I am using unexpected things are happening with the geometry (polylines having been shifted to locations where they shouldn't be, for example). I believe it's related what I'm doing with ezdxf because I haven't had any issues when modifying the files manually. What does this error seem to indicate? Any suggestions for another way to go about this?
Beta Was this translation helpful? Give feedback.
All reactions