pub trait EdgeEndpoints<T> {
    fn start(&self) -> Point<T>;
    fn end(&self) -> Point<T>;
}
Expand description

Get the endpoints of an edge.

Required Methods

Get the start point of the edge.

Get the end point of the edge.

Implementors