Returns the sine of a specified angle, measured in radians.
[Visual Basic] Public Shared Function Sin( _ ByVal a As Double _ ) As Double [C#] public static double Sin( double a ); [C++] public: static double Sin( double a ); [JScript] public static function Sin( a : double ) : double;
Returns the sine of the angle d.
If the angle, d, is in degrees, multiply it by p/180 to convert it to radians before calling this method.