Documentation
Urho3D::FrustumOctreeQuery Class Reference
Frustum octree query. More...
#include <OctreeQuery.h>
Inheritance diagram for Urho3D::FrustumOctreeQuery:
Collaboration diagram for Urho3D::FrustumOctreeQuery:
Public Member Functions | |
| FrustumOctreeQuery (PODVector< Drawable * > &result, const Frustum &frustum, unsigned char drawableFlags=DRAWABLE_ANY, unsigned viewMask=DEFAULT_VIEWMASK) | |
| Construct with frustum and query parameters. | |
| virtual Intersection | TestOctant (const BoundingBox &box, bool inside) |
| Intersection test for an octant. | |
| virtual void | TestDrawables (Drawable **start, Drawable **end, bool inside) |
| Intersection test for drawables. | |
Public Member Functions inherited from Urho3D::OctreeQuery | |
| OctreeQuery (PODVector< Drawable * > &result, unsigned char drawableFlags, unsigned viewMask) | |
| Construct with query parameters. | |
| virtual | ~OctreeQuery () |
| Destruct. | |
Public Attributes | |
| Frustum | frustum_ |
| Frustum. | |
Public Attributes inherited from Urho3D::OctreeQuery | |
| PODVector< Drawable * > & | result_ |
| Result vector reference. | |
| unsigned char | drawableFlags_ |
| Drawable flags to include. | |
| unsigned | viewMask_ |
| Drawable layers to include. | |
Detailed Description
Frustum octree query.
The documentation for this class was generated from the following files:
- /home/travis/build/urho3d/Urho3D/Source/Urho3D/Graphics/OctreeQuery.h
- /home/travis/build/urho3d/Urho3D/Source/Urho3D/Graphics/OctreeQuery.cpp

Public Member Functions inherited from