Click or drag to resize

UtilCosRadians Method

Returns the cosine of the specified (in radians) angle.

Namespace:  Demo3D.Common
Assembly:  Demo3D.Common (in Demo3D.Common.dll) Version: 15.0.2.11458
Syntax
C#
public static double CosRadians(
	double angle
)

Parameters

angle
Type: SystemDouble
Angle in Radians.

Return Value

Type: Double
The cosine of the angle.
Remarks
This just forwards to Cos(Double), it is here to complement CosDegrees(Double).
See Also