[][src]Struct rust_3d::Line2D

pub struct Line2D {
    pub anchor: Point2D,
    pub dir: Norm2D,
}

Line2D, a line within 2D space

Fields

anchor: Point2Ddir: Norm2D

Implementations

impl Line2D[src]

pub fn new(anchor: Point2D, dir: Norm2D) -> Self[src]

Creates a new Line2D from an anchor point and a direction

Trait Implementations

impl Clone for Line2D[src]

impl Debug for Line2D[src]

impl Display for Line2D[src]

impl Eq for Line2D[src]

impl Hash for Line2D[src]

impl IsMovable2D for Line2D[src]

impl Ord for Line2D[src]

impl PartialEq<Line2D> for Line2D[src]

impl PartialOrd<Line2D> for Line2D[src]

impl StructuralEq for Line2D[src]

impl StructuralPartialEq for Line2D[src]

Auto Trait Implementations

impl RefUnwindSafe for Line2D

impl Send for Line2D

impl Sync for Line2D

impl Unpin for Line2D

impl UnwindSafe for Line2D

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> ToString for T where
    T: Display + ?Sized
[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.