Fix compilation

This commit is contained in:
Lynix 2023-08-25 20:27:10 +02:00
parent 39d7832880
commit a234f2e7bd
1 changed files with 1 additions and 1 deletions

View File

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