summaryrefslogtreecommitdiffstats
path: root/src/collision/Collision.cpp
diff options
context:
space:
mode:
authorshfil <filip.gawin@zoho.com>2021-01-24 12:35:45 +0100
committerGitHub <noreply@github.com>2021-01-24 12:35:45 +0100
commitca1de3cd173efc3e7c838e0dfb167269850e76e0 (patch)
treefa1460831e7028fc5f28b8cd28982af46e46aeec /src/collision/Collision.cpp
parentmission cleanup fix (diff)
downloadre3-ca1de3cd173efc3e7c838e0dfb167269850e76e0.tar
re3-ca1de3cd173efc3e7c838e0dfb167269850e76e0.tar.gz
re3-ca1de3cd173efc3e7c838e0dfb167269850e76e0.tar.bz2
re3-ca1de3cd173efc3e7c838e0dfb167269850e76e0.tar.lz
re3-ca1de3cd173efc3e7c838e0dfb167269850e76e0.tar.xz
re3-ca1de3cd173efc3e7c838e0dfb167269850e76e0.tar.zst
re3-ca1de3cd173efc3e7c838e0dfb167269850e76e0.zip
Diffstat (limited to '')
-rw-r--r--src/collision/Collision.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/collision/Collision.cpp b/src/collision/Collision.cpp
index 45a15628..bead5183 100644
--- a/src/collision/Collision.cpp
+++ b/src/collision/Collision.cpp
@@ -2099,12 +2099,12 @@ CCollision::DistToLine(const CVector *l0, const CVector *l1, const CVector *poin
float dot = DotProduct(*point - *l0, *l1 - *l0);
// Between 0 and len we're above the line.
// if not, calculate distance to endpoint
- if(dot <= 0.0f)
- return (*point - *l0).Magnitude();
- if(dot >= lensq)
- return (*point - *l1).Magnitude();
+ if(dot <= 0.0f) return (*point - *l0).Magnitude();
+ if(dot >= lensq) return (*point - *l1).Magnitude();
// distance to line
- return Sqrt((*point - *l0).MagnitudeSqr() - dot*dot/lensq);
+ float distSqr = (*point - *l0).MagnitudeSqr() - dot * dot / lensq;
+ if(distSqr <= 0.f) return 0.f;
+ return Sqrt(distSqr);
}
// same as above but also return the point on the line
@@ -2571,4 +2571,4 @@ CCollision::DrawColModel_Coloured(const CMatrix &mat, const CColModel &colModel,
RwRenderStateSet(rwRENDERSTATEVERTEXALPHAENABLE, (void*)FALSE);
RwRenderStateSet(rwRENDERSTATEZWRITEENABLE, (void*)TRUE);
RwRenderStateSet(rwRENDERSTATEZTESTENABLE, (void*)TRUE);
-} \ No newline at end of file
+}