Points: for E57 reader move from float to double

This commit is contained in:
wmayer
2023-08-22 12:43:50 +02:00
committed by wwmayer
parent 43ec243292
commit 5d585de259
3 changed files with 8 additions and 8 deletions

View File

@@ -1726,11 +1726,11 @@ private:
};
}
E57Reader::E57Reader(const bool& Color, const bool& State, const float& Distance)
E57Reader::E57Reader(bool Color, bool State, double Distance)
: useColor{Color}
, checkState{State}
, minDistance{Distance}
{
useColor = Color;
checkState = State;
minDistance = Distance;
}
void E57Reader::read(const std::string& filename)