46 struct CollisionRequest;
94 Eigen::Array<Scalar, N, 1>
dist_;
97 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
110 return (dist_ == other.
dist_).all();
115 return (dist_ != other.
dist_).any();
126 Scalar& sqrDistLowerBound)
const;
142 return width() * width() + height() * height() + depth() * depth();
147 return (dist_.template head<3>() + dist_.template segment<3>(N / 2)) / 2;
157 inline Scalar depth()
const {
return dist_[N / 2 + 2] - dist_[2]; }
KDOP class describes the KDOP collision structures. K is set as the template parameter,...
Definition: kDOP.h:91
#define COAL_DLLAPI
Definition: config.hh:88
#define COAL_THROW_PRETTY(message, exception)
Definition: fwd.hh:64
bool operator==(const KDOP &other) const
Equality operator.
Definition: kDOP.h:109
EIGEN_MAKE_ALIGNED_OPERATOR_NEW KDOP()
Creating kDOP containing nothing.
Vec3s center() const
The (AABB) center.
Definition: kDOP.h:146
KDOP< N > & operator+=(const KDOP< N > &other)
Merge two KDOPs.
KDOP< N > & operator+=(const Vec3s &p)
Merge the point and the KDOP.
Scalar dist(short i) const
Definition: kDOP.h:162
bool overlap(const KDOP< N > &other) const
Check whether two KDOPs overlap.
Scalar width() const
The (AABB) width.
Definition: kDOP.h:151
KDOP(const Vec3s &a, const Vec3s &b)
Creating kDOP containing two points.
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 KDOP< N > &other, const CollisionRequest &request, Scalar &sqrDistLowerBound) const
Check whether two KDOPs overlap.
Scalar volume() const
The (AABB) volume.
Definition: kDOP.h:160
bool inside(const Vec3s &p) const
bool operator!=(const KDOP &other) const
Difference operator.
Definition: kDOP.h:114
Scalar distance(const KDOP< N > &other, Vec3s *P=NULL, Vec3s *Q=NULL) const
The distance between two KDOP<N>. Not implemented.
Scalar size() const
Size of the kDOP (used in BV_Splitter to order two kDOPs)
Definition: kDOP.h:141
Scalar height() const
The (AABB) height.
Definition: kDOP.h:154
Eigen::Array< Scalar, N, 1 > dist_
Origin's distances to N KDOP planes.
Definition: kDOP.h:94
Scalar depth() const
The (AABB) depth.
Definition: kDOP.h:157
KDOP(const Vec3s &v)
Creating kDOP containing only one point.
KDOP< N > operator+(const KDOP< N > &other) const
Create a KDOP by mergin two KDOPs.
Scalar & dist(short i)
Definition: kDOP.h:164
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