round: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<h3 style="display:none">Bottom Section</h3> " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| arma1 | | arma1 | ||
|1.00 | |1.00 | ||
|gr1= Math | |gr1= Math | ||
| Rounds up or down to the closest integer. | | Rounds up or down to the closest integer. | ||
| [[Number]] <nowiki>=</nowiki> '''round''' x | | [[Number]] <nowiki>=</nowiki> '''round''' x | ||
|p1= x: [[Number]] | |p1= x: [[Number]] | ||
| [[Number]] | | [[Number]] | ||
| x1 =<pre>_val= round 5.25, result is 5</pre> | | x1 =<pre>_val= round 5.25, result is 5</pre> | ||
| 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]] | | [[ceil]], [[floor]], [[linearConversion]], [[Math Commands]] | ||
}} | }} |
Revision as of 11:04, 18 January 2021
Description
- Description:
- Rounds up or down to the closest integer.
- Groups:
- Math
Syntax
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
- 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 1.66 and parseNumber 1.00, you could round with decimals with a dirty little "hack": (round ((getDir player) * 100)) / 100