removed operator since its not even

This commit is contained in:
2024-09-03 22:21:42 +03:00
parent 7bb8dcbb8c
commit bc340b0d24
3 changed files with 1 additions and 27 deletions

View File

@@ -164,20 +164,7 @@ namespace omath
{
Set(0.f);
}
Matrix Matrix::operator*(const Vector3 &vec3) const
{
auto vecmatrix = Matrix(m_rows, 1);
vecmatrix.Set(1.f);
vecmatrix.At(0, 0) = vec3.x;
vecmatrix.At(1, 0) = vec3.y;
vecmatrix.At(2, 0) = vec3.z;
return *this * vecmatrix;
}
Matrix &Matrix::operator=(const Matrix &other)
{
if (this == &other)