added camera

This commit is contained in:
2024-08-27 10:28:07 +03:00
parent c662504291
commit db57dfd5f9
8 changed files with 153 additions and 6 deletions

View File

@@ -120,6 +120,12 @@ namespace omath
return outMat;
}
Matrix & Matrix::operator*=(const Matrix &other)
{
*this = *this * other;
return *this;
}
Matrix Matrix::operator*(const float f) const
{
auto out = *this;