Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 25, 2015, 11:15:24 PM (10 years ago)
Author:
landauf
Message:

removed unused code and debug output

Location:
code/branches/presentationFS14/src/orxonox/collisionshapes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentationFS14/src/orxonox/collisionshapes/CollisionShape.h

    r10073 r10203  
    170170            void notifyDetached(); // Notifies the CollisionShape of being detached from a CompoundCollisionShape.
    171171
    172             inline unsigned int getParentID()
    173                 { return this->parentID_; }
    174 
    175             inline CompoundCollisionShape* getParent()
    176                 { return this->parent_; }
    177 
    178172        protected:
    179173            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  
    304304        this->updatePublicShape();*/
    305305    }
    306 
    307     int CompoundCollisionShape::getNumChildShapes()
    308     {
    309         return this->compoundShape_->getNumChildShapes();
    310     }
    311306}
  • code/branches/presentationFS14/src/orxonox/collisionshapes/CompoundCollisionShape.h

    r10073 r10203  
    7171
    7272            virtual void changedScale();
    73             int getNumChildShapes();
    74 
    75             inline std::map<CollisionShape*, btCollisionShape*> getShapesMap()
    76             {
    77                 return attachedShapes_;
    78             }
    7973
    8074        private:
Note: See TracChangeset for help on using the changeset viewer.