Changeset 9997 for code/branches/modularships/src/orxonox/collisionshapes
- Timestamp:
- Mar 12, 2014, 6:39:46 PM (11 years ago)
- Location:
- code/branches/modularships/src/orxonox/collisionshapes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/modularships/src/orxonox/collisionshapes/CollisionShape.h
r9667 r9997 170 170 void notifyDetached(); // Notifies the CollisionShape of being detached from a CompoundCollisionShape. 171 171 172 inline unsigned int getparentID() 173 { return this->parentID_; } 174 172 175 protected: 173 176 virtual void updateParent(); // Updates the CompoundCollisionShape the CollisionShape belongs to, after the CollisionShape has changed. -
code/branches/modularships/src/orxonox/collisionshapes/CompoundCollisionShape.cc
r9667 r9997 297 297 this->updatePublicShape();*/ 298 298 } 299 300 int CompoundCollisionShape::getNumChildShapes() 301 { 302 return this->compoundShape_->getNumChildShapes(); 303 } 299 304 } -
code/branches/modularships/src/orxonox/collisionshapes/CompoundCollisionShape.h
r9667 r9997 71 71 72 72 virtual void changedScale(); 73 int getNumChildShapes(); 73 74 74 75 private:
Note: See TracChangeset
for help on using the changeset viewer.