Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10601 in orxonox.OLD for branches/cleanup/src/lib


Ignore:
Timestamp:
Mar 23, 2007, 12:21:42 AM (18 years ago)
Author:
rennerc
Message:

i hope i fixed some bugs :D

Location:
branches/cleanup/src/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/cleanup/src/lib/collision_detection/obb_tree_node.cc

    r10033 r10601  
    629629    PRINTF(5)("s = %f, rA+rB = %f\n", fabs(t.dot(l)), rA+rB);
    630630
     631    //TODO valgrind complains about uninitialised value here
    631632    if( (rA + rB) < fabs(t.dot(l)))
    632633    {
  • branches/cleanup/src/lib/graphics/importer/bsp/bsp_manager.cc

    r10599 r10601  
    982982  float endDistance = end->dot(node->plane) - node->d;
    983983  float startDistance = start->dot(node->plane) - node->d;
    984 
    985 
     984 
    986985  if( node->isLeaf) {
    987986    leaf& curLeaf = this->bspFile->leaves[node->leafIndex];
     
    999998  }
    1000999
    1001 
     1000  //TODO valgrind complains about uninitialised value here
    10021001  if (startDistance >= 0 && endDistance >= 0)     // A
    10031002  {   // both points are in front of the plane
Note: See TracChangeset for help on using the changeset viewer.