/* rf4x4.h --- 4x4 matrices and operations on them (single-precision version) */ /* Last edited on 2024-12-05 10:28:22 by stolfi */ #ifndef rf4x4_H #define rf4x4_H #include typedef struct rf4x4_t { float c[4][4]; } rf4x4_t; #endif