|
UtilsToRad Method
|
Converts angle in degree to radians.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static double ToRad(
this double angle
)
<ExtensionAttribute>
Public Shared Function ToRad (
angle As Double
) As Double
public:
[ExtensionAttribute]
static double ToRad(
double angle
)
[<ExtensionAttribute>]
static member ToRad :
angle : float -> float
Parameters
- angle
- Type: SystemDouble
Angle in deg.
Return Value
Type:
DoubleAngle in rad.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Double. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also