remove cruft, formatting

This commit is contained in:
Seth Alves 2015-03-14 11:57:08 -07:00
parent 0c803cd82b
commit a58f0fe76e
2 changed files with 0 additions and 6 deletions

View file

@ -1002,12 +1002,8 @@ float EntityItem::getRadius() const {
return 0.5f * glm::length(_dimensions);
}
void EntityItem::getReadyToComputeShape() {
}
void EntityItem::computeShapeInfo(ShapeInfo& info) {
info.setParams(getShapeType(), 0.5f * getDimensions());
}
const float MIN_POSITION_DELTA = 0.0001f;

View file

@ -299,8 +299,6 @@ public:
static void setSendPhysicsUpdates(bool value) { _sendPhysicsUpdates = value; }
static bool getSendPhysicsUpdates() { return _sendPhysicsUpdates; }
virtual void getReadyToComputeShape();
protected:
static bool _sendPhysicsUpdates;