我正在尝试使用finally
从DXF
提取弧参数。
到目前为止,我已经能够提取Ezdxf
,center
,start_angle
和end_angle
。
有没有办法找出弧的方向,即顺时针还是逆时针?
我正在使用代码:
radius
对于一条弧线,我得到的只是:
dwg_file = ezdxf.readfile("drawing.DXF")
modelspace = dwg_file.modelspace()
for entity in modelspace:
dxf_type = entity.dxftype()
print " Entity attributes ", entity.dxfattribs()
答案 0 :(得分:1)
ARC始终围绕逆向矢量逆时针旋转,默认情况下为(0,0,1),这是2D弧线的常见情况。