38 #ifndef FCL_TRAVERSAL_SHAPECOLLISIONTRAVERSALNODE_INL_H 39 #define FCL_TRAVERSAL_SHAPECOLLISIONTRAVERSALNODE_INL_H 50 template <
typename Shape1,
typename Shape2,
typename NarrowPhaseSolver>
62 template <
typename Shape1,
typename Shape2,
typename NarrowPhaseSolver>
70 template <
typename Shape1,
typename Shape2,
typename NarrowPhaseSolver>
76 bool is_collision =
false;
79 std::vector<ContactPoint<S>> contacts;
86 size_t num_adding_contacts;
89 if (free_space < contacts.size())
91 std::partial_sort(contacts.begin(), contacts.begin() + free_space, contacts.end(), std::bind(comparePenDepth<S>, std::placeholders::_2, std::placeholders::_1));
92 num_adding_contacts = free_space;
96 num_adding_contacts = contacts.size();
99 for(
size_t i = 0; i < num_adding_contacts; ++i)
120 aabb1.
overlap(aabb2, overlap_part);
132 aabb1.
overlap(aabb2, overlap_part);
139 template <
typename Shape1,
typename Shape2,
typename NarrowPhaseSolver>
142 const Shape1& shape1,
144 const Shape2& shape2,
146 const NarrowPhaseSolver*
nsolver,
159 node.
cost_density = shape1.cost_density * shape2.cost_density;
size_t numContacts() const
number of contacts found
bool enable_cost
If true, the cost sources will be computed.
void addCostSource(const CostSource< S > &c, std::size_t num_max_cost_sources)
add one cost source into result structure
size_t num_max_contacts
The maximum number of contacts that can be returned.
void leafTesting(int, int) const
Intersection testing between leaves (two shapes)
Eigen::Transform< S, 3, Eigen::Isometry > Transform3
Transform3< Shape1::S > tf2
configuration of second object
CollisionRequest< Shape1::S > request
request setting for collision
FCL_EXPORT void computeBV(const Shape &s, const Transform3< typename BV::S > &tf, BV &bv)
calculate a bounding volume for a shape in a specific configuration
Node structure encoding the information required for collision traversal.
bool enable_contact
If true, contact information (e.g., normal, penetration depth, and contact position) will be returned...
bool BVTesting(int, int) const
BV culling test in one BVTT node.
Parameters for performing collision request.
size_t num_max_cost_sources
The maximum number of cost sources that can be returned.
template bool initialize(MeshCollisionTraversalNodeOBB< double > &node, const BVHModel< OBB< double >> &model1, const Transform3< double > &tf1, const BVHModel< OBB< double >> &model2, const Transform3< double > &tf2, const CollisionRequest< double > &request, CollisionResult< double > &result)
ShapeCollisionTraversalNode()
CollisionResult< Shape1::S > * result
collision result kept during the traversal iteration
bool overlap(const AABB< S > &other) const
Check whether two AABB are overlap.
Traversal node for collision between two shapes.
Transform3< Shape1::S > tf1
configuation of first object
Cost source describes an area with a cost. The area is described by an AABB<S> region.
const NarrowPhaseSolver * nsolver
void addContact(const Contact< S > &c)
add one contact into result structure