*** empty log message ***

This commit is contained in:
David Rose 2001-05-31 22:41:45 +00:00
parent 74602b682c
commit 44a1eaf2f2
1 changed files with 6 additions and 0 deletions

View File

@ -614,9 +614,15 @@ compare_collider_to_geom(CollisionEntry &entry, Geom *geom,
// triangle in the Geom.
CollisionPolygon poly(coords[tris[i]], coords[tris[i + 1]],
coords[tris[i + 2]]);
/*
if (entry.get_from()->test_intersection((*ci).second, entry, &poly) != 0) {
return;
}
*/
// Don't short-circuit the intersection test, as above, but
// instead keep testing until all the collisions are detected.
entry.get_from()->test_intersection((*ci).second, entry, &poly);
}
}
}