Merge remote-tracking branch 'origin/master' into Standalone

This commit is contained in:
Sergeanur 2020-04-17 16:31:43 +03:00
commit 941c50ee25
3 changed files with 22 additions and 6 deletions

View file

@ -4,6 +4,19 @@
// TODO: move more stuff into here
void
CVector2D::Normalise(void)
{
float sq = MagnitudeSqr();
assert(sq != 0.0f); // just be safe here
//if(sq > 0.0f){
float invsqrt = RecipSqrt(sq);
x *= invsqrt;
y *= invsqrt;
//}else
// x = 1.0f;
}
void
CMatrix::SetRotate(float xAngle, float yAngle, float zAngle)
{