forked from organicmaps/organicmaps
fixed bug with offsetting TextElements.
This commit is contained in:
parent
50dfd74e0b
commit
2f5ce9c786
4 changed files with 10 additions and 7 deletions
|
@ -77,10 +77,10 @@ namespace yg
|
|||
drawTextImpl(m_glyphLayout, screen, m, false, desc, yg::maxDepth);
|
||||
}
|
||||
|
||||
void PathTextElement::offset(m2::PointD const & offs)
|
||||
void PathTextElement::setPivot(m2::PointD const & pivot)
|
||||
{
|
||||
TextElement::offset(offs);
|
||||
m_glyphLayout.setPivot(pivot());
|
||||
TextElement::setPivot(pivot);
|
||||
m_glyphLayout.setPivot(pivot);
|
||||
}
|
||||
|
||||
int PathTextElement::visualRank() const
|
||||
|
|
|
@ -29,7 +29,7 @@ namespace yg
|
|||
|
||||
int visualRank() const;
|
||||
|
||||
void offset(m2::PointD const & offs);
|
||||
void setPivot(m2::PointD const & pivot);
|
||||
|
||||
OverlayElement * clone(math::Matrix<double, 3, 3> const & m) const;
|
||||
};
|
||||
|
|
|
@ -282,9 +282,12 @@ namespace yg
|
|||
}
|
||||
}
|
||||
|
||||
void StraightTextElement::offset(m2::PointD const & offs)
|
||||
void StraightTextElement::setPivot(m2::PointD const & pv)
|
||||
{
|
||||
TextElement::offset(offs);
|
||||
m2::PointD oldPv = pivot();
|
||||
m2::PointD offs = pv - oldPv;
|
||||
|
||||
TextElement::setPivot(pv);
|
||||
|
||||
for (unsigned i = 0; i < m_glyphLayouts.size(); ++i)
|
||||
m_glyphLayouts[i].setPivot(m_glyphLayouts[i].pivot() + offs);
|
||||
|
|
|
@ -35,7 +35,7 @@ namespace yg
|
|||
|
||||
int visualRank() const;
|
||||
|
||||
void offset(m2::PointD const & offs);
|
||||
void setPivot(m2::PointD const & pv);
|
||||
|
||||
OverlayElement * clone(math::Matrix<double, 3, 3> const & m) const;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue