Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Triangle Class / Triangle Constructor / Triangle Constructor(Double,Double,Double,Double,Double,Double,Double,Double,Double)
First vertex's X-coordinate
First vertex's Y-coordinate
First vertex's Z-coordinate
Second vertex's X-coordinate
Second vertex's Y-coordinate
Second vertex's Z-coordinate
Third vertex's X-coordinate
Third vertex's Y-coordinate
Third vertex's Z-coordinate

In This Topic
    Triangle Constructor(Double,Double,Double,Double,Double,Double,Double,Double,Double)
    In This Topic
    Standard constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal v1x As Double, _
       ByVal v1y As Double, _
       ByVal v1z As Double, _
       ByVal v2x As Double, _
       ByVal v2y As Double, _
       ByVal v2z As Double, _
       ByVal v3x As Double, _
       ByVal v3y As Double, _
       ByVal v3z As Double _
    )
    public Triangle( 
       double v1x,
       double v1y,
       double v1z,
       double v2x,
       double v2y,
       double v2z,
       double v3x,
       double v3y,
       double v3z
    )

    Parameters

    v1x
    First vertex's X-coordinate
    v1y
    First vertex's Y-coordinate
    v1z
    First vertex's Z-coordinate
    v2x
    Second vertex's X-coordinate
    v2y
    Second vertex's Y-coordinate
    v2z
    Second vertex's Z-coordinate
    v3x
    Third vertex's X-coordinate
    v3y
    Third vertex's Y-coordinate
    v3z
    Third vertex's Z-coordinate
    See Also