Difference between revisions of "Math Script"

102 bytes added ,  01:19, 22 October 2017
Re-order F4SE Global functions, add missing function
imported>Qazaaq
m
imported>ShadeMe
(Re-order F4SE Global functions, add missing function)
Line 46: Line 46:


== F4SE Global Functions ==
== F4SE Global Functions ==
*float Function [[Exp - Math|Exp]](float arg1)
**Returns the exponential value of a specified number.
*int Function [[LeftShift - Math|LeftShift]](int value, int shiftBy)
*int Function [[LeftShift - Math|LeftShift]](int value, int shiftBy)
**Shifts value left by n number of bits.
**Shifts value left by n number of bits.
*int Function [[RightShift - Math|RightShift]](int value, int shiftBy)
*float Function [[Log - Math|Log]](float arg1)
**Shifts value right by n number of bits.
**Returns the logarithm of a specified number.
*int Function [[LogicalAnd - Math|LogicalAnd]](int arg1, int arg2)
*int Function [[LogicalAnd - Math|LogicalAnd]](int arg1, int arg2)
**ANDs arg1 with arg2.
**ANDs arg1 with arg2.
*int Function [[LogicalNot - Math|LogicalNot]](int arg1)
**Inverts arg1's bits.
*int Function [[LogicalOr - Math|LogicalOr]](int arg1, int arg2)
*int Function [[LogicalOr - Math|LogicalOr]](int arg1, int arg2)
**ORs arg1 with arg2.
**ORs arg1 with arg2.
*int Function [[LogicalXor - Math|LogicalXor]](int arg1, int arg2)
*int Function [[LogicalXor - Math|LogicalXor]](int arg1, int arg2)
**Exclusive ORs arg1 with arg2.
**Exclusive ORs arg1 with arg2.
*int Function [[LogicalNot - Math|LogicalNot]](int arg1)
*int Function [[RightShift - Math|RightShift]](int value, int shiftBy)
**Inverts arg1's bits.
**Shifts value right by n number of bits.
*float Function [[Log - Math|Log]](float arg1)
**Returns the logarithm of a specified number.


== Member Functions ==
== Member Functions ==
Anonymous user