| 137 | } |
| 138 | |
| 139 | bool PathTextContext::GetPivot(size_t textIndex, m2::PointD & pivot, m2::Spline::iterator & centerPointIter) const |
| 140 | { |
| 141 | if (textIndex >= m_centerGlobalPivots.size()) |
| 142 | return false; |
| 143 | |
| 144 | pivot = m_centerGlobalPivots[textIndex]; |
| 145 | centerPointIter = m_centerPointIters[textIndex]; |
| 146 | return true; |
| 147 | } |
| 148 | |
| 149 | void PathTextContext::Update(ScreenBase const & screen) |
| 150 | { |
no test coverage detected