merge develop into feature

--HG--
branch : feature
This commit is contained in:
Ronan Le Tiec 2018-03-30 09:27:42 +02:00
commit 5b181cc3b8

View File

@ -130,7 +130,7 @@ VEllipticalArc VEllipticalArc::Rotate(QPointF originPoint, qreal degrees, const
QTransform t = d->m_transform;
t.translate(originPoint.x(), originPoint.y());
t.rotate(-degrees);
t.rotate(IsFlipped() ? degrees : -degrees);
t.translate(-originPoint.x(), -originPoint.y());
VEllipticalArc elArc(VAbstractArc::GetCenter(), GetRadius1(), GetRadius2(), VAbstractArc::GetStartAngle(),