---------------------------------------------------------------------
| 3953 | } |
| 3954 | //--------------------------------------------------------------------- |
| 3955 | PlaneBoundedVolumeListSceneQuery *SceneManager::createPlaneBoundedVolumeQuery( |
| 3956 | const PlaneBoundedVolumeList &volumes, uint32 mask ) |
| 3957 | { |
| 3958 | DefaultPlaneBoundedVolumeListSceneQuery *q = |
| 3959 | OGRE_NEW DefaultPlaneBoundedVolumeListSceneQuery( this ); |
| 3960 | q->setVolumes( volumes ); |
| 3961 | q->setQueryMask( mask ); |
| 3962 | return q; |
| 3963 | } |
| 3964 | |
| 3965 | //--------------------------------------------------------------------- |
| 3966 | RaySceneQuery *SceneManager::createRayQuery( const Ray &ray, uint32 mask ) |
nothing calls this directly
no test coverage detected