hpp-fcl
2.4.1
HPP fork of FCL -- The Flexible Collision Library
|
Go to the documentation of this file.
46 struct CollisionRequest;
70 return axes == other.
axes && To == other.
To && extent == other.
extent;
77 bool contain(
const Vec3f& p)
const;
99 *
this = *
this + other;
105 OBB operator+(
const OBB& other)
const;
137 const OBB& b2,
const CollisionRequest& request,
bool operator!=(const OBB &other) const
Difference operator.
Definition: OBB.h:74
Matrix3f 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:58
#define HPP_FCL_DLLAPI
Definition: config.hh:88
Vec3f extent
Half dimensions of OBB.
Definition: OBB.h:64
Eigen::Matrix< FCL_REAL, 3, 1 > Vec3f
Definition: data_types.h:66
FCL_REAL volume() const
Volume of the OBB.
Definition: OBB.h:123
FCL_REAL width() const
Width of the OBB.
Definition: OBB.h:114
FCL_REAL depth() const
Depth of the OBB.
Definition: OBB.h:120
FCL_REAL distance(const Matrix3f &R0, const Vec3f &T0, const kIOS &b1, const kIOS &b2, Vec3f *P=NULL, Vec3f *Q=NULL)
Approximate distance between two kIOS bounding volumes.
FCL_REAL height() const
Height of the OBB.
Definition: OBB.h:117
double FCL_REAL
Definition: data_types.h:65
Main namespace.
Definition: broadphase_bruteforce.h:44
bool obbDisjoint(const Matrix3f &B, const Vec3f &T, const Vec3f &a, const Vec3f &b)
FCL_REAL size() const
Size of the OBB (used in BV_Splitter to order two OBBs)
Definition: OBB.h:108
request to the collision algorithm
Definition: collision_data.h:235
OBB()
Definition: OBB.h:66
Oriented bounding box class.
Definition: OBB.h:52
bool operator==(const OBB &other) const
Equality operator.
Definition: OBB.h:69
Vec3f To
Center of OBB.
Definition: OBB.h:61
OBB & operator+=(const OBB &other)
Merge the OBB and another OBB (the result is not compact).
Definition: OBB.h:98
Eigen::Matrix< FCL_REAL, 3, 3 > Matrix3f
Definition: data_types.h:68
bool overlap(const Matrix3f &R0, const Vec3f &T0, const AABB &b1, const AABB &b2)
Check collision between two aabbs, b1 is in configuration (R0, T0) and b2 is in identity.
const Vec3f & center() const
Center of the OBB.
Definition: OBB.h:111