[][src]Crate dinotree

2d Tree Divider Representation:


   o   ┆┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┃         ┆         o
 ┈┈┈┈┈┈┆     o      o     ┃     o   ┆   o                 o
 ───────o─────────────────┃         o┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
               ┆       o  o   o     ┆
       o       ┆    o     ┃┈┈┈┈┈o┈┈┈┆       o
               ┆   o      ┃         o             o
               ┆┈┈┈┈┈┈┈┈┈┈┃         ┆                   o
     o         o    o     ┃───────o────────────────────────
               ┆          ┃                ┆   o
 ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┆      o   o   o            ┆┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
    o          ┆          ┃┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┆         o
         o     ┆   o      ┃        o       ┆   o
               ┆          ┃                ┆

Axis alternates every level.
Divider placement is placed at the median at each level.
Objects that intersect a divider belong to that node.
Every divider keeps track of how thick a line would have to be
to 'cover' all the bots it owns.
All the objects in a node are sorted along that node's axis.


Overview

Provides the dinotree data structure and ways to traverse it. No actual query algorithms are provided in this crate. Only the data structure and a way to construct and traverse it are provided in this crate.

Data Structure

Using this crate, the user can create three flavors of the same fundamental data structure are provided. They each have different characteristics that may make you want to use them over the others. You can make a dinotree composed of either:

  • (Rect<N>,&mut T) is the most well rounded and most performant in most cases. The aabb's themselves don't have a level of indirection. Broad-phase algorithms need to look at these very often. It's only when these algorithms detect a intersection do they need to look further, which doesnt happen as often. so a level of indirection here is not so bad. The fact that T is a pointer, also means that more aabb's will be in cache at once, further speeding up algorithms that need to look at the aabb's very often.

  • (Rect<N>,T) performs slightly better during the querying phase, But suffers during the construction phase. There is also no easy way to return the elements back to their original positions on destructing of the tree (something you don't need to worry about with pointers). One benefit of using this tree, is that it owns the elements completely, so there are no lifetime references to worry about. The performance of this type of tree is also heavily influenced by the size of T.

  • &mut (Rect<N>,T) has comparable tree construction times to (Rect<N>,&mut T) given that we are just sorting and swapping pointers, but there is no cache-coherence during the query phase, so this can cause real slow down to query algorithms if there are many overlapping elements.

DinoTreeOwned

A verion of the tree where the tree owns the elements in side of it. The user is encouraged to use the lifetimed version, though, as that does not use unsafe{}. But this might mean that the user has to re-construct the tree more often than it needs to be. It is composed internally of the equivalent to (Rect<N>,&mut T), the most well-rounded data layout as described above.

NotSorted

For comparison, a normal kd-tree is provided by NotSorted. In this tree, the elements are not sorted along an axis at each level. Construction of NotSorted is faster than DinoTree since it does not have to sort bots that belong to each node along an axis. But most query algorithms can usually take advantage of this extra property.

User Protection

A lot is done to forbid the user from violating the invariants of the tree once constructed while still allowing them to mutate elements of the tree. The user can mutably traverse down the tree with a VistrMut and ElemSliceMut, but the elements that are returned have already been destructured in such a way that the user only has read-only access to the Rect<N>, even if they do have write access to the inner T.

Usage Guidlines

If you insert aabb's with zero width or zero height, it is unspecified behavior (but still safe). It is expected that all elements in the tree take up some area. This is not inteded to be used as a "point" tree. Using this tree for a point tree would be inefficient since the data layout assumes there is a aabb, which is composed of 4 numbers when a point would be just 2.

That said, an aabb is composed of half-open ranges [start,end). So one could simulate a "point", by putting in a very small epsilon value to ensure that end>start.

Re-exports

pub use axgeom;
pub use compt;

Modules

bbox

A collection of different bounding box containers.

elem

Provies a slice that produces BBox's where users can only interact with through the HasInner trait so as to protect the invariants of the tree.

par

Contains code to write generic code that can be run in parallel, or sequentially. The api is exposed in case users find it useful when writing parallel query code to operate on the tree.

prelude

Prelude to include by using: pub use dinotree::prelude::*

tools

Provies some debugging and misc functions.

tree

Contains generic code used in all dinotree versions

Traits

HasAabb

Trait to signify that this object has an axis aligned bounding box.

HasInner

Trait exposes an api where you can return a read-only reference to the axis-aligned bounding box and at the same time return a mutable reference to a seperate inner section.

NumTrait

The underlying number type used for the dinotree. It is auto implemented by all types that satisfy the type constraints. Notice that no arithmatic is possible. The tree is constructed using only comparisons and copying.