Changeset 3546 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Mar 14, 2005, 6:21:37 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/coord/p_node.cc
r3545 r3546 327 327 if( pNode->parent != NULL ) 328 328 { 329 printf("PNode::addChild() - removing child from old parent \n");330 329 PRINTF(2)("PNode::addChild() - reparenting node: removing it and adding it again\n"); 331 330 pNode->parent->removeChild(pNode); … … 334 333 pNode->parent = this; 335 334 this->children->add(pNode); 336 printf("PNode::addChild() - Parent added\n");337 335 } 338 336 … … 441 439 void PNode::update (float timeStamp) 442 440 { 443 printf("PNode::update - %s - (%f, %f, %f)\n", this->objectName, this->absCoordinate.x, this->absCoordinate.y, this->absCoordinate.z);441 PRINTF(2)("PNode::update - %s - (%f, %f, %f)\n", this->objectName, this->absCoordinate.x, this->absCoordinate.y, this->absCoordinate.z); 444 442 // printf("%s", this->objectName); 445 443 … … 541 539 void PNode::debug() 542 540 { 543 printf("PNode::debug() - absCoord: (%f, %f, %f)\n",541 PRINTF(2)("PNode::debug() - absCoord: (%f, %f, %f)\n", 544 542 this->absCoordinate.x, 545 543 this->absCoordinate.y,
Note: See TracChangeset
for help on using the changeset viewer.