Skip to content

Commit ecc480d

Browse files
committed
Fix EE tolerances
1 parent 4cb0199 commit ecc480d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tight_inclusion/ccd.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ namespace ticcd {
121121
const Vector3 p001 = ea0_t0 - eb1_t0;
122122
const Vector3 p010 = ea1_t0 - eb0_t0;
123123
const Vector3 p011 = ea1_t0 - eb1_t0;
124-
const Vector3 p100 = ea0_t1 - eb0_t0;
125-
const Vector3 p101 = ea0_t1 - eb1_t0;
126-
const Vector3 p110 = ea1_t1 - eb0_t0;
127-
const Vector3 p111 = ea1_t1 - eb1_t0;
124+
const Vector3 p100 = ea0_t1 - eb0_t1;
125+
const Vector3 p101 = ea0_t1 - eb1_t1;
126+
const Vector3 p110 = ea1_t1 - eb0_t1;
127+
const Vector3 p111 = ea1_t1 - eb1_t1;
128128

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

0 commit comments

Comments
 (0)