Skip to content

Commit

Permalink
Fix EE tolerances
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Ferguson committed Aug 15, 2023
1 parent 4cb0199 commit ecc480d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tight_inclusion/ccd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ namespace ticcd {
const Vector3 p001 = ea0_t0 - eb1_t0;
const Vector3 p010 = ea1_t0 - eb0_t0;
const Vector3 p011 = ea1_t0 - eb1_t0;
const Vector3 p100 = ea0_t1 - eb0_t0;
const Vector3 p101 = ea0_t1 - eb1_t0;
const Vector3 p110 = ea1_t1 - eb0_t0;
const Vector3 p111 = ea1_t1 - eb1_t0;
const Vector3 p100 = ea0_t1 - eb0_t1;
const Vector3 p101 = ea0_t1 - eb1_t1;
const Vector3 p110 = ea1_t1 - eb0_t1;
const Vector3 p111 = ea1_t1 - eb1_t1;

const Scalar dl =
3 * max_linf_4(p000, p001, p011, p010, p100, p101, p111, p110);
Expand Down

0 comments on commit ecc480d

Please sign in to comment.