[][src]Struct mazth::ray::Ray3

pub struct Ray3 {
    pub _ori: Mat3x1<f64>,
    pub _dir: Mat3x1<f64>,
    pub _bound: AxisAlignedBBox,
    pub _vicinity: f64,
}

Fields

_ori: Mat3x1<f64>_dir: Mat3x1<f64>_bound: AxisAlignedBBox_vicinity: f64

Methods

impl Ray3[src]

pub fn init(origin: &[f64], dir: &[f64]) -> Ray3[src]

Trait Implementations

impl IShape for Ray3[src]

impl IVicinity<f64> for Ray3[src]

impl Clone for Ray3[src]

impl Debug for Ray3[src]

Auto Trait Implementations

impl Send for Ray3

impl Sync for Ray3

impl Unpin for Ray3

impl UnwindSafe for Ray3

impl RefUnwindSafe for Ray3

Blanket Implementations

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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