mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Common: add convenience function to convert a Quaternion to a Matrix44
This commit is contained in:
@ -402,6 +402,7 @@ class Matrix44
|
||||
public:
|
||||
static Matrix44 Identity();
|
||||
static Matrix44 FromMatrix33(const Matrix33& m33);
|
||||
static Matrix44 FromQuaternion(const Quaternion& q);
|
||||
static Matrix44 FromArray(const std::array<float, 16>& arr);
|
||||
|
||||
static Matrix44 Translate(const Vec3& vec);
|
||||
|
Reference in New Issue
Block a user