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

@@ -60,13 +60,13 @@ public:
}
private:
std::tuple<bool, bool, float> readE57Settings() const
std::tuple<bool, bool, double> readE57Settings() const
{
Base::Reference<ParameterGrp> hGrp = App::GetApplication().GetUserParameter()
.GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/Points/E57");
bool useColor = hGrp->GetBool("UseColor", true);
bool checkState = hGrp->GetBool("CheckInvalidState", true);
float minDistance = hGrp->GetFloat("MinDistance", -1.);
double minDistance = hGrp->GetFloat("MinDistance", -1.);
return std::make_tuple(useColor, checkState, minDistance);
}