feat(matrix): add C44Matrix::Adjoint

This commit is contained in:
fallenoak 2020-11-29 13:19:28 -06:00
parent 41f85dc8b7
commit 7da043cd47
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
4 changed files with 92 additions and 0 deletions

View file

@ -40,6 +40,7 @@ class C44Matrix {
, d1(d1)
, d2(d2)
, d3(d3) {};
C44Matrix Adjoint() const;
};
#endif