summaryrefslogtreecommitdiffstats
path: root/src/render/Skidmarks.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-09-14 19:48:49 +0200
committerSergeanur <s.anureev@yandex.ua>2020-09-14 20:10:23 +0200
commita8a28c151273e5d1a33707b61304e27762eb6378 (patch)
treef6b62a86f7d4496ee405279092fe029545694748 /src/render/Skidmarks.cpp
parentMerge pull request #702 from Sergeanur/VC/MusicManager (diff)
downloadre3-a8a28c151273e5d1a33707b61304e27762eb6378.tar
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.gz
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.bz2
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.lz
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.xz
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.zst
re3-a8a28c151273e5d1a33707b61304e27762eb6378.zip
Diffstat (limited to 'src/render/Skidmarks.cpp')
-rw-r--r--src/render/Skidmarks.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/render/Skidmarks.cpp b/src/render/Skidmarks.cpp
index f2a66db1..0251878a 100644
--- a/src/render/Skidmarks.cpp
+++ b/src/render/Skidmarks.cpp
@@ -215,10 +215,11 @@ CSkidmarks::RegisterOne(uintptr id, const CVector &pos, float fwdX, float fwdY,
aSkidmarks[i].m_pos[aSkidmarks[i].m_last] = pos;
- CVector2D dist = aSkidmarks[i].m_pos[aSkidmarks[i].m_last] - aSkidmarks[i].m_pos[aSkidmarks[i].m_last-1];
- dist.Normalise();
+ CVector2D right(aSkidmarks[i].m_pos[aSkidmarks[i].m_last].y - aSkidmarks[i].m_pos[aSkidmarks[i].m_last - 1].y,
+ aSkidmarks[i].m_pos[aSkidmarks[i].m_last - 1].x - aSkidmarks[i].m_pos[aSkidmarks[i].m_last].x);
+
+ right.Normalise();
fwd.Normalise();
- CVector2D right(dist.y, -dist.x);
float turn = DotProduct2D(fwd, right);
turn = Abs(turn) + 1.0f;
aSkidmarks[i].m_sideX[aSkidmarks[i].m_last] = right.x * turn * 0.125f;