mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Common: add convenience function to convert a Quaternion to a Matrix44
This commit is contained in:
@ -269,6 +269,11 @@ Matrix44 Matrix44::FromMatrix33(const Matrix33& m33)
|
||||
return mtx;
|
||||
}
|
||||
|
||||
Matrix44 Matrix44::FromQuaternion(const Quaternion& q)
|
||||
{
|
||||
return FromMatrix33(Matrix33::FromQuaternion(q));
|
||||
}
|
||||
|
||||
Matrix44 Matrix44::FromArray(const std::array<float, 16>& arr)
|
||||
{
|
||||
Matrix44 mtx;
|
||||
|
Reference in New Issue
Block a user