diff --git a/drape_frontend/path_text_handle.cpp b/drape_frontend/path_text_handle.cpp index d51040018d..71889aabeb 100644 --- a/drape_frontend/path_text_handle.cpp +++ b/drape_frontend/path_text_handle.cpp @@ -179,7 +179,10 @@ void PathTextContext::Update(ScreenBase const & screen) m2::PointD const pt2d = screen.GtoP(m_globalPivots[i]); if (!screen.IsReverseProjection3d(pt2d)) { - m_centerPointIters.push_back(GetProjectedPoint(m_pixel3dSplines, screen.PtoP3d(pt2d))); + auto projectionIter = GetProjectedPoint(m_pixel3dSplines, screen.PtoP3d(pt2d)); + if (!projectionIter.IsAttached()) + continue; + m_centerPointIters.push_back(projectionIter); m_centerGlobalPivots.push_back(m_globalPivots[i]); } } diff --git a/geometry/spline.cpp b/geometry/spline.cpp index 3ea90bc752..cb9b9e1d94 100644 --- a/geometry/spline.cpp +++ b/geometry/spline.cpp @@ -168,6 +168,11 @@ void Spline::iterator::Attach(Spline const & spl) m_pos = m_spl->m_position[m_index] + m_dir * m_dist; } +bool Spline::iterator::IsAttached() const +{ + return m_spl != nullptr; +} + void Spline::iterator::Advance(double step) { if (step < 0.0) diff --git a/geometry/spline.hpp b/geometry/spline.hpp index 07132fe173..211f5a9d47 100644 --- a/geometry/spline.hpp +++ b/geometry/spline.hpp @@ -29,6 +29,7 @@ public: double GetFullLength() const; size_t GetIndex() const; + bool IsAttached() const; private: friend class Spline;