Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / InsideOrCrossingScreenPolygonQuad Method
The first vertex
The second vertex
The third vertex
The fourth vertex
The screen polygon parameters

In This Topic
    InsideOrCrossingScreenPolygonQuad Method
    In This Topic
    Checks whether the quad is inside or crossing the given screen polygon.
    Syntax
    'Declaration
     
    Public Shared Function InsideOrCrossingScreenPolygonQuad( _
       ByVal pt1 As Point3D, _
       ByVal pt2 As Point3D, _
       ByVal pt3 As Point3D, _
       ByVal pt4 As Point3D, _
       ByVal myParams As ScreenPolygonParams _
    ) As Boolean
    public static bool InsideOrCrossingScreenPolygonQuad( 
       Point3D pt1,
       Point3D pt2,
       Point3D pt3,
       Point3D pt4,
       ScreenPolygonParams myParams
    )

    Parameters

    pt1
    The first vertex
    pt2
    The second vertex
    pt3
    The third vertex
    pt4
    The fourth vertex
    myParams
    The screen polygon parameters

    Return Value

    True if the quad is inside or is crossing the screen polygon.
    See Also