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