Property | Type | Description | |
---|---|---|---|
lastResults |
Method | Description | |
---|---|---|
ClearResults ( ) : void |
Clears out any cached results from the last query.
|
|
Execute ( ) : |
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. |
|
Execute ( IIntersectionSceneQueryListener listener ) : void |
Executes the query and returns each match through a listener interface. Note that this method does not store the results of the query internally so does not update the 'last result' value. This means that this version of execute is more lightweight and therefore more efficient than the version which returns the results as a collection. |
Method | Description | |
---|---|---|
Axiom ( Axiom.Core.MovableObject first, Axiom.Core.MovableObject second ) : bool | ||
Axiom ( Axiom.Core.MovableObject obj, |
||
IntersectionSceneQuery ( |
Constructor.
|
public Execute ( ) : |
||
return |
public abstract Execute ( IIntersectionSceneQueryListener listener ) : void | ||
listener | IIntersectionSceneQueryListener | Listener object to handle the result callbacks. |
return | void |