git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@241 92aac97c-a6ce-11dd-a772-7fcde58d38e6
This commit is contained in:
parent
aa098e46cb
commit
f7a88eb379
|
@ -497,11 +497,11 @@ void NarrowPhaseSATAlgorithm::computeContact(const OBB* const obb1, const OBB* c
|
|||
// If it's a Vertex-Something contact
|
||||
if (nbVerticesExtremeOBB1 == 1) {
|
||||
// Create a new contact
|
||||
contact = new Contact(obb1, obb2, normal, obb1ExtremePoints);
|
||||
*contact = new Contact(obb1->getBodyPointer(), obb2->getBodyPointer(), normal, obb1ExtremePoints);
|
||||
}
|
||||
else if(nbVerticesExtremeOBB2 == 1) { // If its a Vertex-Something contact
|
||||
// Create a new contact
|
||||
contact = new Contact(obb1, obb2, normal, obb2ExtremePoints);
|
||||
*contact = new Contact(obb1->getBodyPointer(), obb2->getBodyPointer(), normal, obb2ExtremePoints);
|
||||
}
|
||||
else if (nbVerticesExtremeOBB1 == 2 && nbVerticesExtremeOBB2 == 2) { // If it's an edge-edge contact
|
||||
// TODO : Complete this ...
|
||||
|
|
Loading…
Reference in New Issue
Block a user