[][src]Struct rust_3d::Plane3D

pub struct Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
{ pub origin: P, pub u: N, pub v: N, }

Plane3D, a plane within 3D space

Fields

origin: Pu: Nv: N

Trait Implementations

impl<P: Clone, N: Clone> Clone for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P: Debug, N: Debug> Debug for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P, N> Default for Plane3D<P, N> where
    P: Is3D + Default,
    N: IsNormalized3D
[src]

impl<P: Eq, N: Eq> Eq for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P: Hash, N: Hash> Hash for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P, N> IsPlane3D<P, N> for Plane3D<P, N> where
    P: IsBuildable3D + Clone,
    N: IsNormalized3D + Clone
[src]

impl<P: Ord, N: Ord> Ord for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P: PartialEq, N: PartialEq> PartialEq<Plane3D<P, N>> for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P: PartialOrd, N: PartialOrd> PartialOrd<Plane3D<P, N>> for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P, N> StructuralEq for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

impl<P, N> StructuralPartialEq for Plane3D<P, N> where
    P: Is3D,
    N: IsNormalized3D
[src]

Auto Trait Implementations

impl<P, N> RefUnwindSafe for Plane3D<P, N> where
    N: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, N> Send for Plane3D<P, N> where
    N: Send,
    P: Send

impl<P, N> Sync for Plane3D<P, N> where
    N: Sync,
    P: Sync

impl<P, N> Unpin for Plane3D<P, N> where
    N: Unpin,
    P: Unpin

impl<P, N> UnwindSafe for Plane3D<P, N> where
    N: UnwindSafe,
    P: UnwindSafe

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.