mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
feat(matrix): finish C33Matrix implementation
This commit is contained in:
parent
95bbe515dd
commit
258431b08a
2 changed files with 316 additions and 9 deletions
|
|
@ -85,9 +85,12 @@ class C33Matrix {
|
|||
C33Matrix Adjoint() const;
|
||||
C33Matrix Inverse() const;
|
||||
C33Matrix Inverse(float det) const;
|
||||
C33Matrix AffineInverse(const C3Vector& v);
|
||||
C33Matrix AffineInverse(float a);
|
||||
C33Matrix AffineInverse();
|
||||
C33Matrix AffineInverse(const C3Vector& v) const;
|
||||
C33Matrix AffineInverse(float a) const;
|
||||
};
|
||||
|
||||
C33Matrix operator*(const C33Matrix& l, float a);
|
||||
C33Matrix operator*(const C33Matrix& l, const C33Matrix& r);
|
||||
C33Matrix operator/(const C33Matrix& l, float a);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue