Difference between revisions of "ACos"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>DragoonWraith
imported>Timeslip
(now accepts degree's instead of radians)
Line 13: Line 13:
==Notes==
==Notes==


*At present, all OBSE trigonometric functions take radians, not degrees. To convert an angle in degrees to radians, use this:<pre>set radians to ( 3.14 * ( degrees / 180 ) )</pre>
*From v0005, all OBSE trigonometric functions take and return degrees. Versions of the functions which accept radians are still available by prefixing the function name with an r. (i.e. racos)
*This function can be used in a mathematical formula (a + acos b), but a mathematical formula will not compile as the arguement for this function (acos (a + b) doesn't work).
*This function can be used in a mathematical formula (a + acos b), but a mathematical formula will not compile as the arguement for this function (acos (a + b) doesn't work).
*acos a + b = ( acos a ) + b
*acos a + b = ( acos a ) + b

Revision as of 09:00, 9 August 2006

A command for Oblivion Script Extender

Syntax:

acos [float]

Returns the arccosine of a number (i.e. the angle whose cosine this is)

Example

set n to ( r / x )
set theta to acos n

Notes

  • From v0005, all OBSE trigonometric functions take and return degrees. Versions of the functions which accept radians are still available by prefixing the function name with an r. (i.e. racos)
  • This function can be used in a mathematical formula (a + acos b), but a mathematical formula will not compile as the arguement for this function (acos (a + b) doesn't work).
  • acos a + b = ( acos a ) + b

See Also