Round x
to the nearest integer.
Defined in <SDL3/SDL_stdinc.h>
x | floating point value |
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.
This function is available since SDL 3.0.0.