mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
added camera
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user