This commit is contained in:
eray orçunus 2019-08-23 01:44:38 +03:00
parent ed9ab6c55f
commit e5df72a1e9
8 changed files with 764 additions and 127 deletions

View file

@ -40,6 +40,12 @@ CMatrix::Rotate(float x, float y, float z)
*this = rot * *this;
}
void
CMatrix::RotateX(float x)
{
Rotate(x, 0.0f, 0.0f);
}
void
CMatrix::Reorthogonalise(void)
{