Created
August 21, 2015 16:52
-
-
Save bobmagicii/6cae1afe1d728097dde8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scriptname Math Hidden | |
; Calculates the absolute value of the passed in value - N for N, and N for (-N) | |
float Function abs(float afValue) global native | |
; Calculates the arccosine of the passed in value, returning degrees | |
float Function acos(float afValue) global native | |
; Calculates the arcsine of the passed in value, returning degrees | |
float Function asin(float afValue) global native | |
; Calculates the arctangent of the passed in value, returning degrees | |
float Function atan(float afValue) global native | |
; Calculates the ceiling of the passed in value - the smallest integer greater than or equal to the value | |
int Function Ceiling(float afValue) global native | |
; Calculates the cosine of the passed in value (in degrees) | |
float Function cos(float afValue) global native | |
; Converts degrees to radians | |
float Function DegreesToRadians(float afDegrees) global native | |
; Calculates the floor of the passed in value - the largest integer less than or equal to the value | |
int Function Floor(float afValue) global native | |
; Calculates x raised to the y power | |
float Function pow(float x, float y) global native | |
; Converts radians to degrees | |
float Function RadiansToDegrees(float afRadians) global native | |
; Calculates the sine of the passed in value (in degrees) | |
float Function sin(float afValue) global native | |
; Calculate the square root of the passed in value | |
float Function sqrt(float afValue) global native | |
; Calculates the tangent of the passed in value (in degrees) | |
float Function tan(float afValue) global native | |
; SKSE additions built 2015-05-24 00:46:48.937000 UTC | |
int Function LeftShift(int value, int shiftBy) global native | |
int Function RightShift(int value, int shiftBy) global native | |
int Function LogicalAnd(int arg1, int arg2) global native | |
int Function LogicalOr(int arg1, int arg2) global native | |
int Function LogicalXor(int arg1, int arg2) global native | |
int Function LogicalNot(int arg1) global native | |
float Function Log(float arg1) global native |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment