├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── build_and_query.rs ├── index_tree_structure.rs └── nearest_neighbors.rs ├── src ├── core.rs ├── lib.rs └── static_aabb2d_index.rs └── tests └── test.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode 3 | Cargo.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/README.md -------------------------------------------------------------------------------- /examples/build_and_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/examples/build_and_query.rs -------------------------------------------------------------------------------- /examples/index_tree_structure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/examples/index_tree_structure.rs -------------------------------------------------------------------------------- /examples/nearest_neighbors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/examples/nearest_neighbors.rs -------------------------------------------------------------------------------- /src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/src/core.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/static_aabb2d_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/src/static_aabb2d_index.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuckmccready/static_aabb2d_index/HEAD/tests/test.rs --------------------------------------------------------------------------------