[][src]Struct geo_types::Line

pub struct Line<T> where
    T: CoordinateType
{ pub start: Coordinate<T>, pub end: Coordinate<T>, }

A line segment made up of exactly two Coordinates.

Semantics

The interior and boundary are defined as with a LineString with the two end points.

Fields

start: Coordinate<T>end: Coordinate<T>

Implementations

impl<T> Line<T> where
    T: CoordinateType
[src]

pub fn new<C>(start: C, end: C) -> Line<T> where
    C: Into<Coordinate<T>>, 
[src]

Creates a new line segment.

Examples

use geo_types::{Coordinate, Line};

let line = Line::new(Coordinate { x: 0., y: 0. }, Coordinate { x: 1., y: 2. });

assert_eq!(line.start, Coordinate { x: 0., y: 0. });
assert_eq!(line.end, Coordinate { x: 1., y: 2. });

pub fn delta(&self) -> Coordinate<T>[src]

Calculate the difference in coordinates (Δx, Δy).

pub fn dx(&self) -> T[src]

Calculate the difference in ‘x’ components (Δx).

Equivalent to:

line.end.x - line.start.x

pub fn dy(&self) -> T[src]

Calculate the difference in ‘y’ components (Δy).

Equivalent to:

line.end.y - line.start.y

pub fn slope(&self) -> T[src]

Calculate the slope (Δy/Δx).

Equivalent to:

line.dy() / line.dx()

Note that:

Line::new(a, b).slope() == Line::new(b, a).slope()

pub fn determinant(&self) -> T[src]

Calculate the determinant of the line.

Equivalent to:

line.start.x * line.end.y - line.start.y * line.end.x

Note that:

Line::new(a, b).determinant() == -Line::new(b, a).determinant()

pub fn start_point(&self) -> Point<T>[src]

pub fn end_point(&self) -> Point<T>[src]

pub fn points(&self) -> (Point<T>, Point<T>)[src]

Trait Implementations

impl<T: Clone> Clone for Line<T> where
    T: CoordinateType
[src]

impl<T: Copy> Copy for Line<T> where
    T: CoordinateType
[src]

impl<T: Debug> Debug for Line<T> where
    T: CoordinateType
[src]

impl<T: Eq> Eq for Line<T> where
    T: CoordinateType
[src]

impl<T: CoordinateType> From<[(T, T); 2]> for Line<T>[src]

impl<T: CoordinateType> From<Line<T>> for Geometry<T>[src]

impl<T: Hash> Hash for Line<T> where
    T: CoordinateType
[src]

impl<T: PartialEq> PartialEq<Line<T>> for Line<T> where
    T: CoordinateType
[src]

impl<T> StructuralEq for Line<T> where
    T: CoordinateType
[src]

impl<T> StructuralPartialEq for Line<T> where
    T: CoordinateType
[src]

impl<T> TryFrom<Geometry<T>> for Line<T> where
    T: Float
[src]

type Error = FailedToConvertError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<T> RefUnwindSafe for Line<T> where
    T: RefUnwindSafe

impl<T> Send for Line<T> where
    T: Send

impl<T> Sync for Line<T> where
    T: Sync

impl<T> Unpin for Line<T> where
    T: Unpin

impl<T> UnwindSafe for Line<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.