| 1944 | } |
| 1945 | |
| 1946 | void FrontendRenderer::CheckIsometryMinScale(ScreenBase const & screen) |
| 1947 | { |
| 1948 | bool const isScaleAllowableIn3d = IsScaleAllowableIn3d(GetCurrentZoom()); |
| 1949 | bool const isIsometry = m_enable3dBuildings && !m_choosePositionMode && isScaleAllowableIn3d; |
| 1950 | if (m_isIsometry != isIsometry) |
| 1951 | { |
| 1952 | m_isIsometry = isIsometry; |
| 1953 | RefreshPivotTransform(screen); |
| 1954 | } |
| 1955 | } |
| 1956 | |
| 1957 | void FrontendRenderer::ResolveZoomLevel(ScreenBase const & screen) |
| 1958 | { |
nothing calls this directly
no test coverage detected