mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
feat(matrix): finish C44Matrix class methods
This commit is contained in:
parent
8b277439af
commit
b1bf396b4a
4 changed files with 661 additions and 181 deletions
|
|
@ -4,6 +4,7 @@
|
|||
#include "tempest/vector/C2Vector.hpp"
|
||||
#include "tempest/vector/C3Vector.hpp"
|
||||
|
||||
class C44Matrix;
|
||||
class C4Quaternion;
|
||||
|
||||
class C33Matrix {
|
||||
|
|
@ -40,6 +41,7 @@ class C33Matrix {
|
|||
, c0(r2.x)
|
||||
, c1(r2.y)
|
||||
, c2(r2.z) {};
|
||||
explicit C33Matrix(const C44Matrix& m);
|
||||
C33Matrix(float a0, float a1, float a2, float b0, float b1, float b2, float c0, float c1, float c2)
|
||||
: a0(a0)
|
||||
, a1(a1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue