OpenNETCF Smart Device Framework 2.3

Namespace:  OpenNETCF
Assembly:  OpenNETCF (in OpenNETCF.dll) Version: 2.3.0.0

Syntax

C#
public static double Atan2(
	double y,
	double x
)
Visual Basic (Declaration)
Public Shared Function Atan2 ( _
	y As Double, _
	x As Double _
) As Double
Visual Basic (Usage)
Dim y As Double
Dim x As Double
Dim returnValue As Double

returnValue = Math2.Atan2(y, x)
Visual C++
public:
static double Atan2(
	double y, 
	double x
)
J#
public static double Atan2(
	double y,
	double x
)
JScript
public static function Atan2(
	y : double, 
	x : double
) : double
JavaScript
OpenNETCF.Math2.Atan2 = function(y, x);

Parameters

y
Type: System..::.Double
x
Type: System..::.Double

See Also