[][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 HasBoundingBox for LineSegment[src]

impl Segment for LineSegment[src]

impl GridShape for LineSegment[src]

impl Copy for LineSegment[src]

impl Clone for LineSegment[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LineSegment[src]

Auto Trait Implementations

impl Send for LineSegment

impl Sync for LineSegment

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

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