MathObject::atan2 Method (Double, Double)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Calculates the inverse tangent of the quotient of the specified numbers.

Namespace:   Microsoft.JScript
Assembly:  Microsoft.JScript (in Microsoft.JScript.dll)

public:
[JSFunctionAttribute(JSFunctionAttributeEnum::None, JSBuiltin::Math_atan2)]
static double atan2(
	double dy,
	double dx
)

Parameters

dy
Type: System::Double

The numerator of the quotient to calculate the inverse tangent of.

dx
Type: System::Double

The denominator of the quotient to calculate the inverse tangent of.

Return Value

Type: System::Double

The inverse tangent of dy/dx, measured in radians.

.NET Framework
Available since 1.1
Return to top
Show: