Minor fixes related to test migration
Some checks failed
Run tests / Explore-Gitea-Actions (push) Failing after 2m32s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 37s

This commit is contained in:
2024-06-26 11:44:04 -04:00
parent 4d9a9d3a95
commit 70aa74719a
13 changed files with 207 additions and 241 deletions

View File

@@ -113,6 +113,7 @@ public:
static Vector3 RandomBox(RNG& rng, float min, float max);
static Vector3 RotateAroundAxis(const Vector3& vec, const Vector3& axis, const float radians);
static inline Vector3 RandomGeneral(RNG& rng, float minElem, float maxElem) { return RandomBox(rng, minElem, maxElem); }
public: