[][src]Struct arcs::primitives::Line

pub struct Line<S> {
    pub start: Point2D<f64, S>,
    pub end: Point2D<f64, S>,
}

A line connecting Line::start to Line::end.

Fields

start: Point2D<f64, S>end: Point2D<f64, S>

Methods

impl<S> Line<S>[src]

pub const fn new(start: Point2D<f64, S>, end: Point2D<f64, S>) -> Self[src]

pub fn displacement(&self) -> Vector2D<f64, S>[src]

pub fn direction(&self) -> Vector2D<f64, S>[src]

pub fn length(self) -> f64[src]

pub fn perpendicular_distance_to(self, point: Point2D<f64, S>) -> Length<f64, S>[src]

Trait Implementations

impl<S> Clone for Line<S>[src]

impl<S> Copy for Line<S>[src]

impl<S: Debug> Debug for Line<S>[src]

impl<S: Default> Default for Line<S>[src]

impl<S: PartialEq> PartialEq<Line<S>> for Line<S>[src]

impl<S> StructuralPartialEq for Line<S>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

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

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryDefault for T where
    T: Default
[src]

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.