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