mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-08 01:04:09 +00:00
implemented CVector2D::NormaliseSafe for SkidMarks
This commit is contained in:
parent
fd229ed47e
commit
6ef7924e01
3 changed files with 22 additions and 6 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue