  | NMathFunctionsAtan2(Single, Single) Method | 
            Calculates the arctangent of the two floating point numbers.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static float Atan2(
	float f,
	float g
)
Public Shared Function Atan2 ( 
	f As Single,
	g As Single
) As Single
public:
static float Atan2(
	float f, 
	float g
)
static member Atan2 : 
        f : float32 * 
        g : float32 -> float32 Parameters
- f  Single
 - A floating point number.
 - g  Single
 - A floating point number.
 
Return Value
SingleThe arctangent of 
f and 
g.
See Also