From 54fb86f8036a8d9b313ccd2c2037ba0acb4d600b Mon Sep 17 00:00:00 2001 From: John Neumeier Date: Sun, 16 Nov 2025 10:06:08 +0000 Subject: [PATCH] matrix.h aktualisiert MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit buffer als einfachen Zeiger und Änderung der Parameterbezeichnungen --- matrix.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matrix.h b/matrix.h index 915677c..f0fcf51 100644 --- a/matrix.h +++ b/matrix.h @@ -7,9 +7,9 @@ typedef float MatrixType; // TODO Matrixtyp definieren typedef struct { - MatrixType Zeilen; - MatrixType Spalten; - MatrixType **mzgr; + MatrixType rows; + MatrixType cols; + MatrixType *buffer; }Matrix;