Update dxf.cpp
Fixed wrong DXF scale factor for inches. 1/25.4 was wrongly used,
This commit is contained in:
@@ -194,7 +194,7 @@ double CDxfRead::mm( double value ) const
|
||||
{
|
||||
if(m_measurement_inch)
|
||||
{
|
||||
value *= 0.0393700787401575;
|
||||
value *= 25.4;
|
||||
}
|
||||
|
||||
switch(m_eUnits)
|
||||
|
||||
Reference in New Issue
Block a user