blob: 02e9bd51c1652df94c4f34a8908f43f08148d670 (
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));
}
}
|