Fix precission of conversion constant to double
This commit is contained in:
parent
7979ff9961
commit
b8a2dbef4b
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ namespace GUI
|
|||
{
|
||||
|
||||
const double ObjectManipulation::in_to_mm = 25.4;
|
||||
const double ObjectManipulation::mm_to_in = 0.0393700787;
|
||||
const double ObjectManipulation::mm_to_in = 1 / ObjectManipulation::in_to_mm;
|
||||
|
||||
// Helper function to be used by drop to bed button. Returns lowest point of this
|
||||
// volume in world coordinate system.
|
||||
|
|
Loading…
Reference in a new issue