[][src]Struct plexus::geometry::Ray

pub struct Ray<S> where
    S: Space,
    <S as Geometry>::Vertex: AsPosition<Target = S::Point>, 
{ pub origin: S::Point, pub direction: S::Vector, }

Fields

origin: S::Pointdirection: S::Vector

Auto Trait Implementations

impl<S> Send for Ray<S> where
    <S as Space>::Point: Send,
    <S as Space>::Vector: Send

impl<S> Sync for Ray<S> where
    <S as Space>::Point: Sync,
    <S as Space>::Vector: Sync

Blanket Implementations

impl<T> FromGeometry for T[src]

impl<T, U> IntoGeometry for T where
    U: FromGeometry<T>, 
[src]

impl<T, U> IntoInteriorGeometry for T where
    U: FromInteriorGeometry<T>, 
[src]

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

impl<T> From for 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[src]

type Output = T

Should always be Self

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