Fix SGN macro
This version behaves the way the documentation states: 0 values will resolve to 0 instead of +1
This commit is contained in:
parent
ed2f84735b
commit
3347cc25b8
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@
|
|||
#endif
|
||||
|
||||
#ifndef SGN
|
||||
#define SGN(m_v) (((m_v) < 0) ? (-1.0) : (+1.0))
|
||||
#define SGN(m_v) (((m_v) == 0) ? (0.0) : (((m_v) < 0) ? (-1.0) : (+1.0)))
|
||||
#endif
|
||||
|
||||
#ifndef MIN
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue