Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Point3D Class / DistanceSquared Method
First point
Second point

In This Topic
    DistanceSquared Method (Point3D)
    In This Topic
    Computes the squared distance between two 3D points.
    Syntax
    'Declaration
     
    Public Shared Function DistanceSquared( _
       ByVal a As Point3D, _
       ByVal b As Point3D _
    ) As Double
    public static double DistanceSquared( 
       Point3D a,
       Point3D b
    )

    Parameters

    a
    First point
    b
    Second point

    Return Value

    The squared distance between a and b.
    See Also