Fix wrong point in Radius dim

This commit is contained in:
wandererfan
2018-06-09 19:45:04 -04:00
committed by wmayer
parent 7cb8520a84
commit f571c14487

View File

@@ -667,7 +667,7 @@ private:
arcPoints pts = dvd->getArcPoints();
Base::Vector3d center = pts.center;
center.y = -center.y;
Base::Vector3d arcPoint = pts.midArc;
Base::Vector3d arcPoint = pts.onCurve.first;
arcPoint.y = -arcPoint.y;
center = center + parentPos;
arcPoint = arcPoint + parentPos;