fixed bug with offsetting TextElements.

This commit is contained in:
rachytski 2012-06-01 13:34:24 +04:00 committed by Alex Zolotarev
parent 50dfd74e0b
commit 2f5ce9c786
4 changed files with 10 additions and 7 deletions

View file

@ -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

View file

@ -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;
};

View file

@ -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);

View file

@ -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;
};