Crates.io | slam-viewer |
lib.rs | slam-viewer |
version | 0.1.2 |
source | src |
created_at | 2020-05-01 00:27:12.133079 |
updated_at | 2020-05-02 22:17:59.379486 |
description | Simple wgpu based SLAM map viewer. |
homepage | https://github.com/podo-os |
repository | |
max_upload_size | |
id | 236005 |
size | 104,624 |
Simple wgpu based SLAM map viewer.
Add this to your Cargo.toml
:
[dependencies]
slam-cv = "0.1"
slam-viewer = "0.1"
If you are new to slam-cv, enter this command simply at your prompt:
cargo run --example simple
If you have your own World
, add this to your main.rs
:
fn main() {
let world = MyWorld(..);
slam_viewer::alloc_thread().add(world).run();
}
wgpu
tutorial: https://sotrh.github.io/learn-wgpu/kiss
3d graphics engine: https://github.com/sebcrozet/kiss3d