Skip to content
Snippets Groups Projects
Unverified Commit 9e4d930b authored by Joseph Mirabel's avatar Joseph Mirabel Committed by GitHub
Browse files

[Minor] Remove misplaced ampersand.

parent c0943dbd
No related branches found
No related tags found
No related merge requests found
......@@ -140,8 +140,8 @@ namespace fcl {
}
// witness points achieving the distance between the two segments
const Vec3f& w1 = p1 + s * d1;
const Vec3f& w2 = p2 + t * d2;
const Vec3f w1 = p1 + s * d1;
const Vec3f w2 = p2 + t * d2;
FCL_REAL distance = (w1 - w2).norm();
Vec3f normal = (w1 - w2) / distance;
result.normal = normal;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment