Difference between revisions of "Category:LSL Needs Example"

From Second Life Wiki
Jump to navigation Jump to search
m
(Updated <lsl> to <source>)
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{LSL Header}}
{{LSL Header|ml=*}}{{LSLC|}}
Articles in this category need examples written for them. To do that set the 'examples' value equal to an multiline string.
Articles in this category need examples written for them. To do that set the 'examples' value equal to a multiline string.


Example: {{LSLG|llFrand}} (the order of the parameters in the definition has no effect on the rendering).
Example: [[llFrand]] (the order of the parameters in the definition has no effect on the rendering).
<pre>
<nowiki> {{LSL_Function
{{LSL_Function
|sort=Frand
|sort=Frand
|func=llFrand
|func=llFrand
|func_id=8
|func_id=8
|func_sleep=0.0
|func_sleep=0.0
|func_energy=10.0
|func_energy=10.0
|p1_type=float
|p1_type=float
|p1_name=mag
|p1_name=mag
|p1_desc=Any valid float value
|p1_desc=Any valid float value
|return_type=float
|return_type=float
|return_text=that is pseudo random number in the range [0.0,mag) or (mag, 0.0].
|return_text=that is pseudo random number in the range [0.0,mag) or (mag, 0.0].
|spec=returns a pseudo random number in range [0.0, mag) or (mag, 0.0], depending upon the sign of mag.
|spec=returns a pseudo random number in range [0.0, mag) or (mag, 0.0], depending upon the sign of mag.
|caveats
|caveats
</nowiki><font style="color:red;"><nowiki>|examples=<source lang="lsl2">default
|examples=<pre>
{
default
    touch_start(integer total_number)
{
    {
    touch_start(integer total_number)
        // When touched, say "Heads" with probability 0.5,  
    {
        // otherwise, say "Tails."
        // When touched, say "Heads" with probability 0.5,  
        if ( llFrand(1.) < .5)
        // otherwise, say "Tails."
            llSay(0, "Heads");
        if ( llFrand(1.) < .5)
        else
            llSay(0, "Heads");
            llSay(0, "Tails");
        else
    }
            llSay(0, "Tails");
}</source></nowiki></font><nowiki>
    }
|func_helpers
}
|also
&lt;/pre>
|notes=
|func_helpers
The random number generator is not a source of entropy.
|also
|notes=
The sequence of random numbers are shared across the entire process, and not independently seeded.
The random number generator is not a source of entropy.
Therefore, the pseudo random number generation is not suitable for any application which requires  
 
completely predictable or completely unpredictable results.
The sequence of random numbers are shared across the entire process, and not independently seeded. Therefore, the pseudo random number generation is not suitable for any application which requires completely predictable or completely unpredictable results.
|cat1=Math
|cat1=Math
|cat2
|cat2
|cat3
|cat3
}}</nowiki>
}}
</pre>

Latest revision as of 21:02, 22 May 2020

Articles in this category need examples written for them. To do that set the 'examples' value equal to a multiline string.

Example: llFrand (the order of the parameters in the definition has no effect on the rendering).

 {{LSL_Function
 |sort=Frand
 |func=llFrand
 |func_id=8
 |func_sleep=0.0
 |func_energy=10.0
 |p1_type=float
 |p1_name=mag
 |p1_desc=Any valid float value
 |return_type=float
 |return_text=that is pseudo random number in the range [0.0,mag) or (mag, 0.0].
 |spec=returns a pseudo random number in range [0.0, mag) or (mag, 0.0], depending upon the sign of mag.
 |caveats
 |examples=<source lang="lsl2">default
 {
     touch_start(integer total_number)
     {
         // When touched, say "Heads" with probability 0.5, 
         // otherwise, say "Tails."
         if ( llFrand(1.) < .5)
             llSay(0, "Heads");
         else
             llSay(0, "Tails");
     }
 }</source>
 |func_helpers
 |also
 |notes=
 The random number generator is not a source of entropy.
 
 The sequence of random numbers are shared across the entire process, and not independently seeded.
 Therefore, the pseudo random number generation is not suitable for any application which requires 
 completely predictable or completely unpredictable results.
 |cat1=Math
 |cat2
 |cat3
 }}

Pages in category "LSL Needs Example"

The following 200 pages are in this category, out of 636 total.

(previous page) (next page)
(previous page) (next page)