| 487 | } |
| 488 | |
| 489 | inline F32 mSign( const F32 n ) |
| 490 | { |
| 491 | if ( n > 0.0f ) |
| 492 | return 1.0f; |
| 493 | if ( n < 0.0f ) |
| 494 | return -1.0f; |
| 495 | |
| 496 | return 0.0f; |
| 497 | } |
| 498 | |
| 499 | /// Returns the input value squared. |
| 500 | inline F32 mSquared( F32 n ) |
no outgoing calls
no test coverage detected