summaryrefslogtreecommitdiffstats
path: root/src/BoundingBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/BoundingBox.h')
-rw-r--r--src/BoundingBox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/BoundingBox.h b/src/BoundingBox.h
index 928e62afa..8ea758ac7 100644
--- a/src/BoundingBox.h
+++ b/src/BoundingBox.h
@@ -57,10 +57,10 @@ public:
/// Returns true if a boundingbox specified by a_Min and a_Max is inside this bounding box
bool IsInside(const Vector3d & a_Min, const Vector3d & a_Max);
- /// Returns true if the specified point is inside the bounding box specified by its min/max corners
+ /// Returns true if the specified point is inside the bounding box specified by its min / max corners
static bool IsInside(const Vector3d & a_Min, const Vector3d & a_Max, const Vector3d & a_Point);
- /// Returns true if the specified point is inside the bounding box specified by its min/max corners
+ /// Returns true if the specified point is inside the bounding box specified by its min / max corners
static bool IsInside(const Vector3d & a_Min, const Vector3d & a_Max, double a_X, double a_Y, double a_Z);
/** Returns true if this bounding box is intersected by the line specified by its two points