OsMin

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Add a example)
Line 6: Line 6:
 
|description=Returns the smaller of two numbers. Wraps to the system Math.Min() function.
 
|description=Returns the smaller of two numbers. Wraps to the system Math.Min() function.
 
|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">
 +
default
 +
{
 +
    state_entry()
 +
    {
 +
        llSay(PUBLIC_CHANNEL, "Script running");
 +
    }
  
 +
    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));
 +
    }
 +
}</source>
 +
}}
 
== See Also ==
 
== See Also ==
 
* [[osMax]]
 
* [[osMax]]

Revision as of 08:49, 15 August 2019

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)
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Script running");
    }
 
    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


See Also

Personal tools
General
About This Wiki