mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 19:13:38 +02:00
remove unused *= operator for AABox
This commit is contained in:
parent
6fa1b1c600
commit
6936d65db9
2 changed files with 0 additions and 8 deletions
|
@ -485,9 +485,3 @@ AABox& AABox::operator += (const AABox& box) {
|
|||
}
|
||||
return (*this);
|
||||
}
|
||||
|
||||
AABox& AABox::operator *= (float multiplier) {
|
||||
_corner *= multiplier;
|
||||
_scale *= multiplier;
|
||||
return (*this);
|
||||
}
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue