Changeset 7713 in orxonox.OLD for trunk/src/lib/collision_detection/obb_tree_node.cc
- Timestamp:
- May 19, 2006, 12:44:16 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/collision_detection/obb_tree_node.cc
r7711 r7713 522 522 /* so there is a collision and this is the last box in the tree (i.e. leaf) */ 523 523 /* FIXME: If we would choose || insead of && there would also be asymmetrical cases supported */ 524 if( unlikely(this->nodeRight == NULL &&this->nodeLeft == NULL))524 if( unlikely(this->nodeRight == NULL || this->nodeLeft == NULL)) 525 525 { 526 526 nodeA->collidesWith(nodeB, (((const OBBTreeNode*)&treeNode)->bvElement->center)); … … 542 542 543 543 /* first check all axis */ 544 Vector t;545 float rA = 0.0f;546 float rB = 0.0f;547 Vector l;548 Vector rotAxisA[3];549 Vector rotAxisB[3];544 Vector t; 545 float rA = 0.0f; 546 float rB = 0.0f; 547 Vector l; 548 Vector rotAxisA[3]; 549 Vector rotAxisB[3]; 550 550 551 551 rotAxisA[0] = nodeA->getAbsDir().apply(boxA.axis[0]);
Note: See TracChangeset
for help on using the changeset viewer.