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

@@ -32,7 +32,7 @@ namespace Nz
constexpr bool ApproxEqual(const OrientedBox& obb, T maxDifference = std::numeric_limits<T>::epsilon()) const;
constexpr const Vector3<T>& GetCorner(BoxCorner corner) const;
constexpr const Vector3<T>* GetCorners() const;
constexpr const EnumArray<BoxCorner, Vector3<T>>& GetCorners() const;
constexpr bool IsValid() const;