43 #include <boost/math/constants/constants.hpp>
47 struct CollisionRequest;
54 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
80 return axes == other.
axes && Tr == other.
Tr &&
81 length[0] == other.
length[0] && length[1] == other.
length[1] &&
96 Scalar& sqrDistLowerBound)
const {
97 sqrDistLowerBound = std::numeric_limits<Scalar>::quiet_NaN();
111 *
this = *
this + other;
120 return (std::sqrt(length[0] * length[0] + length[1] * length[1]) +
138 return (length[0] * length[1] * 2 * radius +
139 4 * boost::math::constants::pi<Scalar>() * radius * radius *
168 Scalar& sqrDistLowerBound);
#define COAL_DLLAPI
Definition: config.hh:88
EIGEN_MAKE_ALIGNED_OPERATOR_NEW Matrix3s axes
Orientation of RSS. axis[i] is the ith column of the orientation matrix for the RSS; it is also the i...
Definition: RSS.h:61
RSS()
 
Definition: RSS.h:73
RSS & operator+=(const RSS &other)
Merge the RSS and another RSS.
Definition: RSS.h:110
RSS operator+(const RSS &other) const
Return the merged RSS of current RSS and the other one.
Scalar radius
Radius of sphere summed with rectangle to form RSS.
Definition: RSS.h:70
bool contain(const Vec3s &p) const
Check whether the RSS contains a point.
Scalar height() const
Height of the RSS.
Definition: RSS.h:131
bool overlap(const RSS &other, RSS &) const
Check collision between two RSS and return the overlap part. For RSS, we return nothing,...
Definition: RSS.h:146
const Vec3s & center() const
The RSS center.
Definition: RSS.h:125
Scalar volume() const
Volume of the RSS.
Definition: RSS.h:137
Vec3s Tr
Origin of the rectangle in RSS.
Definition: RSS.h:64
Scalar size() const
Size of the RSS (used in BV_Splitter to order two RSSs)
Definition: RSS.h:119
Scalar depth() const
Depth of the RSS.
Definition: RSS.h:134
Scalar distance(const Matrix3s &R0, const Vec3s &T0, const kIOS &b1, const kIOS &b2, Vec3s *P=NULL, Vec3s *Q=NULL)
Approximate distance between two kIOS bounding volumes.
Scalar width() const
Width of the RSS.
Definition: RSS.h:128
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.
bool overlap(const RSS &other) const
Check collision between two RSS.
Scalar length[2]
Side lengths of rectangle.
Definition: RSS.h:67
RSS & operator+=(const Vec3s &p)
A simple way to merge the RSS and a point, not compact.
bool operator!=(const RSS &other) const
Difference operator.
Definition: RSS.h:86
bool overlap(const RSS &other, const CollisionRequest &, Scalar &sqrDistLowerBound) const
Not implemented.
Definition: RSS.h:95
Scalar distance(const RSS &other, Vec3s *P=NULL, Vec3s *Q=NULL) const
the distance between two RSS; P and Q, if not NULL, return the nearest points
bool operator==(const RSS &other) const
Equality operator.
Definition: RSS.h:79
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