Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Utility Class / InsideOrCrossingFrustum Method
The first triangle vertex
The second triangle vertex
The third triangle vertex
The frustum planes equations

In This Topic
    InsideOrCrossingFrustum Method (Utility)
    In This Topic
    Checks whether the triangle is inside or crossing the frustum defined by the given planes.
    Syntax
    'Declaration
     
    Public Shared Function InsideOrCrossingFrustum( _
       ByVal pt1 As Point3D, _
       ByVal pt2 As Point3D, _
       ByVal pt3 As Point3D, _
       ByVal frustum() As PlaneEquation _
    ) As Boolean
    public static bool InsideOrCrossingFrustum( 
       Point3D pt1,
       Point3D pt2,
       Point3D pt3,
       PlaneEquation[] frustum
    )

    Parameters

    pt1
    The first triangle vertex
    pt2
    The second triangle vertex
    pt3
    The third triangle vertex
    frustum
    The frustum planes equations

    Return Value

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