Difference between revisions of "Fsin"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Gribbleshnibit8
(Created page with "{{Function |origin = LU |summary = Returns the approximate sine value of a float for faster calculation. See precision values below. |name = fsin |returnType = float |arg...")
 
imported>Pintocat
 
Line 20: Line 20:
*[[cos]]
*[[cos]]
[[Category:Functions_(Lutana)]]
[[Category:Functions_(Lutana)]]
[[Category:Sound_Functions_(Lutana)]]
[[Category:Math_Functions_(Lutana)]]

Latest revision as of 12:45, 21 December 2016

< [[::Category:Functions|Category:Functions]]

A function added by the Lutana NVSE plugin.

Description

Returns the approximate sine value of a float for faster calculation. See precision values below.

Syntax

[help]
(float) fsin value:float precision:int

Precision Flags

0 : fastest approximation (default)
1 : fast approximation, higher precision
2 : calls the ASM fsincos function for full precision (may not be faster than vanilla)


See Also