From b76c5683dba49decbe64b8550ee72766f29d269c Mon Sep 17 00:00:00 2001 From: josh Date: Tue, 30 Jan 2024 21:29:42 -0500 Subject: [PATCH] Remove Vector2 * --- include/J3ML/LinearAlgebra/Matrix3x3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/J3ML/LinearAlgebra/Matrix3x3.h b/include/J3ML/LinearAlgebra/Matrix3x3.h index 58e3e8b..590b33f 100644 --- a/include/J3ML/LinearAlgebra/Matrix3x3.h +++ b/include/J3ML/LinearAlgebra/Matrix3x3.h @@ -132,7 +132,7 @@ namespace LinearAlgebra { Vector2 Transform(const Vector2& rhs) const; Vector3 Transform(const Vector3& rhs) const; - Vector2 operator * (const Vector2& rhs) const; + Vector3 operator * (const Vector3& rhs) const; Matrix3x3 operator * (const Matrix3x3& rhs) const;