Don't click here unless you want to be banned.

LSL Wiki : llAsin

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl338.us.archive.org
float llAsin(float val)

Returns the arcsine in radians of val.

Basically, it is the inverse of sine (llSin), just as as division is the inverse of multiplication.

Example:
float sine_return;
float arcsine_return;

sine_return = llSin( 1 );
arcsine_return = llAsin( sine_return );

llOwnerSay( "sine_return = llSin( 1 ) == " + (string)sine_return );
llOwnerSay( "arcsine_return = llAsin( sine_return ) == " + (string)arcsine_return );

This would result in the following messages:
sine_return = llSin( 1 ) == 0.841471
arcsine_return = llAsin( sine_return ) == 1.000000

Compare with llSin.


This article wasn't helpful for you? Maybe the related article at the LSL Portal is able to bring enlightenment.

Functions | Math
There is no comment on this page. [Display comments/form]