1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 03:29:55 +00:00

Pass Quat and Matrixf by reference

They don't fit into registers so without optimizations they are copied via
stack.
This commit is contained in:
elsid 2024-06-22 14:25:09 +02:00
parent 4873a9fbf3
commit 75d9ab4d57
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -11,7 +11,6 @@
namespace Misc
{
/// Normalizes given angle to the range [-PI, PI]. E.g. PI*3/2 -> -PI/2.
inline double normalizeAngle(double angle)
{
@ -33,11 +32,13 @@ namespace Misc
float z = atan2(forward.x(), forward.y());
return osg::Vec3f(x, 0, z);
}
inline osg::Vec3f toEulerAnglesXZ(osg::Quat quat)
inline osg::Vec3f toEulerAnglesXZ(const osg::Quat& quat)
{
return toEulerAnglesXZ(quat * osg::Vec3f(0, 1, 0));
}
inline osg::Vec3f toEulerAnglesXZ(osg::Matrixf m)
inline osg::Vec3f toEulerAnglesXZ(const osg::Matrixf& m)
{
osg::Vec3f forward(m(1, 0), m(1, 1), m(1, 2));
forward.normalize();
@ -52,11 +53,13 @@ namespace Misc
float z = atan2(forwardZ.x(), forwardZ.y());
return osg::Vec3f(x, y, z);
}
inline osg::Vec3f toEulerAnglesZYX(osg::Quat quat)
inline osg::Vec3f toEulerAnglesZYX(const osg::Quat& quat)
{
return toEulerAnglesZYX(quat * osg::Vec3f(0, 1, 0), quat * osg::Vec3f(0, 0, 1));
}
inline osg::Vec3f toEulerAnglesZYX(osg::Matrixf m)
inline osg::Vec3f toEulerAnglesZYX(const osg::Matrixf& m)
{
osg::Vec3f forward(m(1, 0), m(1, 1), m(1, 2));
osg::Vec3f up(m(2, 0), m(2, 1), m(2, 2));