Interface IBoundingVolume
interface IBoundingVolume {
intersectsFrustum(frustum: Frustum): IntersectionResult;
intersectsPlane(plane: vec4): IntersectionResult;
}
intersectsFrustum(frustum: Frustum): IntersectionResult;
intersectsPlane(plane: vec4): IntersectionResult;
}
Implemented by
Index
Methods
Methods
intersectsFrustum
Parameters
- frustum: Frustum
Returns IntersectionResult
intersectsPlane
Performs an intersection test with a half-space defined by a plane equation. The half-space is assumed to lie on the positive side of the plane.
Parameters
- plane: vec4
Returns IntersectionResult
Was this helpful?
Performs an intersection test with a frustum.