38 #ifndef COAL_GEOMETRIC_SHAPES_UTILITY_H
39 #define COAL_GEOMETRIC_SHAPES_UTILITY_H
52 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const Box& box,
53 const Transform3s& tf);
54 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const Sphere& sphere,
55 const Transform3s& tf);
56 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const Ellipsoid& ellipsoid,
57 const Transform3s& tf);
58 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const Capsule& capsule,
59 const Transform3s& tf);
60 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const Cone& cone,
61 const Transform3s& tf);
62 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const Cylinder& cylinder,
63 const Transform3s& tf);
64 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const ConvexBase& convex,
65 const Transform3s& tf);
66 COAL_DLLAPI std::vector<Vec3s> getBoundVertices(
const TriangleP& triangle,
67 const Transform3s& tf);
72 template <
typename BV,
typename S>
74 if (s.getSweptSphereRadius() > 0) {
78 std::vector<Vec3s> convex_bound_vertices = details::getBoundVertices(s, tf);
79 fit(&convex_bound_vertices[0], (
unsigned int)convex_bound_vertices.size(),
A class describing the AABB collision structure, which is a box in 3D space determined by two diagona...
Definition: AABB.h:55
Center at zero point, axis aligned box.
Definition: geometric_shapes.h:164
Capsule It is where is the distance between the point x and the capsule segment AB,...
Definition: geometric_shapes.h:381
Cone The base of the cone is at and the top is at .
Definition: geometric_shapes.h:466
Base for convex polytope.
Definition: geometric_shapes.h:639
Cylinder along Z axis. The cylinder is defined at its centroid.
Definition: geometric_shapes.h:556
Ellipsoid centered at point zero.
Definition: geometric_shapes.h:303
Half Space: this is equivalent to the Plane in ODE. A Half space has a priviledged direction: the dir...
Definition: geometric_shapes.h:886
KDOP class describes the KDOP collision structures. K is set as the template parameter,...
Definition: kDOP.h:91
Infinite plane. A plane can be viewed as two half spaces; it has no priviledged direction....
Definition: geometric_shapes.h:977
Center at zero point sphere.
Definition: geometric_shapes.h:238
Triangle stores the points instead of only indices of points.
Definition: geometric_shapes.h:108
A class describing the kIOS collision structure, which is a set of spheres.
Definition: kIOS.h:52
#define COAL_DLLAPI
Definition: config.hh:88
#define COAL_THROW_PRETTY(message, exception)
Definition: fwd.hh:64
Main namespace.
Definition: broadphase_bruteforce.h:44
void computeBV(const S &s, const Transform3s &tf, BV &bv)
calculate a bounding volume for a shape in a specific configuration
Definition: geometric_shapes_utility.h:73
void computeBV< OBB, Plane >(const Plane &s, const Transform3s &tf, OBB &bv)
std::array< Halfspace, 2 > transformToHalfspaces(const Plane &a, const Transform3s &tf)
void constructBox(const AABB &bv, Box &box, Transform3s &tf)
construct a box shape (with a configuration) from a given bounding volume
void computeBV< OBBRSS, Halfspace >(const Halfspace &s, const Transform3s &tf, OBBRSS &bv)
void computeBV< AABB, Ellipsoid >(const Ellipsoid &e, const Transform3s &tf, AABB &bv)
void computeBV< AABB, Sphere >(const Sphere &s, const Transform3s &tf, AABB &bv)
void computeBV< AABB, Box >(const Box &s, const Transform3s &tf, AABB &bv)
void computeBV< AABB, Capsule >(const Capsule &s, const Transform3s &tf, AABB &bv)
void computeBV< AABB, TriangleP >(const TriangleP &s, const Transform3s &tf, AABB &bv)
void computeBV< OBB, Box >(const Box &s, const Transform3s &tf, OBB &bv)
void computeBV< OBB, Cylinder >(const Cylinder &s, const Transform3s &tf, OBB &bv)
Halfspace transform(const Halfspace &a, const Transform3s &tf)
void computeBV< OBBRSS, Plane >(const Plane &s, const Transform3s &tf, OBBRSS &bv)
void fit(Vec3s *ps, unsigned int n, BV &bv)
Compute a bounding volume that fits a set of n points.
Definition: BV_fitter.h:51
void computeBV< kIOS, Halfspace >(const Halfspace &s, const Transform3s &tf, kIOS &bv)
void computeBV< RSS, Plane >(const Plane &s, const Transform3s &tf, RSS &bv)
void computeBV< OBB, Halfspace >(const Halfspace &s, const Transform3s &tf, OBB &bv)
void computeBV< RSS, Halfspace >(const Halfspace &s, const Transform3s &tf, RSS &bv)
void computeBV< kIOS, Plane >(const Plane &s, const Transform3s &tf, kIOS &bv)
void computeBV< AABB, Cylinder >(const Cylinder &s, const Transform3s &tf, AABB &bv)
void computeBV< AABB, Halfspace >(const Halfspace &s, const Transform3s &tf, AABB &bv)
void computeBV< AABB, Plane >(const Plane &s, const Transform3s &tf, AABB &bv)
void computeBV< AABB, Cone >(const Cone &s, const Transform3s &tf, AABB &bv)
void computeBV< AABB, ConvexBase >(const ConvexBase &s, const Transform3s &tf, AABB &bv)
void computeBV< OBB, Sphere >(const Sphere &s, const Transform3s &tf, OBB &bv)
void computeBV< OBB, Capsule >(const Capsule &s, const Transform3s &tf, OBB &bv)
void computeBV< OBB, ConvexBase >(const ConvexBase &s, const Transform3s &tf, OBB &bv)
void computeBV< OBB, Cone >(const Cone &s, const Transform3s &tf, OBB &bv)
Oriented bounding box class.
Definition: OBB.h:51