toFixed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <dl class="command_description"> </dl>" to "")
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
Line 69: Line 69:
[[str]] [[getPos]] [[player]]; {{cc|"[3231.04882813,171.80192566,0.00143862]"}}</code>
[[str]] [[getPos]] [[player]]; {{cc|"[3231.04882813,171.80192566,0.00143862]"}}</code>


| [[toString]], [[toArray]], [[toLower]], [[toUpper]], [[toLowerANSI]], [[toUpperANSI]]
|seealso= [[toString]], [[toArray]], [[toLower]], [[toUpper]], [[toLowerANSI]], [[toUpperANSI]]
}}
}}



Revision as of 01:05, 17 February 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
MathStrings

Syntax

Syntax:
Syntax needed
Parameters:
number: Number - number to convert
decimals: Number - number of decimals to display (range 0-20)
Return Value:
Return value needed

Alternative Syntax

Syntax:
toFixed decimals Template:Since
Parameters:
decimals: Number - number of decimals to display (range 0-20). -1 to reset to default number of decimals
Return Value:
Nothing

Examples

Example 1:
123 toFixed 2; // "123.00"
Example 2:
2.34 toFixed 1; // "2.3" 2.35 toFixed 1; // "2.4"
Example 3:
Convert position to string preserving position precision: fn_posToString = { format [ "[%1,%2,%3]", _this select 0 toFixed 8, _this select 1 toFixed 8, _this select 2 toFixed 8 ] }; str getPos player; // "[3231.05,171.802,0.00143862]" getPos player call fn_posToString; // "[3231.04882813,171.80192566,0.00143862]"
Example 4:
Same as Example 3 only using new alternative syntax:str getPos player; // "[3231.05,171.802,0.00143862]" toFixed 8; str getPos player; // "[3231.04882813,171.80192566,0.00143862]"

Additional Information

See also:
toStringtoArraytoLowertoUppertoLowerANSItoUpperANSI

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 September 2, 2016 - 21:56 (UTC)
R3vo
parseNumber (3.56346 toFixed 4); //0.0026 ms (10000 cycles)

[3.5634,4] call BIS_fnc_cutDecimals; //0.0111 ms (10000 cycles)