Math/OrientedBox: Make GetCorners return an EnumArray ref

This commit is contained in:
SirLynix
2023-08-25 17:13:39 +02:00
parent 532b1b2c4d
commit efe36ca6e8
3 changed files with 4 additions and 4 deletions

View File

@@ -368,7 +368,7 @@ namespace Nz
template<typename T>
constexpr IntersectionSide Frustum<T>::Intersect(const OrientedBox<T>& orientedbox) const
{
return Intersect(orientedbox.GetCorners(), 8);
return Intersect(orientedbox.GetCorners().data(), 8);
}
/*!