remove unused *= operator for AABox

This commit is contained in:
Andrew Meadows 2015-03-06 15:31:52 -08:00
parent 6fa1b1c600
commit 6936d65db9
2 changed files with 0 additions and 8 deletions

View file

@ -485,9 +485,3 @@ AABox& AABox::operator += (const AABox& box) {
}
return (*this);
}
AABox& AABox::operator *= (float multiplier) {
_corner *= multiplier;
_scale *= multiplier;
return (*this);
}

View file

@ -75,8 +75,6 @@ public:
AABox& operator += (const glm::vec3& point);
AABox& operator += (const AABox& box);
AABox& operator *= (float multiplier);
bool isInvalid() const { return _corner == glm::vec3(std::numeric_limits<float>::infinity()); }
private: