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

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

    Parameters

    myParams
    The frustum parameters
    vertices
    Vertices list
    triangles
    Triangles list

    Return Value

    True if the triangles are inside or crossing the frustum.
    See Also