私の目標は、dxf
次のような 3 つの情報を含むファイルからすべての円を取得することですcircumference, X center, Y center
。これまでのところ、円周を取得できます。どうすれば入手できますY & X
か? これは私の現在のコードです:
import sys
import ezdxf
doc = ezdxf.readfile("File.dxf")
msp = doc.modelspace()
for e in msp:
if e.dxftype() == 'CIRCLE':
dc = 2 * math.pi * e.dxf.radius
print('circumference: ' + str(dc))