- Timestamp:
- Jan 25, 2015, 11:15:24 PM (10 years ago)
- Location:
- code/branches/presentationFS14/src/orxonox/collisionshapes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentationFS14/src/orxonox/collisionshapes/CollisionShape.h
r10073 r10203 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 175 inline CompoundCollisionShape* getParent()176 { return this->parent_; }177 178 172 protected: 179 173 virtual void updateParent(); // Updates the CompoundCollisionShape the CollisionShape belongs to, after the CollisionShape has changed. -
code/branches/presentationFS14/src/orxonox/collisionshapes/CompoundCollisionShape.cc
r10073 r10203 304 304 this->updatePublicShape();*/ 305 305 } 306 307 int CompoundCollisionShape::getNumChildShapes()308 {309 return this->compoundShape_->getNumChildShapes();310 }311 306 } -
code/branches/presentationFS14/src/orxonox/collisionshapes/CompoundCollisionShape.h
r10073 r10203 71 71 72 72 virtual void changedScale(); 73 int getNumChildShapes();74 75 inline std::map<CollisionShape*, btCollisionShape*> getShapesMap()76 {77 return attachedShapes_;78 }79 73 80 74 private:
Note: See TracChangeset
for help on using the changeset viewer.