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

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

    Parameters

    a
    First 3D point
    b
    Second 3D point

    Return Value

    The distance between a and b.
    See Also