diff --git a/drape_frontend/user_event_stream.cpp b/drape_frontend/user_event_stream.cpp index 0f7c91dbbd..64169b209a 100644 --- a/drape_frontend/user_event_stream.cpp +++ b/drape_frontend/user_event_stream.cpp @@ -372,22 +372,6 @@ bool UserEventStream::SetCenter(m2::PointD const & center, int zoom, bool isAnim ScreenBase const & currentScreen = GetCurrentScreen(); ScreenBase screen = currentScreen; - bool finishIn2d = false; - bool finishIn3d = false; - if (zoom != kDoNotChangeZoom) - { - bool const isScaleAllowableIn3d = IsScaleAllowableIn3d(zoom); - finishIn3d = m_discardedFOV > 0.0 && isScaleAllowableIn3d; - finishIn2d = currentScreen.isPerspective() && !isScaleAllowableIn3d; - - if (finishIn3d) - screen.ApplyPerspective(m_discardedAngle, m_discardedAngle, m_discardedFOV); - else if (finishIn2d) - screen.ResetPerspective(); - } - - double const scale3d = screen.GetScale3d(); - if (zoom == kDoNotChangeZoom) { m2::AnyRectD const r = GetTargetRect(); @@ -398,6 +382,7 @@ bool UserEventStream::SetCenter(m2::PointD const & center, int zoom, bool isAnim { angle = screen.GlobalRect().Angle(); + double scale3d = kDefault3dScale;//screen.CalculateScale3d(screen.CalculatePerspectiveAngle()); localRect = df::GetRectForDrawScale(zoom, center); localRect.Scale(scale3d); @@ -413,23 +398,6 @@ bool UserEventStream::SetCenter(m2::PointD const & center, int zoom, bool isAnim localRect.Inflate(localRect.SizeX() * 0.5 / aspectRatio, 0.0); } - if (screen.isPerspective()) - { - double const centerOffset3d = localRect.SizeY() * (1.0 - 1.0 / (scale3d * cos(screen.GetRotationAngle()))) * 0.5; - targetCenter = targetCenter.Move(centerOffset3d, angle.cos(), -angle.sin()); - } - - if (finishIn2d || finishIn3d) - { - double const scale = currentScreen.PixelRect().SizeX() / currentScreen.PixelRectIn3d().SizeX(); - double const scaleToCurrent = finishIn2d ? scale : 1.0 / scale3d; - - double const currentGSizeY = localRect.SizeY() * scaleToCurrent; - targetCenter = targetCenter.Move((currentGSizeY - localRect.SizeY()) * 0.5, - angle.cos(), -angle.sin()); - localRect.Scale(scaleToCurrent); - } - return SetRect(m2::AnyRectD(targetCenter, angle, localRect), isAnim); } diff --git a/geometry/screenbase.cpp b/geometry/screenbase.cpp index 01e55db869..a6ee53227b 100644 --- a/geometry/screenbase.cpp +++ b/geometry/screenbase.cpp @@ -154,7 +154,6 @@ void ScreenBase::SetFromRect2d(m2::AnyRectD const & glbRect) m_Org = glbRect.GlobalCenter(); UpdateDependentParameters(); - UpdatePerspectiveParameters(); /* m2::PointD g_target(0.0, -glbRect.GetLocalRect().SizeY() * scale / vScale / 2.0); g_target.Rotate(glbRect.Angle().val());