// Generated by hobgoblin. /// A straight line from one point to another. #[derive(Debug, PartialEq)] pub struct Line { pub start: crate::point::Point, pub end: crate::point::Point, } /// A 2D point. #[derive(Debug, PartialEq)] pub struct Point { pub x: ::core::primitive::i32, pub y: ::core::primitive::i32, }