Round x
to the nearest integer.
Defined in <SDL3/SDL_stdinc.h>
double SDL_round(double x);
double | x | floating point value. |
(double) Returns the nearest integer to x
.
Rounds x
to the nearest integer. Values halfway between integers will be rounded away from zero.
Domain: -INF <= x <= INF
Range: -INF <= y <= INF
, y integer
This function operates on double-precision floating point values, use SDL_roundf for single-precision floats. To get the result as an integer type, use SDL_lround.
It is safe to call this function from any thread.
This function is available since SDL 3.1.3.