Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Segment2D Class / Segment2D Constructor / Segment2D Constructor(Double,Double,Double,Double)
The X value of start point
The Y value of start point
The X value of end point
The Y value of end point

In This Topic
    Segment2D Constructor(Double,Double,Double,Double)
    In This Topic
    Individual coordinates constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal x0 As Double, _
       ByVal y0 As Double, _
       ByVal x1 As Double, _
       ByVal y1 As Double _
    )
    public Segment2D( 
       double x0,
       double y0,
       double x1,
       double y1
    )

    Parameters

    x0
    The X value of start point
    y0
    The Y value of start point
    x1
    The X value of end point
    y1
    The Y value of end point
    See Also