From 78e29455c5cb4acce769498a5a32be6a3c6085b4 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Thu, 8 Dec 2011 16:00:07 +0000 Subject: Fixing up faulty references to class "Point" to "IcePoint" --- Opcode/OPC_BoxBoxOverlap.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Opcode/OPC_BoxBoxOverlap.h') diff --git a/Opcode/OPC_BoxBoxOverlap.h b/Opcode/OPC_BoxBoxOverlap.h index 550ab01..fd39dbb 100644 --- a/Opcode/OPC_BoxBoxOverlap.h +++ b/Opcode/OPC_BoxBoxOverlap.h @@ -16,7 +16,7 @@ * \return true if boxes overlap */ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -inline_ BOOL AABBTreeCollider::BoxBoxOverlap(const Point& ea, const Point& ca, const Point& eb, const Point& cb) +inline_ BOOL AABBTreeCollider::BoxBoxOverlap(const IcePoint& ea, const IcePoint& ca, const IcePoint& eb, const IcePoint& cb) { // Stats mNbBVBVTests++; @@ -65,7 +65,7 @@ inline_ BOOL AABBTreeCollider::BoxBoxOverlap(const Point& ea, const Point& ca, c } //! A dedicated version when one box is constant -inline_ BOOL OBBCollider::BoxBoxOverlap(const Point& extents, const Point& center) +inline_ BOOL OBBCollider::BoxBoxOverlap(const IcePoint& extents, const IcePoint& center) { // Stats mNbVolumeBVTests++; @@ -109,7 +109,7 @@ inline_ BOOL OBBCollider::BoxBoxOverlap(const Point& extents, const Point& cente } //! A special version for 2 axis-aligned boxes -inline_ BOOL AABBCollider::AABBAABBOverlap(const Point& extents, const Point& center) +inline_ BOOL AABBCollider::AABBAABBOverlap(const IcePoint& extents, const IcePoint& center) { // Stats mNbVolumeBVTests++; -- cgit v1.1