mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 06:16:04 +03:00
8 lines
137 B
C++
8 lines
137 B
C++
#include "math/Types.hpp"
|
|
#include "math/Utils.hpp"
|
|
#include <cmath>
|
|
|
|
fixed16::operator float() const {
|
|
return this->n / 32767.0f;
|
|
}
|