round: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| arma1 |Game name=
| arma1 |Game name=
Line 7: Line 6:


|gr1= Math |GROUP1=
|gr1= Math |GROUP1=
____________________________________________________________________________________________


| Rounds up or down to the closest integer.  |DESCRIPTION=
| Rounds up or down to the closest integer.  |DESCRIPTION=
____________________________________________________________________________________________


| [[Number]] <nowiki>=</nowiki> '''round''' x |SYNTAX=
| [[Number]] <nowiki>=</nowiki> '''round''' x |SYNTAX=
Line 17: Line 14:


| [[Number]] |RETURNVALUE=
| [[Number]] |RETURNVALUE=
____________________________________________________________________________________________
| x1 =<pre>_val= round 5.25, result is 5</pre> |Example1=
| x1 =<pre>_val= round 5.25, result is 5</pre> |Example1=
| x2 =<pre>_val= round 5.55, result is 6</pre> | = Example 2
| x2 =<pre>_val= round 5.55, result is 6</pre> | = Example 2
____________________________________________________________________________________________


| [[ceil]], [[floor]], [[linearConversion]], [[Math Commands]]|SEEALSO=
| [[ceil]], [[floor]], [[linearConversion]], [[Math Commands]]|SEEALSO=

Revision as of 03:14, 17 January 2021

Hover & click on the images for description

Description

Description:
Rounds up or down to the closest integer.
Groups:
Math

Syntax

Syntax:
Number = round x
Parameters:
x: Number
Return Value:
Number

Examples

Example 1:
_val= round 5.25, result is 5
Example 2:
_val= round 5.55, result is 6

Additional Information

See also:
ceilfloorlinearConversionMath Commands

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section

Posted on February 23, 2018 - 05:21 (UTC)
feint
If you want to round to a specific place past the decimal point, use toFixed and parseNumber together.

For example: parseNumber (3.16666 toFixed 1); // 3.2
Posted on April 3, 2018 - 21:33 (UTC)
Lou Montana
Before toFixed Arma 3 logo black.png1.66 and parseNumber Logo A1 black.png1.00, you could round with decimals with a dirty little "hack": (round ((getDir player) * 100)) / 100