matrix.h aktualisiert

positionstausch von buffer
This commit is contained in:
John Neumeier 2025-11-16 17:17:44 +00:00
parent 54fb86f803
commit 665c1b3e43

View File

@ -7,9 +7,9 @@ typedef float MatrixType;
// TODO Matrixtyp definieren // TODO Matrixtyp definieren
typedef struct { typedef struct {
MatrixType *buffer;
MatrixType rows; MatrixType rows;
MatrixType cols; MatrixType cols;
MatrixType *buffer;
}Matrix; }Matrix;