Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3591 in orxonox.OLD for orxonox/trunk/src/lib/coord/null_parent.cc


Ignore:
Timestamp:
Mar 17, 2005, 2:04:02 PM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: debug.h some cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/coord/null_parent.cc

    r3565 r3591  
    1616*/
    1717
     18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_NULL_PARENT
    1819
    1920#include "null_parent.h"
     
    3839NullParent::NullParent () : PNode (new Vector(0,0,0), NULL)
    3940{
    40   printf("NullParent::NullParent() - making new NullParent, there can only be one..\n");
     41  PRINTF(4)("NullParent::NullParent() - making new NullParent, there can only be one..\n");
    4142  this->parent = this;
    4243  this->mode = PNODE_ALL;
     
    7677{
    7778
    78   printf ("NullParent::update - (%f, %f, %f)\n", this->absCoordinate.x, this->absCoordinate.y, this->absCoordinate.z);
     79  PRINTF(4)("NullParent::update - (%f, %f, %f)\n", this->absCoordinate.x, this->absCoordinate.y, this->absCoordinate.z);
    7980  this->absCoordinate = this->relCoordinate;
    8081  this->absDirection = parent->getAbsDir () * this->relDirection;
Note: See TracChangeset for help on using the changeset viewer.