1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00

Correções em collision.hpp

This commit is contained in:
Danilo 2024-11-10 21:48:02 -03:00
parent 488e0a513e
commit e42d09196c

View File

@ -155,17 +155,17 @@ namespace xna {
}
//Gets the near plane of the BoundingFrustum.
Plane Near() { return planes[0]; }
constexpr Plane Near() const { return planes[0]; }
//Gets the far plane of the BoundingFrustum.
Plane Far() { return planes[1]; }
constexpr Plane Far() const { return planes[1]; }
//Gets the left plane of the BoundingFrustum.
Plane Left() { return planes[2]; }
constexpr Plane Left() const { return planes[2]; }
//Gets the right plane of the BoundingFrustum.
Plane Right() { return planes[3]; }
constexpr Plane Right() const { return planes[3]; }
//Gets the top plane of the BoundingFrustum.
Plane Top() { return planes[4]; }
constexpr Plane Top() const { return planes[4]; }
//Gets the bottom plane of the BoundingFrustum.
Plane Bottom() { return planes[5]; }
constexpr Plane Bottom() const { return planes[5]; }
constexpr bool operator==(BoundingFrustum const& other) const {
return matrix == other.matrix;