Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Point2D Class / AreEqual Method
First point
Second point
The 2D diagonal length of your model.

In This Topic
    AreEqual Method (Point2D)
    In This Topic
    Compares two 2D points in the given domain.
    Syntax
    'Declaration
     
    Public Shared Function AreEqual( _
       ByVal p1 As Point2D, _
       ByVal p2 As Point2D, _
       ByVal domainSize As Double _
    ) As Boolean
    public static bool AreEqual( 
       Point2D p1,
       Point2D p2,
       double domainSize
    )

    Parameters

    p1
    First point
    p2
    Second point
    domainSize
    The 2D diagonal length of your model.

    Return Value

    True if the two point are coincident, false otherwise.
    See Also