diff --git a/etk/math/Matrix4.h b/etk/math/Matrix4.h index ac54f14..c35bb8a 100644 --- a/etk/math/Matrix4.h +++ b/etk/math/Matrix4.h @@ -121,7 +121,7 @@ namespace etk /***************************************************** * + operator *****************************************************/ - Matrix4 operator+ (const Matrix4& obj) { + Matrix4 operator+ (const Matrix4& obj) const { Matrix4 tmpp(*this); tmpp += obj; return tmpp; @@ -138,7 +138,7 @@ namespace etk /***************************************************** * - operator *****************************************************/ - Matrix4 operator- (const Matrix4& obj) { + Matrix4 operator- (const Matrix4& obj) const { Matrix4 tmpp(*this); tmpp += obj; return tmpp; @@ -172,7 +172,7 @@ namespace etk /***************************************************** * * operator *****************************************************/ - Matrix4 operator* (const Matrix4& obj) { + Matrix4 operator* (const Matrix4& obj) const { Matrix4 tmpp(*this); tmpp *= obj; return tmpp;