[][src]Struct rust_3d::Norm2D

pub struct Norm2D { /* fields omitted */ }

Norm2D, a normalized vector within 2D space

Trait Implementations

impl Clone for Norm2D[src]

impl Debug for Norm2D[src]

impl Eq for Norm2D[src]

impl Hash for Norm2D[src]

impl Is2D for Norm2D[src]

impl IsND for Norm2D[src]

impl IsNormalized2D for Norm2D[src]

impl Mul<f64> for Norm2D[src]

type Output = Point2D

The resulting type after applying the * operator.

impl<'_> Mul<f64> for &'_ Norm2D[src]

type Output = Point2D

The resulting type after applying the * operator.

impl Neg for Norm2D[src]

type Output = Norm2D

The resulting type after applying the - operator.

impl<'_> Neg for &'_ Norm2D[src]

type Output = Norm2D

The resulting type after applying the - operator.

impl Ord for Norm2D[src]

impl PartialEq<Norm2D> for Norm2D[src]

impl PartialOrd<Norm2D> for Norm2D[src]

impl StructuralPartialEq for Norm2D[src]

Auto Trait Implementations

impl RefUnwindSafe for Norm2D

impl Send for Norm2D

impl Sync for Norm2D

impl Unpin for Norm2D

impl UnwindSafe for Norm2D

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.