Added slerp and updated quaternion class

This commit is contained in:
dario
2024-06-19 15:08:02 +02:00
parent dec530a7df
commit 92e3d32abc
8 changed files with 122 additions and 21 deletions

View File

@@ -1,12 +1,16 @@
#ifndef INC_UTILS_HPP_
#define INC_UTILS_HPP_
#include <math.h>
namespace sta
{
namespace math
{
float fast_inv_sqrt(float);
float clip(float value, float min, float max);
} // namespace math
} // namespace sta
#endif /* INC_UTILS_HPP_ */
#endif /* INC_UTILS_HPP_ */