slam-viewer 0.1.2

Simple wgpu based SLAM map viewer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod base;
mod builder;
mod camera;
mod event;
mod renderers;
mod uniform;

// Shaders, Pipelines
mod lines;
mod points;

pub use self::base::Window;
pub use self::builder::{WindowBuilder, WindowBuilderDefault};
pub use self::camera::{CameraControllerConfig, CameraFrustum};
pub use self::event::WindowEventState;

pub use self::points::PointsBuilder;