Changeset 3591 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Mar 17, 2005, 2:04:02 PM (20 years ago)
- Location:
- orxonox/trunk/src/lib/coord
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/coord/null_parent.cc
r3565 r3591 16 16 */ 17 17 18 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_NULL_PARENT 18 19 19 20 #include "null_parent.h" … … 38 39 NullParent::NullParent () : PNode (new Vector(0,0,0), NULL) 39 40 { 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"); 41 42 this->parent = this; 42 43 this->mode = PNODE_ALL; … … 76 77 { 77 78 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); 79 80 this->absCoordinate = this->relCoordinate; 80 81 this->absDirection = parent->getAbsDir () * this->relDirection; -
orxonox/trunk/src/lib/coord/p_node.cc
r3590 r3591 19 19 20 20 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_PNODE 21 22 21 23 22 #include "p_node.h" … … 413 412 PRINTF(2)("PNode::update - %s - (%f, %f, %f)\n", this->objectName, this->absCoordinate.x, this->absCoordinate.y, this->absCoordinate.z); 414 413 // printf("%s", this->objectName); 415 printf("%d:", this->mode);416 414 if(this->mode & PNODE_MOVEMENT ) 417 415 {
Note: See TracChangeset
for help on using the changeset viewer.