OsMin
From OpenSimulator
(Difference between revisions)
(Add a example) |
m (Typo) |
||
(2 intermediate revisions by one user not shown) | |||
Line 7: | Line 7: | ||
|additional_info=This function was added in 0.7.4-post-fixes | |additional_info=This function was added in 0.7.4-post-fixes | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
+ | // | ||
+ | // osMin Script Exemple | ||
+ | // Author: djphil | ||
+ | // | ||
+ | |||
default | default | ||
{ | { | ||
state_entry() | state_entry() | ||
{ | { | ||
− | llSay(PUBLIC_CHANNEL, " | + | llSay(PUBLIC_CHANNEL, "Touch to see osMin usage."); |
} | } | ||
− | + | ||
touch_start(integer number) | touch_start(integer number) | ||
{ | { | ||
Line 20: | Line 25: | ||
llSay(PUBLIC_CHANNEL, "\nThe smaller value between " + (string)a + " and " + (string)b + " is " + (string)osMin(a, b)); | llSay(PUBLIC_CHANNEL, "\nThe smaller value between " + (string)a + " and " + (string)b + " is " + (string)osMin(a, b)); | ||
} | } | ||
− | }</source> | + | } |
+ | </source> | ||
}} | }} | ||
== See Also == | == See Also == | ||
+ | * [[osMin]] | ||
* [[osMax]] | * [[osMax]] |
Latest revision as of 15:32, 5 December 2020
float osMin(float a, float b)
| |
Returns the smaller of two numbers. Wraps to the system Math.Min() function. | |
Threat Level | This function does not do a threat level check |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // osMin Script Exemple // Author: djphil // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osMin usage."); } touch_start(integer number) { float a = llFrand(10.0); float b = llFrand(10.0); llSay(PUBLIC_CHANNEL, "\nThe smaller value between " + (string)a + " and " + (string)b + " is " + (string)osMin(a, b)); } } | |
Notes | |
This function was added in 0.7.4-post-fixes |
[edit] See Also
- osMin
- osMax