---------------------------------------------------------------------
| 3945 | } |
| 3946 | //--------------------------------------------------------------------- |
| 3947 | SphereSceneQuery *SceneManager::createSphereQuery( const Sphere &sphere, uint32 mask ) |
| 3948 | { |
| 3949 | DefaultSphereSceneQuery *q = OGRE_NEW DefaultSphereSceneQuery( this ); |
| 3950 | q->setSphere( sphere ); |
| 3951 | q->setQueryMask( mask ); |
| 3952 | return q; |
| 3953 | } |
| 3954 | //--------------------------------------------------------------------- |
| 3955 | PlaneBoundedVolumeListSceneQuery *SceneManager::createPlaneBoundedVolumeQuery( |
| 3956 | const PlaneBoundedVolumeList &volumes, uint32 mask ) |
nothing calls this directly
no test coverage detected