mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
55 lines
653 B
C
55 lines
653 B
C
|
|
#ifndef TEMPEST_MATRIX_H
|
||
|
|
#define TEMPEST_MATRIX_H
|
||
|
|
|
||
|
|
DECLARE_STRUCT(C33Matrix);
|
||
|
|
DECLARE_STRUCT(C34Matrix);
|
||
|
|
DECLARE_STRUCT(C44Matrix);
|
||
|
|
|
||
|
|
struct C33Matrix {
|
||
|
|
float a0;
|
||
|
|
float a1;
|
||
|
|
float a2;
|
||
|
|
float b0;
|
||
|
|
float b1;
|
||
|
|
float b2;
|
||
|
|
float c0;
|
||
|
|
float c1;
|
||
|
|
float c2;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct C34Matrix {
|
||
|
|
float a0;
|
||
|
|
float a1;
|
||
|
|
float a2;
|
||
|
|
float b0;
|
||
|
|
float b1;
|
||
|
|
float b2;
|
||
|
|
float c0;
|
||
|
|
float c1;
|
||
|
|
float c2;
|
||
|
|
float d0;
|
||
|
|
float d1;
|
||
|
|
float d2;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct C44Matrix {
|
||
|
|
float a0;
|
||
|
|
float a1;
|
||
|
|
float a2;
|
||
|
|
float a3;
|
||
|
|
float b0;
|
||
|
|
float b1;
|
||
|
|
float b2;
|
||
|
|
float b3;
|
||
|
|
float c0;
|
||
|
|
float c1;
|
||
|
|
float c2;
|
||
|
|
float c3;
|
||
|
|
float d0;
|
||
|
|
float d1;
|
||
|
|
float d2;
|
||
|
|
float d3;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|