Difference between revisions of "MIST roundTbl"
From DCS World Wiki - Hoggitworld.com
(Created page with "{{Mission Scripting |fName= mist.utils.roundTbl| |vNum = Mist 4.1 |desc= This function rounds all values on the first level of a table to the desired amount. Numbers within...") |
(No difference)
|
Latest revision as of 08:27, 13 April 2018
mist.utils.roundTbl
Added with: Mist 4.1 |
Description |
This function rounds all values on the first level of a table to the desired amount. Numbers within nested tables will be ignored. Optional idp defines how many places after the decimal to round the number to; for example, an idp of 2 means the number will be rounded to the nearest hundredth. idp can be negative too, for example, -3 would round to the nearest thousand. If not specified, idp defaults to 0 (rounds to the nearest whole number). |
Syntax |
table mist.utils.roundTbl(table numbers ) |
Valid Input Values: |
table with numbers |
Return value: |
table |
Return example: |
Usage Examples: |
The following will return a vec3 table of the units current position rounded to tenths of a meter.
end |
Notes: |
Related Functions |
converter, toDegree, toRadian, round, roundTbl, metersToNM, metersToFeet, NMToMeters, feetToMeters, mpsToKnots, mpsToKmph, knotsToMps, kmphToMps, kelvinToCelsius, FahrenheitToCelsius, celsiusToFahrenheit, hexToRGB |