Struct bevy_mod_raycast::Intersection[][src]

pub struct Intersection { /* fields omitted */ }

Holds computed intersection information

Implementations

impl Intersection[src]

pub fn new(
    normal: Ray3d,
    pick_distance: f32,
    triangle: Option<Triangle>
) -> Self
[src]

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

Position vector describing the intersection position.

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

Unit vector describing the normal of the intersected triangle.

pub fn normal_ray(&self) -> &Ray3d[src]

pub fn distance(&self) -> f32[src]

Distance from the picking source to the entity.

pub fn world_triangle(&self) -> Option<Triangle>[src]

Triangle that was intersected with in World coordinates

Trait Implementations

impl Clone for Intersection[src]

impl Copy for Intersection[src]

impl Debug for Intersection[src]

impl PartialEq<Intersection> for Intersection[src]

impl PartialOrd<Intersection> for Intersection[src]

impl StructuralPartialEq for Intersection[src]

Auto Trait Implementations

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> 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>,