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
use super::line::Line;
use crate::pipes::VertexFormat;

use nalgebra::Point3;
use slam_cv::Number;

pub trait LineSource<N>
where
    N: 'static + Number,
    Point3<N>: VertexFormat<N>,
{
    fn collect_visual_lines(&self) -> Vec<Line<N>>;
}