[][src]Struct descartes::LineSegment

pub struct LineSegment { /* fields omitted */ }

Methods

impl LineSegment[src]

pub fn new(start: P2, end: P2) -> Self[src]

pub fn direction(&self) -> V2[src]

impl LineSegment[src]

pub fn along(&self, distance: N) -> P2[src]

pub fn midpoint(&self) -> P2[src]

pub fn project_with_tolerance(&self, point: P2, tolerance: N) -> Option<(N, P2)>[src]

pub fn project_with_max_distance(
    &self,
    point: P2,
    tolerance: N,
    max_distance: N
) -> Option<(N, P2)>
[src]

pub fn winding_angle(&self, point: P2) -> N[src]

pub fn side_of(&self, point: P2) -> N[src]

pub fn is_point_left_of(&self, point: P2) -> bool[src]

pub fn is_point_right_of(&self, point: P2) -> bool[src]

pub fn signed_distance_of(&self, point: P2) -> N[src]

Trait Implementations

impl Clone for LineSegment[src]

impl Copy for LineSegment[src]

impl Debug for LineSegment[src]

impl GridShape for LineSegment[src]

impl HasBoundingBox for LineSegment[src]

impl Segment for LineSegment[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,