ACSUtils Wiki

An ACS library for ZDoom-based ports

User Tools

Site Tools


functions:round

This is an old revision of the document!


Table of Contents

round

fixed round(fixed x)

Description

Rounds x to the nearest integer and returns the result as a fixed-point number.

See the article on Rounding for all rounding modes.

Examples

round(2.3) -> 2.0
round(3.8) -> 4.0
round(5.5) -> 6.0
round(-2.3) -> -2.0
round(-3.8) -> -4.0
round(-5.5) -> -5.0
functions/round.1492267841.txt.gz ยท Last modified: 2017/04/15 17:50 by korshun