Calculates the arctangent of the two floating point numbers.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static float Atan2(
	float f,
	float g
)
Visual Basic (Declaration)
Public Shared Function Atan2 ( _
	f As Single, _
	g As Single _
) As Single
Visual C++
public:
static float Atan2(
	float f, 
	float g
)

Parameters

f
Type: System..::.Single
A floating point number.
g
Type: System..::.Single
A floating point number.

Return Value

The arctangent of f and g.

See Also