OsRound
From OpenSimulator
(Difference between revisions)
(Add exemple) |
|||
| Line 19: | Line 19: | ||
float value = llFrand(1000); | float value = llFrand(1000); | ||
float round = osRound(value, 3); | float round = osRound(value, 3); | ||
| − | llOwnerSay( "osRound(value, 3) of \"" + (string)value + "\" is \"" + (string)round + "\""); | + | llOwnerSay("osRound(value, 3) of \"" + (string)value + "\" is \"" + (string)round + "\""); |
} | } | ||
} | } | ||
Revision as of 23:49, 1 March 2019
float osRound(float value, integer ndigits)
| |
| returns the value rounded to the number with a number if decimal places set by ndigits. ndigits = 0 is same as llRound(), max value is 15. | |
| Threat Level | No threat level specified |
| Permissions | No permissions specified |
| Extra Delay | 0 seconds |
| Example(s) | |
// Example of osRound default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch me to show osRound"); } touch_start(integer n) { float value = llFrand(1000); float round = osRound(value, 3); llOwnerSay("osRound(value, 3) of \"" + (string)value + "\" is \"" + (string)round + "\""); } } | |
| Notes | |
| note that ll*Say do llRound(value,6) by default so you can't test with them.. | |