Changeset 3669 in orxonox.OLD for orxonox/trunk/src/lib/coord/null_parent.cc
- Timestamp:
- Mar 30, 2005, 12:06:36 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/coord/null_parent.cc
r3644 r3669 83 83 *this->absCoordinate = *this->relCoordinate; 84 84 *this->absDirection = parent->getAbsDir () * *this->relDirection; 85 86 PNode* pn = this->children->enumerate (); 85 86 tIterator<PNode>* iterator = this->children->getIterator(); 87 //PNode* pn = this->children->enumerate (); 88 PNode* pn = iterator->nextElement(); 87 89 while( pn != NULL) 88 90 { … … 93 95 pn->parentDirChanged (); 94 96 pn->update (dt); 95 pn = this->children->nextElement (); 97 //pn = this->children->nextElement (); 98 pn = iterator->nextElement(); 96 99 } 97 100
Note: See TracChangeset
for help on using the changeset viewer.