Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / InsideOrCrossingFrustumQuad Method
The frustum parameters
Vertices list

In This Topic
    InsideOrCrossingFrustumQuad Method (UtilityEx)
    In This Topic
    Checks whether the quad are inside or crossing the frustum defined by the given planes.
    Syntax
    'Declaration
     
    Public Shared Function InsideOrCrossingFrustumQuad( _
       ByVal myParams As FrustumParams, _
       ByVal vertices As IList(Of Point3D) _
    ) As Boolean
    public static bool InsideOrCrossingFrustumQuad( 
       FrustumParams myParams,
       IList<Point3D> vertices
    )

    Parameters

    myParams
    The frustum parameters
    vertices
    Vertices list

    Return Value

    True if the quad is inside or crossing the frustum.
    See Also