Description
Wiki Description
Calculates the cosine of the value (in degrees) it is given.
Documentation Comment
Calculates the cosine of the passed in value (in degrees)
Caveats
Parameters
floatafValue
CK Wiki Description
The value to get the cosine of, in degrees.
Examples
float x = math.cos(180.0) ; x == -1
float y = math.cos(90.0) ; y == 0Auto-Generated Example
float myFloat__afValue
float returnedValue = Math.cos(myFloat__afValue)