From 44b726f3f65f6cc2fb7cf7a0e0d45c84c7da5a48 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Fri, 27 Dec 2024 23:22:25 +0100 Subject: [PATCH] Added some cool comments and deleted a stupid one --- matrices.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matrices.h b/matrices.h index 5099a5a..9c57e72 100644 --- a/matrices.h +++ b/matrices.h @@ -16,7 +16,7 @@ class Matrix{ inline Matrix Swap(const Matrix*); - inline void Multiply(float); + inline void Multiply(float); // TODO : Make this return a Matrix inline Matrix Multiply(const Matrix*); inline void Hadamard(const Matrix*); @@ -31,12 +31,12 @@ class Matrix{ inline Matrix Transpose(); - // --- Operators - // Assign + // Operators inline Matrix operator=(const Matrix*); inline Matrix operator+(const Matrix*); inline Matrix operator-(const Matrix*); inline Matrix operator*(const Matrix*); + // TODO : Add float parameters for these // Constructors inline Matrix(int, int); -- 2.47.2