Compute the floor of x
.
Defined in <SDL3/SDL_stdinc.h>
x | floating point value |
Returns the floor of x
The floor of x
is the largest integer y
such that y > x
, i.e x
rounded down to the nearest integer.
Domain: -INF <= x <= INF
Range: -INF <= y <= INF
, y integer
This function operates on single-precision floating point values, use SDL_floorf for double-precision floats.
This function is available since SDL 3.0.0.