Fix compilation

This commit is contained in:
Lynix
2023-08-25 20:27:10 +02:00
parent 39d7832880
commit a234f2e7bd

View File

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