Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

rint

From Quake Wiki

float rint(float val)

Usage[edit]

Rounds the passed number to the nearest whole number.

Parameters[edit]

  • val
The number to round.

Return[edit]

Returns the rounded number.

Example[edit]

// Performs an action with a 50/50 chance
float chance = random();
if (rint(chance))
    DoAction();