remove override of locationChanged which was keeping the render-bounds of Line3DOverlays from updating during calls to editOverlay

This commit is contained in:
Seth Alves 2017-03-07 19:32:34 -08:00
parent 1e51ae62b1
commit adc3581d63
2 changed files with 0 additions and 7 deletions

View file

@ -258,8 +258,3 @@ QVariant Line3DOverlay::getProperty(const QString& property) {
Line3DOverlay* Line3DOverlay::createClone() const {
return new Line3DOverlay(this);
}
void Line3DOverlay::locationChanged(bool tellPhysics) {
// do nothing
}

View file

@ -48,8 +48,6 @@ public:
virtual Line3DOverlay* createClone() const override;
virtual void locationChanged(bool tellPhysics = true) override;
glm::vec3 getDirection() const { return _direction; }
float getLength() const { return _length; }
glm::vec3 getLocalStart() const { return getLocalPosition(); }