38 #ifndef FCL_TRAVERSAL_MESHCONTINUOUSCOLLISIONTRAVERSALNODE_INL_H 39 #define FCL_TRAVERSAL_MESHCONTINUOUSCOLLISIONTRAVERSALNODE_INL_H 53 struct BVHContinuousCollisionPair<double>;
65 int id1_,
int id2_, S time)
66 : id1(id1_), id2(id2_), collision_time(time)
72 template <
typename BV>
89 template <
typename BV>
111 for(
int i = 0; i < 3; ++i)
123 for(
int i = 0; i < 3; ++i)
128 if(collision_time > tmp)
130 collision_time = tmp; collision_pos = tmpv;
137 if(collision_time > tmp)
139 collision_time = tmp; collision_pos = tmpv;
145 for(
int i = 0; i < 3; ++i)
149 if(S_id2 == 3) S_id2 = 0;
150 for(
int j = 0; j < 3; ++j)
154 if(T_id2 == 3) T_id2 = 0;
157 if(
Intersect<S>::intersect_EE(*(S0[S_id1]), *(S0[S_id2]), *(T0[T_id1]), *(T0[T_id2]), *(S1[S_id1]), *(S1[S_id2]), *(T1[T_id1]), *(T1[T_id2]), &tmp, &tmpv))
159 if(collision_time > tmp)
161 collision_time = tmp; collision_pos = tmpv;
167 if(!(collision_time > 1))
169 pairs.emplace_back(primitive_id1, primitive_id2, collision_time);
175 template <
typename BV>
182 template <
typename BV>
bool enable_statistics
Whether stores statistics.
std::vector< BVHContinuousCollisionPair< S > > pairs
size_t num_max_contacts
The maximum number of contacts that can be returned.
Vector3< S > * prev_vertices2
Eigen::Transform< S, 3, Eigen::Isometry > Transform3
Transform3< BV::S > tf2
configuration of second object
Vector3< S > * prev_vertices
Geometry point data in previous frame.
int primitiveId() const
Return the primitive index. The index is referred to the original data (i.e. vertices or tri_indices)...
void leafTesting(int b1, int b2) const
Intersection testing between leaves (two triangles)
Vector3< S > * vertices
Geometry point data.
Eigen::Matrix< S, 3, 1 > Vector3
CollisionRequest< BV::S > request
request setting for collision
Vector3< S > * prev_vertices1
const BVHModel< BV > * model1
The first BVH model.
Triangle * tri_indices
Geometry triangle index data, will be nullptr for point clouds.
Triangle with 3 indices for points.
Parameters for performing collision request.
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)
Traversal node for continuous collision between meshes.
MeshContinuousCollisionTraversalNode()
Traversal node for collision between BVH models.
bool canStop() const
Whether the traversal process can stop early.
A class describing the bounding hierarchy of a mesh model or a point cloud model (which is viewed as ...
A class describing a bounding volume node. It includes the tree structure providing in BVNodeBase and...
Transform3< BV::S > tf1
configuation of first object
BVHContinuousCollisionPair()
CCD intersect kernel among primitives.
const BVHModel< BV > * model2
The second BVH model.