[−][src]Struct ultraviolet::geometry::Rayu
A Ray represents an infinite half-line starting at origin and going in specified unit length direction.
Fields
origin: Vec3uorigin point of the ray
direction: Vec3unormalized direction vector of the ray
Implementations
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]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,