[][src]Struct molecules::camera::RotationCamera

pub struct RotationCamera {
    pub eye: Vec3,
    pub yaw: f32,
    pub pitch: f32,
    pub distance: f32,
    pub speed: f32,
    pub mouse_pressed: bool,
}

Rotation camera that always looks at the centre of the scene and rotates around It.

Fields

eye: Vec3yaw: f32pitch: f32distance: f32speed: f32mouse_pressed: bool

Methods

impl RotationCamera[src]

pub fn new(distance: f32) -> RotationCamera[src]

Initializes rotation camera with some distance from the centre.

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

Returns direction vector pointing from the centre to a point on a sphere where the camera is located.

Trait Implementations

impl Camera for RotationCamera[src]

Auto Trait Implementations

impl RefUnwindSafe for RotationCamera

impl Send for RotationCamera

impl Sync for RotationCamera

impl Unpin for RotationCamera

impl UnwindSafe for RotationCamera

Blanket Implementations

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

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

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

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

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

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