Click or drag to resize

QuadtreeT Methods

The QuadtreeT generic type exposes the following members.

Methods
  NameDescription
Public methodClear
Clears all items in this node and removes subnodes.
Public methodStatic memberCreate
Creates a Quadtree.
Public methodStatic memberDestroy
Destroys a tree, making it available for being recycled. Do not use the tree again after calling this.
Public methodDispose
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the type of the current instance.
(Inherited from Object.)
Public methodInsert
Inserts an item with the specified bounds into the quadtree.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Removes an item with the specified bounds from the quadtree.
Public methodRetrieve(Rect)
Retrieves all potential matches for the given Rect. Careful, this method creates a new HashSetT. You might want to use Retrieve(Rect, HashSetT) instead if you call this often.
Public methodRetrieve(Rect, HashSetT)
Retrieves all potential matches for the given Rect and adds them to results.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also