OsRound
From OpenSimulator
(Difference between revisions)
m (Change integer to float) |
|||
(3 intermediate revisions by one user not shown) | |||
Line 5: | Line 5: | ||
|function_syntax=float osRound(float value, integer ndigits) | |function_syntax=float osRound(float value, integer ndigits) | ||
|ossl_example= | |ossl_example= | ||
+ | <source lang = "lsl"> | ||
+ | // | ||
+ | // osRound Script Exemple | ||
+ | // Author: djphil | ||
+ | // | ||
+ | |||
+ | default | ||
+ | { | ||
+ | state_entry() | ||
+ | { | ||
+ | llSay(PUBLIC_CHANNEL, "Touch to see osRound usage."); | ||
+ | } | ||
+ | |||
+ | touch_start(integer n) | ||
+ | { | ||
+ | float value = llFrand(1000.0); | ||
+ | float round = osRound(value, 3); | ||
+ | llOwnerSay("osRound(value, 3) of \"" + (string)value + "\" is \"" + (string)round + "\""); | ||
+ | } | ||
+ | } | ||
+ | </source> | ||
|description=returns the value rounded to the number with a number if decimal places set by ndigits.<br />ndigits = 0 is same as llRound(), max value is 15. | |description=returns the value rounded to the number with a number if decimal places set by ndigits.<br />ndigits = 0 is same as llRound(), max value is 15. | ||
|additional_info=note that ll*Say do llRound(value,6) by default so you can't test with them.. | |additional_info=note that ll*Say do llRound(value,6) by default so you can't test with them.. | ||
}} | }} |
Latest revision as of 08:57, 7 December 2020
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) | |
// // osRound Script Exemple // Author: djphil // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osRound usage."); } touch_start(integer n) { float value = llFrand(1000.0); 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.. |