Sin (open)
Returns the sine of a value.
Syntax
LOADLIB "wh::float.whlib";
FLOAT FUNCTION Sin(FLOAT value)Parameters
FLOAT valueThe FLOAT value (in radians) from which to determine the sine
Return value
FLOATThe sine of @italic value
Examples
// The FLOAT value will be 1.0
FLOAT f := Sin(0.5 * PI);