refactor(profile): profiles are now stored in profile/ subdirectory

This commit is contained in:
phaneron 2024-09-08 21:04:31 -04:00
parent 1e1f435c5c
commit c2b96d98b6
100 changed files with 58650 additions and 10 deletions

View file

@ -0,0 +1,55 @@
#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