Fix scaling bug in vrml2_box.cpp

This commit is contained in:
Cirilo Bernardo 2016-02-22 20:00:23 +11:00
parent 684e41358a
commit 0d14fd0f9b
1 changed files with 3 additions and 0 deletions

View File

@ -142,6 +142,9 @@ bool WRL2BOX::Read( WRLPROC& proc, WRL2BASE* aTopNode )
return false;
}
// for legacy KiCad support we interpret units as 0.1 inch
size *= 2.54;
}
else
{