|
Rebel Fork Framework
|
Base class for octree queries. More...
#include <Urho3D/Graphics/OctreeQuery.h>
Public Member Functions | |
| OctreeQuery (ea::vector< Drawable * > &result, DrawableFlags drawableFlags, unsigned viewMask) | |
| Construct with query parameters. | |
| virtual | ~OctreeQuery ()=default |
| Destruct. | |
| virtual Intersection | TestOctant (const BoundingBox &box, bool inside)=0 |
| Intersection test for an octant. | |
| virtual void | TestDrawables (Drawable **start, Drawable **end, bool inside)=0 |
| Intersection test for drawables. | |
Public Attributes | |
| ea::vector< Drawable * > & | result_ |
| Result vector reference. | |
| DrawableFlags | drawableFlags_ |
| Drawable flags to include. | |
| unsigned | viewMask_ |
| Drawable layers to include. | |
Additional Inherited Members | |
Private Member Functions inherited from Urho3D::NonCopyable | |
| NonCopyable (const NonCopyable &other)=delete | |
| NonCopyable (NonCopyable &&other)=delete | |
| NonCopyable & | operator= (const NonCopyable &other)=delete |
| NonCopyable & | operator= (NonCopyable &&other)=delete |
Base class for octree queries.
|
pure virtual |
Intersection test for drawables.
Implemented in Urho3D::PointOctreeQuery, Urho3D::SphereOctreeQuery, Urho3D::BoxOctreeQuery, Urho3D::FrustumOctreeQuery, Urho3D::AllContentOctreeQuery, Urho3D::PointLightGeometryQuery, Urho3D::SpotLightGeometryQuery, and Urho3D::DirectionalLightShadowCasterQuery.
|
pure virtual |
Intersection test for an octant.
Implemented in Urho3D::PointOctreeQuery, Urho3D::SphereOctreeQuery, Urho3D::BoxOctreeQuery, Urho3D::FrustumOctreeQuery, and Urho3D::AllContentOctreeQuery.