Panda3D
|
This special bounding volume is the intersection of all of its constituent bounding volumes. More...
#include <pandadoc.hpp>
Public Member Functions | |
__init__ () | |
Constructs an empty intersection. | |
addComponent (const GeometricBoundingVolume component) | |
Adds a new component to the volume. | |
clearComponents () | |
Removes all components from the volume. | |
const GeometricBoundingVolume | getComponent (int n) |
Returns the nth component in the intersection. | |
list | getComponents () |
int | getNumComponents () |
Returns the number of components in the intersection. | |
operator new (int size) | |
![]() | |
int | contains (const GeometricBoundingVolume vol) |
Returns the appropriate set of IntersectionFlags to indicate the amount of intersection with the indicated volume. | |
int | contains (const LPoint3 a, const LPoint3 b) |
Returns the appropriate set of IntersectionFlags to indicate the amount of intersection with the indicated line segment. | |
int | contains (const LPoint3 point) |
Returns the appropriate set of IntersectionFlags to indicate the amount of intersection with the indicated point. | |
bool | extendBy (const GeometricBoundingVolume vol) |
Increases the size of the volume to include the given volume. | |
bool | extendBy (const LPoint3 point) |
Increases the size of the volume to include the given point. | |
LPoint3 | getApproxCenter () |
xform (const LMatrix4 mat) | |
![]() | |
int | contains (const BoundingVolume vol) |
Returns the appropriate set of IntersectionFlags to indicate the amount of intersection with the indicated volume. | |
bool | extendBy (const BoundingVolume vol) |
Increases the size of the volume to include the given volume. | |
bool | isEmpty () |
Any kind of volume might be empty. | |
bool | isInfinite () |
The other side of the empty coin is an infinite volume. | |
BoundingVolume | makeCopy () |
output (Ostream out) | |
setInfinite () | |
Marks the volume as infinite, even if it is normally finite. | |
write (Ostream out, int indent_level) | |
![]() | |
TypeHandle | getType () |
int | getTypeIndex () |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. | |
bool | isExactType (TypeHandle handle) |
Returns true if the current object is the indicated type exactly. | |
bool | isOfType (TypeHandle handle) |
Returns true if the current object is or derives from the indicated type. | |
![]() | |
int | getRefCount () |
Returns the current reference count. | |
ref () | |
Explicitly increments the reference count. | |
bool | testRefCountIntegrity () |
Does some easy checks to make sure that the reference count isn't completely bogus. | |
bool | testRefCountNonzero () |
Does some easy checks to make sure that the reference count isn't zero, or completely bogus. | |
bool | unref () |
Explicitly decrements the reference count. | |
Static Public Member Functions | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
Public Attributes | |
const GeometricBoundingVolume | components [] |
Returns the nth component in the intersection. | |
![]() | |
TypeHandle | type |
Returns the TypeHandle representing this object's type. | |
![]() | |
int | ref_count |
The current reference count. | |
Additional Inherited Members | |
![]() | |
enum | BoundsType { BT_default = 0 , BT_best = 1 , BT_sphere = 2 , BT_box = 3 , BT_fastest = 4 } |
enum | IntersectionFlags { IF_no_intersection = 0 , IF_possible = 1 , IF_some = 2 , IF_all = 4 , IF_dont_understand = 8 } |
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.
__init__ | ( | ) |
Constructs an empty intersection.
addComponent | ( | const GeometricBoundingVolume | component | ) |
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 get_component(); 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.
|
static |
const GeometricBoundingVolume getComponent | ( | int | n | ) |
Returns the nth component in the intersection.
list getComponents | ( | ) |
int getNumComponents | ( | ) |
Returns the number of components in the intersection.
operator new | ( | int | size | ) |
const GeometricBoundingVolume components[] |
Returns the nth component in the intersection.