Nevron .NET Vision
Nevron Namespace / NMath Class / SafeAtan2 Method


In This Topic
    SafeAtan2 Method
    In This Topic
    Returns the angle whose tangent is the quotient of two specified numbers.
    Syntax
    'Declaration
     
    
    Public Shared Function SafeAtan2( _
       ByVal n As System.Double, _
       ByVal d As System.Double _
    ) As System.Double
    'Usage
     
    
    Dim n As System.Double
    Dim d As System.Double
    Dim value As System.Double
     
    value = NMath.SafeAtan2(n, d)
    public static System.double SafeAtan2( 
       System.double n,
       System.double d
    )

    Parameters

    n
    d

    Return Value

    The arctangent of (n,d) or 0 if the operands are insignificant (+/- 1e-50)
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also