mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
6 lines
94 B
C++
6 lines
94 B
C++
#include "math/Types.hpp"
|
|
|
|
fixed16::operator float() const {
|
|
return this->n / 32767.0f;
|
|
}
|