[][src]Struct ultraviolet::geometry::Rayu

#[repr(C)]pub struct Rayu {
    pub origin: Vec3u,
    pub direction: Vec3u,
}

A Ray represents an infinite half-line starting at origin and going in specified unit length direction.

Fields

origin: Vec3u

origin point of the ray

direction: Vec3u

normalized direction vector of the ray

Methods

impl Rayu[src]

pub fn intersect_plane(&self, plane: Planeu) -> Option<u32>[src]

Returns the distance along the ray which intersects with the provided Plane

pub fn at_distance(&self, z: u32) -> Vec3u[src]

Returns a Vec3 along the ray at a distance t from it's origin.

Trait Implementations

impl Clone for Rayu[src]

impl Copy for Rayu[src]

impl Debug for Rayu[src]

impl Eq for Rayu[src]

impl Hash for Rayu[src]

impl PartialEq<Rayu> for Rayu[src]

impl StructuralEq for Rayu[src]

impl StructuralPartialEq for Rayu[src]

Auto Trait Implementations

impl RefUnwindSafe for Rayu

impl Send for Rayu

impl Sync for Rayu

impl Unpin for Rayu

impl UnwindSafe for Rayu

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.