All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IntersectionOrientedBox2.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 
6 #include "Geometry.h"
7 
8 #include "VectorMath.h"
9 
10 namespace Eegeo
11 {
12  namespace Geometry
13  {
14  bool Intersect(const OrientedBox2& boxA, const OrientedBox2& boxB);
15 
16  bool Intersect(const OrientedBox2& obb, const AxisAlignedBox2& aabb);
17 
18  bool Contains(const OrientedBox2& obb, const v2& p);
19  }
20 }