Move a bunch of math to cpp files + small fixes

# Conflicts:
#	src/control/CarCtrl.cpp
#	src/math/Matrix.h
#	src/math/Vector2D.h
#	src/math/math.cpp
#	src/render/Skidmarks.cpp
This commit is contained in:
Sergeanur
2020-09-14 20:48:49 +03:00
parent 25a22cc6f2
commit a8a28c1512
13 changed files with 820 additions and 508 deletions

View File

@@ -700,7 +700,7 @@ CGlass::WindowRespondsToExplosion(CEntity *entity, CVector point)
if ( fDistToGlass < 10.0f )
{
distToGlass.Normalise(0.3f);
distToGlass *= (0.3f / fDistToGlass); // normalise
WindowRespondsToCollision(object, 10000.0f, distToGlass, object->GetPosition(), true);
}
else