45 struct CollisionRequest;
52 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
71 return axes == other.
axes && To == other.
To && extent == other.
extent;
89 Scalar& sqrDistLowerBound)
const;
100 *
this = *
this + other;
139 Scalar& sqrDistLowerBound);
#define COAL_DLLAPI
Definition: config.hh:88
bool operator==(const OBB &other) const
Equality operator.
Definition: OBB.h:70
Scalar distance(const OBB &other, Vec3s *P=NULL, Vec3s *Q=NULL) const
Distance between two OBBs, not implemented.
OBB & operator+=(const OBB &other)
Merge the OBB and another OBB (the result is not compact).
Definition: OBB.h:99
bool operator!=(const OBB &other) const
Difference operator.
Definition: OBB.h:75
const Vec3s & center() const
Center of the OBB.
Definition: OBB.h:112
OBB operator+(const OBB &other) const
Return the merged OBB of current OBB and the other one (the result is not compact).
EIGEN_MAKE_ALIGNED_OPERATOR_NEW Matrix3s axes
Orientation of OBB. axis[i] is the ith column of the orientation matrix for the box; it is also the i...
Definition: OBB.h:59
Scalar height() const
Height of the OBB.
Definition: OBB.h:118
Vec3s To
Center of OBB.
Definition: OBB.h:62
Scalar depth() const
Depth of the OBB.
Definition: OBB.h:121
bool overlap(const Matrix3s &R0, const Vec3s &T0, const AABB &b1, const AABB &b2)
Check collision between two aabbs, b1 is in configuration (R0, T0) and b2 is in identity.
KDOP< N > translate(const KDOP< N > &bv, const Vec3s &t)
translate the KDOP BV
bool overlap(const OBB &other, const CollisionRequest &request, Scalar &sqrDistLowerBound) const
Scalar size() const
Size of the OBB (used in BV_Splitter to order two OBBs)
Definition: OBB.h:109
Scalar volume() const
Volume of the OBB.
Definition: OBB.h:124
OBB & operator+=(const Vec3s &p)
A simple way to merge the OBB and a point (the result is not compact).
Scalar width() const
Width of the OBB.
Definition: OBB.h:115
bool overlap(const OBB &other) const
bool contain(const Vec3s &p) const
Check whether the OBB contains a point.
Vec3s extent
Half dimensions of OBB.
Definition: OBB.h:65
OBB()
Definition: OBB.h:67
bool obbDisjoint(const Matrix3s &B, const Vec3s &T, const Vec3s &a, const Vec3s &b)
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
Eigen::Matrix< Scalar, 3, 3 > Matrix3s
Definition: data_types.h:74
request to the collision algorithm
Definition: collision_data.h:311
Oriented bounding box class.
Definition: OBB.h:51