Initial revision of animqueue

This commit is contained in:
2021-01-12 14:14:38 -05:00
parent 78f8610eb8
commit 25b9b4cb5d
18 changed files with 785 additions and 308 deletions

View File

@@ -5,6 +5,7 @@
#include <set>
#include <algorithm>
#include <sstream>
#include <tuple>
namespace util {
@@ -43,6 +44,7 @@ uint32_t hash3(uint32_t a, uint32_t b, uint32_t c);
// Returns a floating point value between lo and hi inclusive.
double hash_to_float(double lo, double hi, uint32_t a, uint32_t b, uint32_t c);
using XYZ = std::tuple<float, float, float>;
} // namespace util
#endif // UTIL_HPP