Autocad top/bottom overlapping blocks
how can autocad determine which block is on top between 2 overlapping blocks? Which attribute is that based on?
Can I somehow leverage that information in python using ezdxf when comparing 2 block_refs?
(block_refs is a list that we get by the folllowing code: block_refs = list(doc.query(‘INSERT’))
where doc is the dxf file read by ezdxf.readfile)
Creating a DXF polyline from a list of 3D coordinates
I’m trying to create a 3D polyline from a list of coordinates using EZDXF in Python. I modified this script and it works great. I can import it in Fusion and can see the points in 3D space. The thing is, I would like to make a polyline instead.