[][src]Struct lyon_geom::LineEquation

pub struct LineEquation<S> { /* fields omitted */ }

A line defined by the equation a * x + b * y + c = 0; a * a + b * b = 1.

Implementations

impl<S: Scalar> LineEquation<S>[src]

pub fn new(a: S, b: S, c: S) -> Self[src]

pub fn a(&self) -> S[src]

pub fn b(&self) -> S[src]

pub fn c(&self) -> S[src]

pub fn project_point(&self, p: &Point<S>) -> Point<S>[src]

pub fn signed_distance_to_point(&self, p: &Point<S>) -> S[src]

pub fn distance_to_point(&self, p: &Point<S>) -> S[src]

pub fn invert(&self) -> Self[src]

pub fn parallel_line(&self, p: &Point<S>) -> Self[src]

pub fn offset(&self, d: S) -> Self[src]

pub fn tangent(&self) -> Vector<S>[src]

pub fn normal(&self) -> Vector<S>[src]

pub fn solve_y_for_x(&self, x: S) -> Option<S>[src]

pub fn solve_x_for_y(&self, y: S) -> Option<S>[src]

pub fn is_horizontal(&self) -> bool[src]

pub fn is_vertical(&self) -> bool[src]

Trait Implementations

impl<S: Clone> Clone for LineEquation<S>[src]

impl<S: Copy> Copy for LineEquation<S>[src]

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

impl<S: Eq> Eq for LineEquation<S>[src]

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

impl<S> StructuralEq for LineEquation<S>[src]

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

Auto Trait Implementations

impl<S> RefUnwindSafe for LineEquation<S> where
    S: RefUnwindSafe
[src]

impl<S> Send for LineEquation<S> where
    S: Send
[src]

impl<S> Sync for LineEquation<S> where
    S: Sync
[src]

impl<S> Unpin for LineEquation<S> where
    S: Unpin
[src]

impl<S> UnwindSafe for LineEquation<S> where
    S: UnwindSafe
[src]

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.