costmap 0.2.0

2D costmaps, occupancy grids, and raycasting for robotics navigation - a Nav2 alternative in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod constants;
pub mod error;
pub mod geometry;
pub mod info;
pub mod occupancy_grid;

pub use constants::*;
pub use error::VoxelError;
pub use geometry::{Bounds, CellRegion, Footprint, Pose2};
pub use info::MapInfo;
pub use occupancy_grid::OccupancyGrid;