[][src]Struct arctk::geom::rt::orient::Orient

pub struct Orient { /* fields omitted */ }

Orientation structure.

Implementations

impl Orient[src]

#[must_use]pub const fn pos(&self) -> &Pos3[src]

#[must_use]pub fn pos_mut(&mut self) -> &mut Pos3[src]

#[must_use]pub const fn forward(&self) -> &Dir3[src]

#[must_use]pub const fn right(&self) -> &Dir3[src]

#[must_use]pub const fn up(&self) -> &Dir3[src]

#[must_use]pub fn new(ray: Ray) -> Self[src]

Construct a new instance.

#[must_use]pub fn new_up(ray: Ray, up: &Dir3) -> Self[src]

Construct with an up-direction.

#[must_use]pub fn new_tar(pos: Pos3, tar: &Pos3) -> Self[src]

Construct a new instance.

#[must_use]pub fn back(&self) -> Dir3[src]

Reference the backward direction.

#[must_use]pub fn left(&self) -> Dir3[src]

Reference the left direction.

#[must_use]pub fn down(&self) -> Dir3[src]

Reference the downward direction.

#[must_use]pub const fn forward_ray(&self) -> Ray[src]

Create a forward ray.

#[must_use]pub fn backward_ray(&self) -> Ray[src]

Create a backward ray.

#[must_use]pub const fn up_ray(&self) -> Ray[src]

Create a upward ray.

#[must_use]pub fn down_ray(&self) -> Ray[src]

Create a downward ray.

#[must_use]pub const fn right_ray(&self) -> Ray[src]

Create a right ray.

#[must_use]pub fn left_ray(&self) -> Ray[src]

Create a left ray.

Trait Implementations

impl Debug for Orient[src]

Auto Trait Implementations

impl RefUnwindSafe for Orient

impl Send for Orient

impl Sync for Orient

impl Unpin for Orient

impl UnwindSafe for Orient

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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

impl<T> Background for T[src]

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

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

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Foreground for T[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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<V, T> VZip<V> for T where
    V: MultiLane<T>,