NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Math.Sin

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;

Parameters

a
An angle measured in radians.

Return Value

Returns the sine of the angle d.

Remarks

If the angle, d, is in degrees, multiply it by p/180 to convert it to radians before calling this method.

See Also

Math Class | Math Members | System Namespace