mirror of
https://github.com/g-truc/glm.git
synced 2024-12-02 04:34:34 +00:00
6 lines
94 B
C++
6 lines
94 B
C++
template <>
|
|
inline bool sign(float const & f)
|
|
{
|
|
return (*((int *)(&f)) & 0x80000000) == 0;
|
|
}
|