Skip to content

Instantly share code, notes, and snippets.

@reportbase
Created March 22, 2015 21:11
Show Gist options
  • Save reportbase/5761bfd9b55dd31fdeca to your computer and use it in GitHub Desktop.
Save reportbase/5761bfd9b55dd31fdeca to your computer and use it in GitHub Desktop.
is float negative?
inline bool is_negative(float x)
{
unsigned int* ui = (unsigned int*)&x;
return (*ui & 0x80000000) != 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment