forked from organicmaps/organicmaps
Fixed rounding error in the height chart
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
0d1fafee92
commit
f476e68dc6
1 changed files with 2 additions and 2 deletions
|
@ -188,8 +188,8 @@ bool GenerateYAxisChartData(uint32_t height, double minMetersPerPxl,
|
|||
LOG(LERROR, ("metersPerPxl == 0.0"));
|
||||
return false;
|
||||
}
|
||||
|
||||
double const deltaAltPxl = deltaAltM / metersPerPxl;
|
||||
// int avoids double errors which make freeHeightSpacePxl slightly less than zero.
|
||||
int const deltaAltPxl = deltaAltM / metersPerPxl;
|
||||
double const freeHeightSpacePxl = drawHeightPxl - deltaAltPxl;
|
||||
if (freeHeightSpacePxl < 0 || freeHeightSpacePxl > drawHeightPxl)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue