27 Oct
2016
27 Oct
'16
4:27 a.m.
Hey guys,
there seems to be a bug in dxf-import.py in line 443:
w = 90.0/25.4*vals[groups['370']][0]/00.0
This always crashed with a division by 0. A quick look reveals, this has to crash. I found a bugfix online which makes this line:
w = 90.0/25.4*vals[groups['370']][0]/100.0
That helps and provides the desired results. The question is if this is the desired value or if the developer intended a different number?
Cheers, Timo