blob: ad37ccd9cf24e27d8e7981fbb89b622e38757c01 (
plain)
1
2
3
4
5
6
7
8
9
|
// Touch the object with this script in it to see the arcsine of random numbers!
default
{
touch_start(integer num)
{
float r = llFrand(2) - 1.0;
llOwnerSay("The arcsine of " + (string)r + " is " + llAsin(r));
}
}
|