38#ifndef COAL_COLLISION_FUNC_MATRIX_H 39#define COAL_COLLISION_FUNC_MATRIX_H The geometry for the object for collision or distance computation.
Definition collision_object.h:94
@ NODE_COUNT
Definition collision_object.h:87
Main namespace.
Definition broadphase_bruteforce.h:44
std::size_t(* CollisionFunc)(const CollisionGeometry *o1, const Transform3s &tf1, const CollisionGeometry *o2, const Transform3s &tf2, const GJKSolver *nsolver, const CollisionRequest &request, CollisionResult &result)
the uniform call interface for collision: for collision, we need know
Definition collision_func_matrix.h:60
CollisionFunc collision_matrix[NODE_COUNT][NODE_COUNT]
each item in the collision matrix is a function to handle collision between objects of type1 and type...
Definition collision_func_matrix.h:70
CollisionFunctionMatrix()
request to the collision algorithm
Definition collision_data.h:311
collision result
Definition collision_data.h:390
collision and distance solver based on the GJK and EPA algorithms. Originally, GJK and EPA were imple...
Definition narrowphase.h:57