37 #ifndef COAL_INTERNAL_SHAPE_SHAPE_CONTACT_PATCH_FUNC_H
38 #define COAL_INTERNAL_SHAPE_SHAPE_CONTACT_PATCH_FUNC_H
53 template <
typename ShapeType1,
typename ShapeType2>
66 result.
check(request),
67 "The contact patch result and request are incompatible (issue of "
68 "contact patch size or maximum number of contact patches). Make sure "
69 "result is initialized with request.",
72 const ShapeType1& s1 =
static_cast<const ShapeType1&
>(*o1);
73 const ShapeType2& s2 =
static_cast<const ShapeType2&
>(*o2);
74 for (
size_t i = 0; i < collision_result.
numContacts(); ++i) {
81 csolver->
computePatch(s1, tf1, s2, tf2, contact, contact_patch);
91 template <
bool InvertShapes,
typename OtherShapeType,
typename PlaneOrHalfspace>
94 const PlaneOrHalfspace& s2,
123 support_set.
direction = ContactPatch::PatchDirection::INVERTED;
124 details::getShapeSupportSet<SupportOptions::WithSweptSphere>(
128 support_set.
direction = ContactPatch::PatchDirection::DEFAULT;
129 details::getShapeSupportSet<SupportOptions::WithSweptSphere>(
136 #define PLANE_OR_HSPACE_AND_OTHER_SHAPE_CONTACT_PATCH(PlaneOrHspace) \
137 template <typename OtherShapeType> \
138 struct ComputeShapeShapeContactPatch<OtherShapeType, PlaneOrHspace> { \
139 static void run(const CollisionGeometry* o1, const Transform3s& tf1, \
140 const CollisionGeometry* o2, const Transform3s& tf2, \
141 const CollisionResult& collision_result, \
142 const ContactPatchSolver* csolver, \
143 const ContactPatchRequest& request, \
144 ContactPatchResult& result) { \
145 COAL_TRACY_ZONE_SCOPED_N( \
146 "coal::ComputeShapeShapeContactPatch<OtherShapeType, " \
147 "PlaneOrHspace>::run"); \
148 if (!collision_result.isCollision()) { \
152 result.check(request), \
153 "The contact patch result and request are incompatible (issue of " \
154 "contact patch size or maximum number of contact patches). Make " \
156 "result is initialized with request.", \
159 const OtherShapeType& s1 = static_cast<const OtherShapeType&>(*o1); \
160 const PlaneOrHspace& s2 = static_cast<const PlaneOrHspace&>(*o2); \
161 for (size_t i = 0; i < collision_result.numContacts(); ++i) { \
162 if (i >= request.max_num_patch) { \
165 csolver->setSupportGuess(collision_result.cached_support_func_guess); \
166 const Contact& contact = collision_result.getContact(i); \
167 ContactPatch& contact_patch = result.getUnusedContactPatch(); \
168 computePatchPlaneOrHalfspace<false, OtherShapeType, PlaneOrHspace>( \
169 s1, tf1, s2, tf2, csolver, contact, contact_patch); \
174 template <typename OtherShapeType> \
175 struct ComputeShapeShapeContactPatch<PlaneOrHspace, OtherShapeType> { \
176 static void run(const CollisionGeometry* o1, const Transform3s& tf1, \
177 const CollisionGeometry* o2, const Transform3s& tf2, \
178 const CollisionResult& collision_result, \
179 const ContactPatchSolver* csolver, \
180 const ContactPatchRequest& request, \
181 ContactPatchResult& result) { \
182 COAL_TRACY_ZONE_SCOPED_N( \
183 "coal::ComputeShapeShapeContactPatch<PlaneOrHspace, " \
184 "OtherShapeType>::run"); \
185 if (!collision_result.isCollision()) { \
189 result.check(request), \
190 "The contact patch result and request are incompatible (issue of " \
191 "contact patch size or maximum number of contact patches). Make " \
193 "result is initialized with request.", \
196 const PlaneOrHspace& s1 = static_cast<const PlaneOrHspace&>(*o1); \
197 const OtherShapeType& s2 = static_cast<const OtherShapeType&>(*o2); \
198 for (size_t i = 0; i < collision_result.numContacts(); ++i) { \
199 if (i >= request.max_num_patch) { \
202 csolver->setSupportGuess(collision_result.cached_support_func_guess); \
203 const Contact& contact = collision_result.getContact(i); \
204 ContactPatch& contact_patch = result.getUnusedContactPatch(); \
205 computePatchPlaneOrHalfspace<true, OtherShapeType, PlaneOrHspace>( \
206 s2, tf2, s1, tf1, csolver, contact, contact_patch); \
214 #define PLANE_HSPACE_CONTACT_PATCH(PlaneOrHspace1, PlaneOrHspace2) \
216 struct ComputeShapeShapeContactPatch<PlaneOrHspace1, PlaneOrHspace2> { \
217 static void run(const CollisionGeometry* o1, const Transform3s& tf1, \
218 const CollisionGeometry* o2, const Transform3s& tf2, \
219 const CollisionResult& collision_result, \
220 const ContactPatchSolver* csolver, \
221 const ContactPatchRequest& request, \
222 ContactPatchResult& result) { \
223 COAL_UNUSED_VARIABLE(o1); \
224 COAL_UNUSED_VARIABLE(tf1); \
225 COAL_UNUSED_VARIABLE(o2); \
226 COAL_UNUSED_VARIABLE(tf2); \
227 COAL_UNUSED_VARIABLE(csolver); \
228 if (!collision_result.isCollision()) { \
232 result.check(request), \
233 "The contact patch result and request are incompatible (issue of " \
234 "contact patch size or maximum number of contact patches). Make " \
236 "result is initialized with request.", \
239 for (size_t i = 0; i < collision_result.numContacts(); ++i) { \
240 if (i >= request.max_num_patch) { \
243 const Contact& contact = collision_result.getContact(i); \
244 ContactPatch& contact_patch = result.getUnusedContactPatch(); \
245 constructContactPatchFrameFromContact(contact, contact_patch); \
246 contact_patch.addPoint(contact.pos); \
256 #undef PLANE_OR_HSPACE_AND_OTHER_SHAPE_CONTACT_PATCH
257 #undef PLANE_HSPACE_CONTACT_PATCH
259 template <
typename ShapeType1,
typename ShapeType2>
268 o1, tf1, o2, tf2, collision_result, csolver, request, result);
The geometry for the object for collision or distance computation.
Definition: collision_object.h:94
Half Space: this is equivalent to the Plane in ODE. A Half space has a priviledged direction: the dir...
Definition: geometric_shapes.h:886
Infinite plane. A plane can be viewed as two half spaces; it has no priviledged direction....
Definition: geometric_shapes.h:977
#define COAL_ASSERT(check, message, exception)
Definition: fwd.hh:82
#define COAL_UNUSED_VARIABLE(var)
Definition: fwd.hh:56
SupportOptions
Options for the computation of support points. NoSweptSphere option is used when the support function...
Definition: support_functions.h:58
Main namespace.
Definition: broadphase_bruteforce.h:44
void computePatchPlaneOrHalfspace(const OtherShapeType &s1, const Transform3s &tf1, const PlaneOrHalfspace &s2, const Transform3s &tf2, const ContactPatchSolver *csolver, const Contact &contact, ContactPatch &contact_patch)
Computes the contact patch between a Plane/Halfspace and another shape.
Definition: shape_shape_contact_patch_func.h:92
void ShapeShapeContactPatch(const CollisionGeometry *o1, const Transform3s &tf1, const CollisionGeometry *o2, const Transform3s &tf2, const CollisionResult &collision_result, const ContactPatchSolver *csolver, const ContactPatchRequest &request, ContactPatchResult &result)
Definition: shape_shape_contact_patch_func.h:260
void constructContactPatchFrameFromContact(const Contact &contact, ContactPatch &contact_patch)
Construct a frame from a Contact's position and normal. Because both Contact's position and normal ar...
Definition: collision_data.h:703
collision result
Definition: collision_data.h:390
const Contact & getContact(size_t i) const
get the i-th contact calculated
Definition: collision_data.h:448
size_t numContacts() const
number of contacts found
Definition: collision_data.h:445
bool isCollision() const
return binary collision result
Definition: collision_data.h:442
support_func_guess_t cached_support_func_guess
stores the last support function vertex index, when relevant.
Definition: collision_data.h:280
Definition: geometric_shapes_traits.h:55
#define COAL_TRACY_ZONE_SCOPED_N(x)
Definition: tracy.hh:26