Commit 5f65292d authored by Craig Watson's avatar Craig Watson

Fix for qAcos occasionally returning nan for values of (not quite) -1 or +1

parent 1a075c05
...@@ -443,7 +443,8 @@ qreal UBGeometryUtils::angle(const QPointF& p1, const QPointF& p2, const QPointF ...@@ -443,7 +443,8 @@ qreal UBGeometryUtils::angle(const QPointF& p1, const QPointF& p2, const QPointF
if (a == 0 || c == 0) if (a == 0 || c == 0)
beta = 3.14159; beta = 3.14159;
else else
beta = qAcos((a*a - b*b + c*c)/(2*a*c)); beta = qAcos(std::max(-1.0, std::min(1.0, (a*a - b*b + c*c)/(2*a*c))));
return 180.* beta/3.14159; return 180.* beta/3.14159;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment