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

@@ -75,9 +75,9 @@ namespace Nz
}
template<typename T>
constexpr const Vector3<T>* OrientedBox<T>::GetCorners() const
constexpr const EnumArray<BoxCorner, Vector3<T>>& OrientedBox<T>::GetCorners() const
{
return &m_corners.front();
return m_corners;
}
/*!