Changeset 5046 in orxonox.OLD for orxonox/trunk/src/lib/collision_detection
- Timestamp:
- Aug 16, 2005, 9:20:20 PM (19 years ago)
- Location:
- orxonox/trunk/src/lib/collision_detection
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/collision_detection/obb_tree_node.cc
r5044 r5046 655 655 if( unlikely(this->nodeRight == NULL && this->nodeLeft == NULL)) 656 656 { 657 nodeA->collidesWith(nodeB); 658 nodeB->collidesWith(nodeA); 657 nodeA->collidesWith(nodeB, *((OBBTreeNode*)treeNode)->bvElement->center); 658 659 nodeB->collidesWith(nodeA, *this->bvElement->center); 659 660 } 660 661 -
orxonox/trunk/src/lib/collision_detection/obb_tree_node.h
r5039 r5046 69 69 int tmpLen2; //!< len vert data obbox2 70 70 71 static float** coMat;//!< temp covariance matrice save place - consumes less mem72 static float** eigvMat;//!< temp eigenvector matrice save place73 static float* eigvlMat;//!< temp eigenvalue vector save place74 static int* rotCount;//!< temp rotations count save place: how many givens-rotations where needed to transform the matrix :)71 static float** coMat; //!< temp covariance matrice save place - consumes less mem 72 static float** eigvMat; //!< temp eigenvector matrice save place 73 static float* eigvlMat; //!< temp eigenvalue vector save place 74 static int* rotCount; //!< temp rotations count save place: how many givens-rotations where needed to transform the matrix :) 75 75 76 GLUquadricObj* sphereObj;76 GLUquadricObj* sphereObj; 77 77 }; 78 78
Note: See TracChangeset
for help on using the changeset viewer.