Skip to content

Commit

Permalink
chore: tidy code
Browse files Browse the repository at this point in the history
  • Loading branch information
realstealthninja committed Jun 29, 2024
1 parent 9ce23e2 commit 3045721
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions math/includes/matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ class Matrix {
Matrix(const Matrix& _matrix);
Matrix(const vector3& top,const vector3& middle,const vector3& bottom);

Matrix& operator= (const Matrix& _matrix);

Matrix operator+ (const Matrix& _matrix);
Matrix& operator+= (const Matrix&matrix);
Matrix operator- (const Matrix& _matrix);
Matrix& operator= (const Matrix& _matrix);
Matrix operator+ (const Matrix& _matrix);
Matrix& operator+= (const Matrix& matrix);
Matrix operator- (const Matrix& _matrix);
Matrix& operator-= (const Matrix& _matrix);
Matrix operator* (const Matrix& _matrix);
Matrix operator* (const Matrix& _matrix);
Matrix& operator*= (const Matrix& _matrix);
Matrix transpose();

Expand Down

0 comments on commit 3045721

Please sign in to comment.