// Generated by hobgoblin. /// A straight line from one point to another. pub struct Line { pub start: crate::point::Point, pub end: crate::point::Point, } /// A 2D point. pub struct Point { pub x: i32, pub y: i32, }