blob: d383b152aa3b329f252e436b4100d2d8abfe347c (
plain)
1
2
3
4
5
6
7
8
|
// Generated by hobgoblin.
/// A straight line from one point to another.
#[derive(Debug, Hash, PartialEq)]
pub struct Line {
pub start: crate::point::Point,
pub end: crate::point::Point,
}
|