39 #ifndef COAL_MINKOWSKI_DIFFERENCE_H
40 #define COAL_MINKOWSKI_DIFFERENCE_H
54 typedef Eigen::Array<Scalar, 1, 2>
Array2;
88 MinkowskiDiff() : normalize_support_direction(false), getSupportFunc(NULL) {}
116 template <
int _SupportOptions = SupportOptions::NoSweptSphere>
128 template <
int _SupportOptions = SupportOptions::NoSweptSphere>
141 template <
int _SupportOptions = SupportOptions::NoSweptSphere>
143 return getSupport<_SupportOptions>(shapes[0], dir, hint);
158 template <
int _SupportOptions = SupportOptions::NoSweptSphere>
161 return oR1 * getSupport<_SupportOptions>(shapes[1], oR1.transpose() * dir, hint) + ot1;
176 assert(getSupportFunc != NULL);
177 getSupportFunc(*
this, dir, supp0, supp1, hint,
Base class for all basic geometric shapes.
Definition: geometric_shapes.h:58
#define COAL_DLLAPI
Definition: config.hh:88
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
Eigen::Vector2i support_func_guess_t
Definition: data_types.h:80
Eigen::Matrix< Scalar, 3, 3 > Matrix3s
Definition: data_types.h:74
Minkowski difference class of two shapes.
Definition: minkowski_difference.h:53
Array2 swept_sphere_radius
The radii of the sphere swepted around each shape of the Minkowski difference. The 2 values correspon...
Definition: minkowski_difference.h:74
bool normalize_support_direction
Wether or not to use the normalize heuristic in the GJK Nesterov acceleration. This setting is only a...
Definition: minkowski_difference.h:79
MinkowskiDiff()
Definition: minkowski_difference.h:88
Eigen::Array< Scalar, 1, 2 > Array2
Definition: minkowski_difference.h:54
GetSupportFunction getSupportFunc
Definition: minkowski_difference.h:86
void set(const ShapeBase *shape0, const ShapeBase *shape1, const Transform3s &tf0, const Transform3s &tf1)
Set the two shapes, with a relative transformation from shape0 to shape1. Consequently,...
Vec3s support1(const Vec3s &dir, int &hint) const
support function for shape1. The output vector is expressed in the local frame of shape0....
Definition: minkowski_difference.h:159
Vec3s ot1
translation from shape1 to shape0 such that .
Definition: minkowski_difference.h:69
Matrix3s oR1
rotation from shape1 to shape0 such that .
Definition: minkowski_difference.h:65
Vec3s support0(const Vec3s &dir, int &hint) const
support function for shape0. The output vector is expressed in the local frame of shape0.
Definition: minkowski_difference.h:142
void support(const Vec3s &dir, Vec3s &supp0, Vec3s &supp1, support_func_guess_t &hint) const
Support function for the pair of shapes. This method assumes set has already been called.
Definition: minkowski_difference.h:174
void set(const ShapeBase *shape0, const ShapeBase *shape1)
Set the two shapes, assuming the relative transformation between them is identity....
Stores temporary data for the computation of support points.
Definition: support_functions.h:80