bevy_mod_spatial_query 0.2.0

Spatially aware Queries for the Bevy game engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! Spatial lookup algorithms
//!
//! You can implement your own algorithm by implementing the `SpatialLookupAlgorithm` trait.

mod bvh;
mod naive;

// Re-export algorithms for ease of use.
pub use bvh::Bvh;
pub use naive::Naive;