blob: e29c94b23aa0bf4bb0dee4281d48a3df289eba79 (
plain)
1
2
3
4
5
6
7
8
|
// 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,
}
|