| 17 | { |
| 18 | |
| 19 | bool IsScaleAllowableIn3d(int scale) |
| 20 | { |
| 21 | int minScale = scales::GetMinAllowableIn3dScale(); |
| 22 | if (df::VisualParams::Instance().GetVisualScale() <= 1.0) |
| 23 | --minScale; |
| 24 | if (GetPlatform().IsTablet()) |
| 25 | ++minScale; |
| 26 | return scale >= minScale; |
| 27 | } |
| 28 | |
| 29 | double CalculateScale(m2::RectD const & pixelRect, m2::RectD const & localRect) |
| 30 | { |
no test coverage detected