You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There're two consecutive "0" lines in the DXF file. DoRead reads the first "0" and jumps into if(!strcmp(m_str, "0")), then reads the next line which is a "0" again. It jumps out of if(!strcmp(m_str, "0")) and reads the next line which is "POLYLINE". It doesn't do anything with POLYLINE because it is outside of if(!strcmp(m_str, "0"))
This is part of my example file. I'm not allowed to post the whole file. This file has two POLYLINE. SEQEND is the end of the previous POLYLINE.
0
SEQEND
5
1328E9
8
0
0
POLYLINE
The text was updated successfully, but these errors were encountered:
There're two consecutive "0" lines in the DXF file. DoRead reads the first "0" and jumps into
if(!strcmp(m_str, "0"))
, then reads the next line which is a "0" again. It jumps out ofif(!strcmp(m_str, "0"))
and reads the next line which is "POLYLINE". It doesn't do anything with POLYLINE because it is outside ofif(!strcmp(m_str, "0"))
This is part of my example file. I'm not allowed to post the whole file. This file has two POLYLINE. SEQEND is the end of the previous POLYLINE.
0
SEQEND
5
1328E9
8
0
0
POLYLINE
The text was updated successfully, but these errors were encountered: