Added AABBVsAABB function.

This commit is contained in:
William Moberg
2015-12-07 15:59:41 +01:00
parent 8e21b1fe35
commit e8d23f3b3f
2 changed files with 18 additions and 0 deletions
+2
View File
@@ -11,6 +11,8 @@ bool RayAABBIntr(const Ray& ray, const AABB& box);
bool RayVsAABB(const Ray& ray, const AABB& box);
bool RayVsAABB(const Ray& ray, const AABB& box, float& outDistance);
bool AABBVsAABB(const AABB& a, const AABB& b);
bool AABBVsAABBTst(const AABB& a, const AABB& b);
}
#endif