AGL2/src/line.rs

10 lines
157 B
Rust

use crate::shapes::point::Point;
pub type LineVec = Vec<Line>;
#[derive(Debug, Clone, Copy)]
pub struct Line {
pub start: Point,
pub end: Point,
}