Skip to content

Commit 5675022

Browse files
committed
core: fix additional unsupported contact patch pair
1 parent 4f76da9 commit 5675022

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/contact_patch_func_matrix.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,8 @@ ContactPatchFunctionMatrix::ContactPatchFunctionMatrix() {
384384
contact_patch_matrix[GEOM_OCTREE][BV_KDOP16] = &contact_patch_function_not_implemented;
385385
contact_patch_matrix[GEOM_OCTREE][BV_KDOP18] = &contact_patch_function_not_implemented;
386386
contact_patch_matrix[GEOM_OCTREE][BV_KDOP24] = &contact_patch_function_not_implemented;
387+
contact_patch_matrix[GEOM_OCTREE][HF_AABB] = &contact_patch_function_not_implemented;
388+
contact_patch_matrix[GEOM_OCTREE][HF_OBBRSS] = &contact_patch_function_not_implemented;
387389

388390
contact_patch_matrix[GEOM_BOX][GEOM_OCTREE] = &contact_patch_function_not_implemented;
389391
contact_patch_matrix[GEOM_SPHERE][GEOM_OCTREE] = &contact_patch_function_not_implemented;
@@ -403,6 +405,8 @@ ContactPatchFunctionMatrix::ContactPatchFunctionMatrix() {
403405
contact_patch_matrix[BV_KDOP16][GEOM_OCTREE] = &contact_patch_function_not_implemented;
404406
contact_patch_matrix[BV_KDOP18][GEOM_OCTREE] = &contact_patch_function_not_implemented;
405407
contact_patch_matrix[BV_KDOP24][GEOM_OCTREE] = &contact_patch_function_not_implemented;
408+
contact_patch_matrix[HF_AABB][GEOM_OCTREE] = &contact_patch_function_not_implemented;
409+
contact_patch_matrix[HF_OBBRSS][GEOM_OCTREE] = &contact_patch_function_not_implemented;
406410
#endif
407411
// clang-format on
408412
}

0 commit comments

Comments
 (0)