Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 4, 2006, 4:35:25 PM (18 years ago)
Author:
patrick
Message:

collision: setup test topology

File:
1 edited

Legend:

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

    r7365 r7537  
    1313*/
    1414
    15 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_COLLISION_DETECTION
     15#define DEBUG_SPECIAL_MODULE 3/* DEBUG_MODULE_COLLISION_DETECTION*/
    1616
    1717#include "obb_tree_node.h"
     
    390390  {
    391391    centerOffset[i] = (maxLength[i] + minLength[i]) / 2.0f;       // min length is negatie
    392     box.halfLength[i] = (maxLength[i] - minLength[i]) / 2.0f;      // min length is negative
     392    box.halfLength[i] = (maxLength[i]- minLength[i]) / 2.0f;      // min length is negative
    393393  }
    394394  box.center.x += centerOffset[0];
     
    397397
    398398  PRINTF(3)("\n");
    399   PRINT(3)("\tAxis Length x: %f (max: %11.2f, \tmin: %11.2f)\n", halfLength[0], maxLength[0], minLength[0]);
    400   PRINT(3)("\tAxis Length x: %f (max: %11.2f, \tmin: %11.2f)\n", halfLength[1], maxLength[1], minLength[1]);
    401   PRINT(3)("\tAxis Length x: %f (max: %11.2f, \tmin: %11.2f)\n", halfLength[2], maxLength[2], minLength[2]);
     399  PRINT(3)("\tAxis halflength x: %11.2f (max: %11.2f, \tmin: %11.2f)\n", box.halfLength[0], maxLength[0], minLength[0]);
     400  PRINT(3)("\tAxis halflength x: %11.2f (max: %11.2f, \tmin: %11.2f)\n", box.halfLength[1], maxLength[1], minLength[1]);
     401  PRINT(3)("\tAxis halflength x: %11.2f (max: %11.2f, \tmin: %11.2f)\n", box.halfLength[2], maxLength[2], minLength[2]);
    402402
    403403
     
    809809      if( this->obbTree->getOwner() != NULL)
    810810      {
    811         PRINTF(0)("debug poly draw: depth: %i, mode: %i, entity-name: %s, class: %s\n", depth, drawMode, this->obbTree->getOwner()->getName(), this->obbTree->getOwner()->getClassName());
     811        PRINTF(4)("debug poly draw: depth: %i, mode: %i, entity-name: %s, class: %s\n", depth, drawMode, this->obbTree->getOwner()->getName(), this->obbTree->getOwner()->getClassName());
    812812      }
    813813      else
    814         PRINTF(0)("debug poly draw: depth: %i, mode: %i\n", depth, drawMode);
     814        PRINTF(4)("debug poly draw: depth: %i, mode: %i\n", depth, drawMode);
    815815
    816816
Note: See TracChangeset for help on using the changeset viewer.