From 665c1b3e43a2971057e92a78f9138a2b42b51ac9 Mon Sep 17 00:00:00 2001 From: John Neumeier Date: Sun, 16 Nov 2025 17:17:44 +0000 Subject: [PATCH] matrix.h aktualisiert positionstausch von buffer --- matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix.h b/matrix.h index f0fcf51..5f1e150 100644 --- a/matrix.h +++ b/matrix.h @@ -7,9 +7,9 @@ typedef float MatrixType; // TODO Matrixtyp definieren typedef struct { + MatrixType *buffer; MatrixType rows; MatrixType cols; - MatrixType *buffer; }Matrix;