We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34c034 commit 7b70ae3Copy full SHA for 7b70ae3
src/ipc/ipc.cpp
@@ -56,6 +56,8 @@ double compute_collision_free_stepsize(
56
"Sweep and Tiniest Queue is only supported in 3D!");
57
}
58
// TODO: Use correct min_distance
59
+ const double tolerance = TightInclusionCCD::DEFAULT_TOLERANCE;
60
+ const long max_iterations = TightInclusionCCD::DEFAULT_MAX_ITERATIONS;
61
const double step_size = scalable_ccd::cuda::ipc_ccd_strategy(
62
vertices_t0, vertices_t1, mesh.edges(), mesh.faces(),
63
/*min_distance=*/0.0, max_iterations, tolerance);
0 commit comments