Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Vector2D Class / Vector2D Constructor / Vector2D Constructor(Point2D,Point2D)
First point
Second point

In This Topic
    Vector2D Constructor(Point2D,Point2D)
    In This Topic
    Two 2D points constructor. A 2D vector with direction from P0 to P1.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal P0 As Point2D, _
       ByVal P1 As Point2D _
    )
    public Vector2D( 
       Point2D P0,
       Point2D P1
    )

    Parameters

    P0
    First point
    P1
    Second point
    See Also