csKDTree Class Reference
[Geometry utilities]
A KD-tree.
More...
#include <csgeom/kdtree.h>
Inherits scfImplementation1<csKDTree, iDebugHelper>.
Public Member Functions | |
csKDTreeChild * | AddObject (const csBox3 &bbox, void *object) |
Add an object to this kd-tree node. | |
void | Clear () |
Make the tree empty. | |
csKDTree () | |
Create a new empty KD-tree. | |
void | Distribute () |
Distribute all objects in this node to its children. | |
void | Flatten () |
Do a full flatten of this node. | |
void | Front2Back (const csVector3 &pos, csKDTreeVisitFunc *func, void *userdata, uint32 frustum_mask) |
Traverse the tree from front to back. | |
void | FullDistribute () |
Do a full distribution of this node and all children. | |
csKDTree * | GetChild1 () const |
Get child one. | |
csKDTree * | GetChild2 () const |
Get child two. | |
int | GetEstimatedObjectCount () |
Get the estimated total number of objects in this node and all children. | |
const csBox3 & | GetNodeBBox () const |
Return the bounding box of the node itself (does not always contain all children since children are not split by the tree). | |
int | GetObjectCount () const |
Return the number of objects in this node. | |
csKDTreeChild ** | GetObjects () const |
Return the array of objects in this node. | |
iKDTreeUserData * | GetUserObject () const |
Get the user object attached to this node. | |
void | MoveObject (csKDTreeChild *object, const csBox3 &new_bbox) |
Move an object (give it a new bounding box). | |
uint32 | NewTraversal () |
Start a new traversal. | |
void | RemoveObject (csKDTreeChild *object) |
Remove an object from the kd-tree. | |
void | SetObjectDescriptor (iKDTreeObjectDescriptor *descriptor) |
For debugging: set the object descriptor. | |
void | SetParent (csKDTree *p) |
Set the parent. | |
void | SetUserObject (iKDTreeUserData *userobj) |
Set the user object for this node. | |
void | TraverseRandom (csKDTreeVisitFunc *func, void *userdata, uint32 frustum_mask) |
Traverse the tree in random order. | |
void | UnlinkObject (csKDTreeChild *object) |
Unlink an object from the kd-tree. | |
virtual | ~csKDTree () |
Destroy the KD-tree. |
Detailed Description
A KD-tree.A KD-tree is a binary tree that organizes 3D space. This implementation is dynamic. It allows moving, adding, and removing of objects which will alter the tree dynamically. The main purpose of this tree is to provide for an approximate front to back ordering.
The KD-tree supports delayed insertion. When objects are inserted in the tree they are not immediatelly distributed over the nodes but instead they remain in the main node until it is really needed to distribute them. The advantage of this is that you can insert/remove a lot of objects in the tree and then do the distribution calculation only once. This is more efficient and it also generates a better tree as more information is available then.
Definition at line 167 of file kdtree.h.
Constructor & Destructor Documentation
csKDTree::csKDTree | ( | ) |
Create a new empty KD-tree.
virtual csKDTree::~csKDTree | ( | ) | [virtual] |
Destroy the KD-tree.
Member Function Documentation
csKDTreeChild* csKDTree::AddObject | ( | const csBox3 & | bbox, | |
void * | object | |||
) |
Add an object to this kd-tree node.
Returns a csKDTreeChild pointer which represents the object inside the kd-tree. Object addition is delayed. This function will not yet alter the structure of the kd-tree. Distribute() will do that.
void csKDTree::Clear | ( | ) |
Make the tree empty.
void csKDTree::Distribute | ( | ) |
Distribute all objects in this node to its children.
This may also create new children if needed. Note that this will only distribute one level (this node) and will not recurse into the children.
void csKDTree::Flatten | ( | ) |
Do a full flatten of this node.
This means that all objects are put back in the object list of this node and the KD-tree children are removed.
void csKDTree::Front2Back | ( | const csVector3 & | pos, | |
csKDTreeVisitFunc * | func, | |||
void * | userdata, | |||
uint32 | frustum_mask | |||
) |
Traverse the tree from front to back.
Every node of the tree will be encountered. The mask parameter is optionally used for frustum checking. Front2Back will pass it to the tree nodes.
void csKDTree::FullDistribute | ( | ) |
Do a full distribution of this node and all children.
csKDTree* csKDTree::GetChild1 | ( | ) | const [inline] |
csKDTree* csKDTree::GetChild2 | ( | ) | const [inline] |
int csKDTree::GetEstimatedObjectCount | ( | ) | [inline] |
const csBox3& csKDTree::GetNodeBBox | ( | ) | const [inline] |
int csKDTree::GetObjectCount | ( | ) | const [inline] |
csKDTreeChild** csKDTree::GetObjects | ( | ) | const [inline] |
iKDTreeUserData* csKDTree::GetUserObject | ( | ) | const [inline] |
void csKDTree::MoveObject | ( | csKDTreeChild * | object, | |
const csBox3 & | new_bbox | |||
) |
Move an object (give it a new bounding box).
uint32 csKDTree::NewTraversal | ( | ) |
Start a new traversal.
This will basically make a new timestamp and return it. You can then use that timestamp to check if objects have been visited already. This function is automatically called by Front2Back() but it can be useful to call this if you plan to do a manual traversal of the tree.
void csKDTree::RemoveObject | ( | csKDTreeChild * | object | ) |
Remove an object from the kd-tree.
The 'csKDTreeChild' instance will be deleted.
void csKDTree::SetObjectDescriptor | ( | iKDTreeObjectDescriptor * | descriptor | ) | [inline] |
void csKDTree::SetParent | ( | csKDTree * | p | ) | [inline] |
void csKDTree::SetUserObject | ( | iKDTreeUserData * | userobj | ) |
Set the user object for this node.
Can be 0 to clear it. The old user object will be DecRef'ed and the (optional) new one will be IncRef'ed.
void csKDTree::TraverseRandom | ( | csKDTreeVisitFunc * | func, | |
void * | userdata, | |||
uint32 | frustum_mask | |||
) |
Traverse the tree in random order.
The mask parameter is optionally used for frustum checking. TraverseRandom will pass it to the tree nodes.
void csKDTree::UnlinkObject | ( | csKDTreeChild * | object | ) |
Unlink an object from the kd-tree.
The 'csKDTreeChild' instance will NOT be deleted.
The documentation for this class was generated from the following file:
- csgeom/kdtree.h
Generated for Crystal Space 1.4.0 by doxygen 1.5.8