Go to the source code of this file.
Classes | |
| class | quadtree.Quadtree |
| A general purpose (compression) Quadtree class. More... | |
| class | quadtree.Quadtree.Quadtree.Node |
| Represents a node of this Quadtree. More... | |
| class | quadtree.AbstractMeasure |
| This class shows which methods a Measure class must implement if it is to be used for a Quadtree. More... | |
| class | quadtree.Measure |
| This is an example Measure object, as is required by a Quadtree. More... | |
Packages | |
| package | quadtree |
| A general purpose (compression) Quadtree class. | |
Variables | |
| int | quadtree.TOP_LEFT = 0 |
| Constant for the index of the top left quadrant of a quadtree in a children list. | |
| int | quadtree.TOP_RIGHT = 1 |
| Constant for the index of the top right quadrant of a quadtree in a children list. | |
| int | quadtree.BOTTOM_LEFT = 2 |
| Constant for the index of the bottom left quadrant of a quadtree in a children list. | |
| int | quadtree.BOTTOM_RIGHT = 3 |
| Constant for the index of the bottom right quadrant of a quadtree in a children list. | |
| int | quadtree.ROOT = 4 |
| Constant that denotes the root node. | |
1.5.8