Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Line Class / Line Constructor / Line Constructor(Double,Double,Double,Double,Double,Double)
Start point's X coordinate
Start point's Y coordinate
Start point's Z coordinate
End point's X coordinate
End point's Y coordinate
End point's Z coordinate

In This Topic
    Line Constructor(Double,Double,Double,Double,Double,Double)
    In This Topic
    Individual coordinates constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal x1 As Double, _
       ByVal y1 As Double, _
       ByVal z1 As Double, _
       ByVal x2 As Double, _
       ByVal y2 As Double, _
       ByVal z2 As Double _
    )
    public Line( 
       double x1,
       double y1,
       double z1,
       double x2,
       double y2,
       double z2
    )

    Parameters

    x1
    Start point's X coordinate
    y1
    Start point's Y coordinate
    z1
    Start point's Z coordinate
    x2
    End point's X coordinate
    y2
    End point's Y coordinate
    z2
    End point's Z coordinate
    See Also