admin管理员组

文章数量:1203219

I tried to explode() by using insert.explode() to take apart the entity and record the information inside. But I found the entity missing.

python
for virtual_entity in entity.explode():
                if virtual_entity.dxftype() == "ARC":
                    dxf = virtual_entity.dxf
                    pass
                if not self.loadEntity(virtual_entity, depth + 1, insert_name, insert_center_point, rotate_angle):
                    return False

The entities I parsed out, such as the ARC entities that exploded out, I found that they did not match with the auto_cad software. Originally there were four in cad, but the analysis only came out two.

本文标签: pythonezdxf explode() on the entity only finds 2 out of 4 ARC from the original AutoCADStack Overflow