Unofficial LSL reference

User Tools

Login

You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.

Login

Forgotten your password? Get a new one: Set new password

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

functions:llsin [2014-06-14 08:29 SLT]
sei [Short examples] wording
functions:llsin [2015-02-04 18:06 SLT] (current)
sei style
Line 1: Line 1:
 +$nav
 ===== Function: llSin ===== ===== Function: llSin =====
  
Line 14: Line 15:
 ===== Return value ===== ===== Return value =====
  
-A [[types/float]] with the sine of the argument.+$lty[float] with the sine of the argument.
  
 ===== Notes ===== ===== Notes =====
  
-  * Inputs of **-Infinity****Infinity** ​and **NaN** ​result in **NaN**.+  * Inputs of $minf$pinf and $nan result in $nan.
   * If the angle is otherwise not between approx. -9.22337e18 and 9.22337e18, the argument is returned unchanged.   * If the angle is otherwise not between approx. -9.22337e18 and 9.22337e18, the argument is returned unchanged.
   * Otherwise, the return value is always between -1 and 1.   * Otherwise, the return value is always between -1 and 1.
Line 36: Line 37:
 ===== Complete examples ===== ===== Complete examples =====
  
-llSin is very frequently used together with [[llCos]], as llCos gives the X component and llSin the Y component of a unit 2D vector at the given angle.+$fn[llSinis very frequently used together with $lfn[llCos], as $fn[llCosgives the X component and $fn[llSinthe Y component of a unit 2D vector at the given angle.
  
 <file lsl2 llSin-llCos-example.lsl>​ <file lsl2 llSin-llCos-example.lsl>​
Line 56: Line 57:
 </​file>​ </​file>​
  
-The opposite calculation,​ i.e. finding the angle of a 2D vector, can be performed with [[llAtan2]].+The opposite calculation,​ i.e. finding the angle of a 2D vector, can be performed with $lfn[llAtan2].
  
 ===== See also ===== ===== See also =====
  
 === Related trigonometric functions === === Related trigonometric functions ===
-  * [[llCos]] calculates the cosine of the argument. +  * $lfn[llCos] calculates the cosine of the argument. 
-  * [[llAsin]] calculates the inverse sine of the argument. +  * $lfn[llAsin] calculates the inverse sine of the argument. 
-  * [[llAtan2]] calculates the angle of a 2D vector.+  * $lfn[llAtan2] calculates the angle of a 2D vector.
  
 === Other trigonometric functions === === Other trigonometric functions ===
-  * [[llAcos]] calculates the inverse cosine of the argument. +  * $lfn[llAcos] calculates the inverse cosine of the argument. 
-  * [[llTan]] calculates the tangent of the argument.+  * $lfn[llTan] calculates the tangent of the argument.
  
 === Related information === === Related information ===
-  * [[types/float]] type and associated caveats and limitations.+  * $lty[float] type and associated caveats and limitations.