Utility.InsideOrCrossingFrustum Method

Checks whether the triangle is inside or crossing the frustum defined by the given planes.
Public Shared Function InsideOrCrossingFrustum( _ 
ByVal pt1 As Point3D, _ 
ByVal pt2 As Point3D, _ 
ByVal pt3 As Point3D, _ 
ByVal frustum As PlaneEquation() _ 
) As Boolean
This language is not supported or no code example is available.
public static bool InsideOrCrossingFrustum( 
Point3D pt1
Point3D pt2
Point3D pt3
PlaneEquation[] frustum 
)
This language is not supported or no code example is available.

Parameters

pt1
Point3D

The first triangle vertex

pt2
Point3D

The second triangle vertex

pt3
Point3D

The third triangle vertex

frustum
PlaneEquation[]

The frustum planes equations

Return Value

bool

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

.NET Framework

Supported in: 4.8

In this article

Definition