Struct bevy_mod_raycast::rays::Ray3d[][src]

pub struct Ray3d { /* fields omitted */ }

A 3D ray, with an origin and direction. The direction is guaranteed to be normalized.

Implementations

impl Ray3d[src]

pub fn new(origin: Vec3, direction: Vec3) -> Self[src]

Constructs a Ray3d, normalizing the direction vector.

pub fn origin(&self) -> Vec3[src]

Position vector describing the ray origin

pub fn direction(&self) -> Vec3[src]

Unit vector describing the ray direction

pub fn to_transform(&self) -> Mat4[src]

pub fn from_transform(transform: Mat4) -> Self[src]

pub fn from_screenspace(
    cursor_pos_screen: Vec2,
    windows: &Res<'_, Windows>,
    camera: &Camera,
    camera_transform: &GlobalTransform
) -> Option<Self>
[src]

Trait Implementations

impl Clone for Ray3d[src]

impl Copy for Ray3d[src]

impl Debug for Ray3d[src]

impl Default for Ray3d[src]

impl PartialEq<Ray3d> for Ray3d[src]

impl PartialOrd<Ray3d> for Ray3d[src]

impl StructuralPartialEq for Ray3d[src]

Auto Trait Implementations

impl RefUnwindSafe for Ray3d

impl Send for Ray3d

impl Sync for Ray3d

impl Unpin for Ray3d

impl UnwindSafe for Ray3d

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Any + Clone

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T> FromWorld for T where
    T: Default

impl<T> Instrument 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.

impl<T> TypeData for T where
    T: 'static + Send + Sync + Clone

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,