Utility.IsInFrustum (PlaneEquation(), Point3D, Double, out Boolean) Method

Tells if a hypothetical sphere with the specified center and radius is inside the given frustum planes.
Public Shared Function IsInFrustum( _ 
ByVal frustum As PlaneEquation(), _ 
ByVal center As Point3D, _ 
ByVal radius As Double, _ 
ByRef intersect As Boolean
) As Boolean
This language is not supported or no code example is available.
public static bool IsInFrustum( 
PlaneEquation[] frustum
Point3D center
double radius
out bool intersect 
)
This language is not supported or no code example is available.

Parameters

frustum
PlaneEquation[]

Frustum planes

center
Point3D

Center of the sphere

radius
double

Radius of the sphere

intersect
bool

When true, frustum and sphere intersect.

Return Value

bool

True if the hypothetical sphere is inside the planes.

.NET Framework

Supported in: 4.8

In this article

Definition