MathHelperHypotenuse Method

Returns the length of the hypotenuse of a right angle triangle given the length of the opposite and adjacent sides.

Namespace:  Dundas.BI.Utility
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
public static double Hypotenuse(
	double a,
	double b
)

Parameters

a
Type: SystemDouble
The length of the first side of the right angle triangle.
b
Type: SystemDouble
The length of the second side of the right angle triangle.

Return Value

Type: Double
The length of the hypotenuse.
See Also