Axiom.Core.IntersectionSceneQuery.Execute C# (CSharp) Method

Execute() public method

Executes the query, returning the results back in one list.
This method executes the scene query as configured, gathers the results into one structure and returns a reference to that structure. These results will also persist in this query object until the next query is executed, or ClearResults. A more lightweight version of this method that returns results through a listener is also available.
public Execute ( ) : IntersectionSceneQueryResult
return IntersectionSceneQueryResult
		public virtual IntersectionSceneQueryResult Execute()
		{
			ClearResults();

			// execute the callback version using ourselves as the listener
			Execute( this );

			return lastResults;
		}

Same methods

IntersectionSceneQuery::Execute ( IIntersectionSceneQueryListener listener ) : void