mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
25 lines
478 B
C++
25 lines
478 B
C++
#ifndef TEMPEST_MATRIX_C_44MATRIX_HPP
|
|
#define TEMPEST_MATRIX_C_44MATRIX_HPP
|
|
|
|
class C44Matrix {
|
|
public:
|
|
// Member variables
|
|
float a0 = 1.0f;
|
|
float a1 = 0.0f;
|
|
float a2 = 0.0f;
|
|
float a3 = 0.0f;
|
|
float b0 = 0.0f;
|
|
float b1 = 1.0f;
|
|
float b2 = 0.0f;
|
|
float b3 = 0.0f;
|
|
float c0 = 0.0f;
|
|
float c1 = 0.0f;
|
|
float c2 = 1.0f;
|
|
float c3 = 0.0f;
|
|
float d0 = 0.0f;
|
|
float d1 = 0.0f;
|
|
float d2 = 0.0f;
|
|
float d3 = 1.0f;
|
|
};
|
|
|
|
#endif
|