TrigDegreesMinutesSecondsToRadians Method (Int32, Int32, Int32, Double) |
Converts the specified number of revolutions, degrees, minutes, and seconds to radians.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double DegreesMinutesSecondsToRadians(
int revolutions,
int degrees,
int minutes,
double seconds
)
Public Shared Function DegreesMinutesSecondsToRadians (
revolutions As Integer,
degrees As Integer,
minutes As Integer,
seconds As Double
) As Double
public:
static double DegreesMinutesSecondsToRadians(
int revolutions,
int degrees,
int minutes,
double seconds
)
static member DegreesMinutesSecondsToRadians :
revolutions : int *
degrees : int *
minutes : int *
seconds : float -> float
Parameters
- revolutions
- Type: SystemInt32
The number of complete (360 degree) revolutions. - degrees
- Type: SystemInt32
The number of degrees. - minutes
- Type: SystemInt32
The number of minutes. - seconds
- Type: SystemDouble
The number of seconds.
Return Value
Type:
DoubleThe corresponding angle in radians.
See Also