Axiom.SceneManagers.Bsp.BspSceneManager.CreateSphereRegionQuery C# (CSharp) Method

CreateSphereRegionQuery() public method

Creates a SphereSceneQuery for this scene manager.
This method creates a new instance of a query object for this scene manager, for a spherical region. See SceneQuery and SphereSceneQuery for full details.
public CreateSphereRegionQuery ( Sphere sphere, uint mask ) : SphereRegionSceneQuery
sphere Axiom.Math.Sphere Details of the sphere which describes the region for this query.
mask uint The query mask to apply to this query; can be used to filter out certain objects; see SceneQuery for details.
return Axiom.Core.SphereRegionSceneQuery
		public override SphereRegionSceneQuery CreateSphereRegionQuery( Sphere sphere, uint mask )
		{
			BspSphereRegionSceneQuery q = new BspSphereRegionSceneQuery( this );
			q.Sphere = sphere;
			q.QueryMask = mask;

			return q;
		}