Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Vector2D Class / Add Method
The first 2D point
The second 2D point

In This Topic
    Add Method (Vector2D)
    In This Topic
    Addition between two 2D points.
    Syntax
    'Declaration
     
    Public Shared Function Add( _
       ByVal a As Point2D, _
       ByVal b As Point2D _
    ) As Vector2D
    public static Vector2D Add( 
       Point2D a,
       Point2D b
    )

    Parameters

    a
    The first 2D point
    b
    The second 2D point

    Return Value

    The resulting 2D vector.
    See Also