Skip to content
Snippets Groups Projects
Commit a9d83b77 authored by Dennis Mannhart's avatar Dennis Mannhart Committed by Dennis Mannhart
Browse files

ControlMath: math optimization

parent d94778dd
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,7 @@ matrix::Vector2f constrainXY(const matrix::Vector2f &v0, const matrix::Vector2f
matrix::Vector2f u1 = v1.normalized();
float m = u1.dot(v0);
float c = v0.length() * v0.length() - max * max;
float c = v0.dot(v0) - max * max;
float s = -m + sqrtf(m * m - c);
return v0 + u1 * s;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment