Update dxf.cpp

Fixed wrong Inch scale factor. 1/25.4 was wrongly used.
This commit is contained in:
Roy-043
2020-10-22 18:15:47 +02:00
committed by Yorik van Havre
parent c0578d2b55
commit 340403f35d

View File

@@ -1772,7 +1772,7 @@ double CDxfRead::mm( double value ) const
{
if(m_measurement_inch)
{
value *= 0.0393700787401575;
value *= 25.4;
}
switch(m_eUnits)