Enum nannou::draw::properties::spatial::orientation::LookAt[][src]

pub enum LookAt<S = Default> {
    Node(Index),
    Point(Point3<S>),
}

Describe the orientation of a node via a target towards which it is facing.

Variants

Trait Implementations

impl<S: Copy> Copy for LookAt<S>
[src]

impl<S: Clone> Clone for LookAt<S>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<S: Debug> Debug for LookAt<S>
[src]

Formats the value using the given formatter. Read more

impl<S: PartialEq> PartialEq for LookAt<S>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<S> From<Index> for LookAt<S>
[src]

Performs the conversion.

impl<S> From<Point3<S>> for LookAt<S>
[src]

Performs the conversion.

Auto Trait Implementations

impl<S> Send for LookAt<S> where
    S: Send

impl<S> Sync for LookAt<S> where
    S: Sync