38 #ifndef COAL_BROAD_PHASE_DYNAMIC_AABB_TREE_ARRAY_INL_H
39 #define COAL_BROAD_PHASE_DYNAMIC_AABB_TREE_ARRAY_INL_H
50 namespace dynamic_AABB_tree_array {
55 template <
typename Derived>
56 bool collisionRecurse_(
59 const AABB& root2_bv,
const Eigen::MatrixBase<Derived>& translation2,
69 if (root1->
bv.overlap(root_bv_t)) {
79 return (*callback)(obj1, &obj2);
83 if (collisionRecurse_(nodes1, root1->
children[0], tree2,
nullptr,
84 root2_bv, translation2, callback))
86 if (collisionRecurse_(nodes1, root1->
children[1], tree2,
nullptr,
87 root2_bv, translation2, callback))
96 if (root1->
bv.overlap(root_bv_t)) {
107 return (*callback)(obj1, &obj2);
115 if (tree2->
isNodeFree(root2) || !root1->
bv.overlap(root_bv_t))
return false;
118 (!root1->
isLeaf() && (root1->
bv.size() > root2_bv.
size()))) {
119 if (collisionRecurse_(nodes1, root1->
children[0], tree2, root2, root2_bv,
120 translation2, callback))
122 if (collisionRecurse_(nodes1, root1->
children[1], tree2, root2, root2_bv,
123 translation2, callback))
126 for (
unsigned int i = 0; i < 8; ++i) {
130 computeChildBV(root2_bv, i, child_bv);
132 if (collisionRecurse_(nodes1, root1_id, tree2, child, child_bv,
133 translation2, callback))
137 computeChildBV(root2_bv, i, child_bv);
138 if (collisionRecurse_(nodes1, root1_id, tree2,
nullptr, child_bv,
139 translation2, callback))
149 template <
typename Derived>
150 bool distanceRecurse_(
153 const AABB& root2_bv,
const Eigen::MatrixBase<Derived>& translation2,
174 (!root1->
isLeaf() && (root1->
bv.size() > root2_bv.
size()))) {
182 if (distanceRecurse_(nodes1, root1->
children[1], tree2, root2, root2_bv,
183 translation2, callback, min_dist))
188 if (distanceRecurse_(nodes1, root1->
children[0], tree2, root2, root2_bv,
189 translation2, callback, min_dist))
194 if (distanceRecurse_(nodes1, root1->
children[0], tree2, root2, root2_bv,
195 translation2, callback, min_dist))
200 if (distanceRecurse_(nodes1, root1->
children[1], tree2, root2, root2_bv,
201 translation2, callback, min_dist))
206 for (
unsigned int i = 0; i < 8; ++i) {
210 computeChildBV(root2_bv, i, child_bv);
213 Scalar d = root1->
bv.distance(aabb2);
216 if (distanceRecurse_(nodes1, root1_id, tree2, child, child_bv,
217 translation2, callback, min_dist))
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
the object for collision or distance computation, contains the geometry and the transform information
Definition: collision_object.h:214
Octree is one type of collision geometry which can encode uncertainty information in the sensor data.
Definition: octree.h:53
Scalar getDefaultOccupancy() const
Definition: octree.h:231
bool nodeChildExists(const OcTreeNode *node, unsigned int childIdx) const
return true if the child at childIdx exists
Definition: octree.h:259
Scalar getOccupancyThres() const
the threshold used to decide whether one node is occupied, this is NOT the octree occupied_thresold
Definition: octree.h:225
bool nodeHasChildren(const OcTreeNode *node) const
return true if node has at least one child
Definition: octree.h:268
OcTreeNode * getNodeChild(OcTreeNode *node, unsigned int childIdx)
Definition: octree.h:240
octomap::OcTreeNode OcTreeNode
Definition: octree.h:63
bool isNodeFree(const OcTreeNode *node) const
whether one node is completely free
Definition: octree.h:165
bool isNodeOccupied(const OcTreeNode *node) const
whether one node is completely occupied
Definition: octree.h:159
Scalar distance(const AABB &other) const
Distance between two AABBs.
KDOP< N > translate(const KDOP< N > &bv, const Vec3s &t)
translate the KDOP BV
Scalar size() const
Size of the AABB (used in BV_Splitter to order two AABBs)
Definition: AABB.h:161
Scalar cost_density
collision cost for unit volume
Definition: collision_object.h:164
Scalar threshold_occupied
threshold for occupied ( >= is occupied)
Definition: collision_object.h:167
const shared_ptr< const CollisionGeometry > collisionGeometry() const
get shared pointer to collision geometry of the object instance
Definition: collision_object.h:311
Main namespace.
Definition: broadphase_bruteforce.h:44
void constructBox(const AABB &bv, Box &box, Transform3s &tf)
construct a box shape (with a configuration) from a given bounding volume
double Scalar
Definition: data_types.h:68
Base callback class for collision queries. This class can be supersed by child classes to provide des...
Definition: broadphase_callbacks.h:49
Base callback class for distance queries. This class can be supersed by child classes to provide desi...
Definition: broadphase_callbacks.h:72
Definition: node_base_array.h:50
size_t children[2]
Definition: node_base_array.h:59
bool isLeaf() const
Definition: node_base_array-inl.h:51
BV bv
Definition: node_base_array.h:51
void * data
Definition: node_base_array.h:60