1
0
Fork 0

include/Spectre/Math/Matrix3.h: Add inverse()

This commit is contained in:
Henrik Hautakoski 2023-08-18 17:54:19 +02:00
parent 910bad0fb7
commit d8db86e40c
2 changed files with 27 additions and 0 deletions

View file

@ -78,6 +78,9 @@ struct Matrix3
// Transpose matrix.
Matrix3<T> transpose() const;
// Inverse
Matrix3<T> inverse() const;
};
template <typename T>