38 #ifndef COAL_BVH_UTILITY_H
39 #define COAL_BVH_UTILITY_H
46 template <
typename BV>
86 unsigned int* indices,
unsigned int n,
98 unsigned int* indices,
unsigned int n,
110 unsigned int* indices,
unsigned int n,
A class describing the AABB collision structure, which is a box in 3D space determined by two diagona...
Definition: AABB.h:55
A class describing the bounding hierarchy of a mesh model or a point cloud model (which is viewed as ...
Definition: BVH_model.h:321
KDOP class describes the KDOP collision structures. K is set as the template parameter,...
Definition: kDOP.h:91
Triangle with 3 indices for points.
Definition: data_types.h:121
#define COAL_DLLAPI
Definition: config.hh:88
Main namespace.
Definition: broadphase_bruteforce.h:44
void circumCircleComputation(const Vec3s &a, const Vec3s &b, const Vec3s &c, Vec3s ¢er, Scalar &radius)
Compute the center and radius for a triangle's circumcircle.
void getCovariance(Vec3s *ps, Vec3s *ps2, Triangle *ts, unsigned int *indices, unsigned int n, Matrix3s &M)
Compute the covariance matrix for a set or subset of points. if ts = null, then indices refer to poin...
void getRadiusAndOriginAndRectangleSize(Vec3s *ps, Vec3s *ps2, Triangle *ts, unsigned int *indices, unsigned int n, const Matrix3s &axes, Vec3s &origin, Scalar l[2], Scalar &r)
Compute the RSS bounding volume parameters: radius, rectangle size and the origin,...
Scalar maximumDistance(Vec3s *ps, Vec3s *ps2, Triangle *ts, unsigned int *indices, unsigned int n, const Vec3s &query)
Compute the maximum distance from a given center point to a point cloud.
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
void getExtentAndCenter(Vec3s *ps, Vec3s *ps2, Triangle *ts, unsigned int *indices, unsigned int n, Matrix3s &axes, Vec3s ¢er, Vec3s &extent)
Compute the bounding volume extent and center for a set or subset of points, given the BV axises.
BVHModel< BV > * BVHExtract(const BVHModel< BV > &model, const Transform3s &pose, const AABB &aabb)
Extract the part of the BVHModel that is inside an AABB. A triangle in collision with the AABB is con...
Eigen::Matrix< Scalar, 3, 3 > Matrix3s
Definition: data_types.h:74