$nav ===== Function: llCos ===== float llCos(float arg) Return the cosine of the argument. The argument should be an angle in radians. ===== Parameters ===== === arg === A $lty[float] with the angle whose cosine is to be found, in radians. ===== Return value ===== A $lty[float] with the cosine of the argument. ===== Notes ===== * Inputs of $pinf, $minf and $nan result in $nan. * 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. ===== Short examples ===== float F; F = llCos(1); // Sets F to approx. 0.540302, because that's the cosine of 1 radian. F = llCos(-1); // Sets F to approx. 0.540302 too, // because the cosine of -1 radian equals the cosine of 1 radian. F = llCos(0); // Sets F to 1, because that's the cosine of 0. F = llCos(PI); // Sets F to -1, which is the cosine of PI. F = llCos(1e20); // Sets F to 1e20 because 1e20 is returned unchanged. ===== Complete examples ===== $fn[llCos] is very frequently used together with $lfn[llSin], as $fn[llCos] gives the X component and $fn[llSin] the Y component of a unit 2D vector at the given angle. default { state_entry() { llOwnerSay("Calculate a vector at an angle. Please say the angle in chat."); llListen(0, "", llGetOwner(), ""); } listen(integer chan, string name, key id, string msg) { float angle = (float)msg * DEG_TO_RAD; llOwnerSay("Input angle: " + msg + "; resulting vector: (" + (string)llCos(angle) + ", " + (string)llSin(angle) + ")"); } } The opposite calculation, i.e. finding the angle of a 2D vector, can be performed with $lfn[llAtan2]. ===== See also ===== === Related trigonometric functions === * $lfn[llSin] calculates the sine of the argument. * $lfn[llAcos] calculates the inverse cosine of the argument. * $lfn[llAtan2] calculates the angle of a 2D vector. === Other trigonometric functions === * $lfn[llAsin] calculates the inverse sine of the argument. * $lfn[llTan] calculates the tangent of the argument. === Related information === * $lty[float] type and associated caveats and limitations.