We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec35524 commit 5352fb4Copy full SHA for 5352fb4
src/CollisionAlgorithm/algorithm/InsertionAlgorithm.h
@@ -205,6 +205,15 @@ class InsertionAlgorithm : public BaseAlgorithm
205
if (!shaftProx) continue;
206
shaftProx->normalize();
207
}
208
+ else
209
+ {
210
+ auto findClosestProxOnShaft =
211
+ Operations::FindClosestProximity::Operation::get(l_shaftGeom);
212
+ shaftProx = findClosestProxOnShaft(surfProx, l_shaftGeom,
213
+ projectOnShaft, getFilterFunc());
214
+ if (!shaftProx) continue;
215
+ shaftProx->normalize();
216
+ }
217
collisionOutput.add(shaftProx, surfProx);
218
219
0 commit comments