Difference between revisions of "LlAtan2"

From Second Life Wiki
Jump to navigation Jump to search
m (updated lsl tags)
m
Line 10: Line 10:
|caveats
|caveats
|constants
|constants
|examples=<lsl>
|examples=<lsl>default
default
{
{
   state_entry()
   state_entry()
Line 23: Line 22:
     llOwnerSay("The tangent of y divided by x is " + (string)llAtan2(num1, num2));
     llOwnerSay("The tangent of y divided by x is " + (string)llAtan2(num1, num2));
   }
   }
}
}</lsl>
</lsl>
|helpers
|helpers
|also_functions=
|also_functions=

Revision as of 13:57, 15 February 2008

Summary

Function: float llAtan2( float y, float x );

Returns a float that is the "Wikipedia logo"arctangent2 of y, x.

• float y
• float x

Similar to the arctangent(y/x) except it utilizes the signs of x & y to determine the quadrant. Returns zero if x and y are zero.

Examples

<lsl>default {

 state_entry()
 {
   float num1 = llFrand(100.0);
   float num2 = llFrand(100.0);
   llOwnerSay("y = " + (string)num1);
   llOwnerSay("x = " + (string)num2);
   llOwnerSay("The tangent of y divided by x is " + (string)llAtan2(num1, num2));
 }
}</lsl>

See Also

Functions

• llSin llAsin sine & inverse Sine
• llCos llAcos cosine & inverse cosine
• llTan tangent

Articles

•  "Wikipedia logo"Atan2
•  "Wikipedia logo"Inverse_trigonometric_function

Deep Notes

Search JIRA for related Issues

Signature

function float llAtan2( float y, float x );