matrix.h Matrxtyp definiert

This commit is contained in:
maxgrf 2025-11-15 03:51:18 +01:00
parent 113cb5adb3
commit 89e99abf8e

View File

@ -6,6 +6,11 @@
typedef float MatrixType;
// TODO Matrixtyp definieren
typedef struct {
MatrixType *buffer;
unsigned int rows;
unsigned int cols;
} Matrix;
Matrix createMatrix(unsigned int rows, unsigned int cols);