From f5e0c8c77e66685f58a5013674c5f74a647d69a5 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 2 Sep 2013 19:51:13 +0200 Subject: cBoundingBox: Only forward collisions are calculated. --- source/BoundingBox.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/BoundingBox.h') diff --git a/source/BoundingBox.h b/source/BoundingBox.h index cfaf6a318..ff9963989 100644 --- a/source/BoundingBox.h +++ b/source/BoundingBox.h @@ -64,11 +64,13 @@ public: /** Returns true if this bounding box is intersected by the line specified by its two points Also calculates the distance along the line in which the intersection occurs (0 .. 1) + Only forward collisions (a_LineCoeff >= 0) are returned. */ bool CalcLineIntersection(const Vector3d & a_Line1, const Vector3d & a_Line2, double & a_LineCoeff, char & a_Face); /** Returns true if the specified bounding box is intersected by the line specified by its two points Also calculates the distance along the line in which the intersection occurs (0 .. 1) and the face hit (BLOCK_FACE_ constants) + Only forward collisions (a_LineCoeff >= 0) are returned. */ static bool CalcLineIntersection(const Vector3d & a_Min, const Vector3d & a_Max, const Vector3d & a_Line1, const Vector3d & a_Line2, double & a_LineCoeff, char & a_Face); -- cgit v1.2.3