xiron 0.5.0

A lightweight 2D robot simulator written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod dynamic_obj;
pub mod occupany_grid;
pub mod robot;
pub mod sensors;
pub mod static_obj;
pub mod trolley;
pub mod wall;

pub use dynamic_obj::*;
pub use occupany_grid::*;
pub use robot::*;
pub use sensors::*;
pub use static_obj::*;
pub use trolley::*;
pub use wall::*;