mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 18:51:29 +00:00
[Cleanup] Use default ctor/dtor in oriented_bounding_box.h (#3307)
# Notes - Use default ctor/dtor instead of empty ones.
This commit is contained in:
parent
ecf2a369cc
commit
ac5922bb32
@ -7,9 +7,9 @@
|
|||||||
class OrientedBoundingBox
|
class OrientedBoundingBox
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
OrientedBoundingBox() { }
|
OrientedBoundingBox() = default;
|
||||||
OrientedBoundingBox(const glm::vec3 &pos, const glm::vec3 &rot, const glm::vec3 &scale, const glm::vec3 &extents);
|
OrientedBoundingBox(const glm::vec3 &pos, const glm::vec3 &rot, const glm::vec3 &scale, const glm::vec3 &extents);
|
||||||
~OrientedBoundingBox() { }
|
~OrientedBoundingBox() = default;
|
||||||
|
|
||||||
bool ContainsPoint(const glm::vec3 &p) const;
|
bool ContainsPoint(const glm::vec3 &p) const;
|
||||||
private:
|
private:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user