summaryrefslogtreecommitdiff
path: root/examples/07-imports/output/rust/src/line.rs
blob: c2940f5ea4ef4c8612035ff20fa048619f45540c (plain)
1
2
3
4
5
/// A straight line from one point to another.
pub struct Line {
    pub start: crate::point::Point,
    pub end: crate::point::Point,
}