IntersectionBoundingVolume

from panda3d.core import IntersectionBoundingVolume
class IntersectionBoundingVolume

Bases:

Bases: GeometricBoundingVolume

This special bounding volume is the intersection of all of its constituent bounding volumes.

A point is defined to be within an IntersectionBoundingVolume if it is within all of its component bounding volumes.

Inheritance diagram

Inheritance diagram of IntersectionBoundingVolume

__init__()

Constructs an empty intersection.

addComponent(component: GeometricBoundingVolume)

Adds a new component to the volume. This does not necessarily increase the total number of components by one, and you may or may not be able to find this component in the volume by a subsequent call to getComponent(); certain optimizations may prevent the component from being added, or have other unexpected effects on the total set of components.

clearComponents()

Removes all components from the volume.

property components Sequence[GeometricBoundingVolume]

Returns the nth component in the intersection.

static getClassType() TypeHandle
getComponent(n: int) GeometricBoundingVolume

Returns the nth component in the intersection.

getComponents() list
getNumComponents() int

Returns the number of components in the intersection.

operatorNew(size: int)