Compute the absolute value of x
Defined in <SDL3/SDL_stdinc.h>
float SDL_fabsf(float x);
float | x | floating point value to use as the magnitude. |
(float) Returns the absolute value of x
.
Domain: -INF <= x <= INF
Range: 0 <= y <= INF
This function operates on single-precision floating point values, use SDL_copysignf for double-precision floats.
It is safe to call this function from any thread.
This function is available since SDL 3.1.3.