Struct kiss3d_trackball::Input[][src]

pub struct Input<N: RealField> { /* fields omitted */ }

Input keys/buttons and their modifiers.

Implementations

impl<N: RealField> Input<N>[src]

pub fn first_key(&self) -> Option<Key>[src]

Key used to enable first person view as long as being pressed.

pub fn rebind_first_key(&mut self, key: Option<Key>)[src]

Sets key used to enable first person view as long as being pressed.

Use None to disable key.

pub fn ortho_key(&self) -> Option<Key>[src]

Key used to switch between orthographic and perspective projection.

pub fn rebind_ortho_key(&mut self, key: Option<Key>)[src]

Sets key used to switch between orthographic and perspective projection.

Use None to disable key.

pub fn reset_key(&self) -> Option<Key>[src]

Key used to reset camera.

pub fn rebind_reset_key(&mut self, key: Option<Key>)[src]

Sets key used to reset camera.

Use None to disable key.

pub fn orbit_button(&self) -> Option<MouseButton>[src]

Button used to orbit camera.

pub fn rebind_orbit_button(&mut self, button: Option<MouseButton>)[src]

Sets button used to orbit camera.

Use None to disable button.

pub fn orbit_modifiers(&self) -> Option<Modifiers>[src]

Modifiers that must be pressed for orbit to occur.

pub fn set_orbit_modifiers(&mut self, modifiers: Option<Modifiers>)[src]

Sets modifiers that must be pressed for orbit to occur.

  • If set to None, then pressing any modifier will not prevent orbit.
  • If different from None, orbit will occur only if the exact specified set of modifiers is pressed. In particular, if set to Some(Modifiers::empty()), orbit will occur only if no modifier is pressed.

pub fn slide_button(&self) -> Option<MouseButton>[src]

Button used to slide camera.

pub fn rebind_slide_button(&mut self, button: Option<MouseButton>)[src]

Sets button used to slide camera.

Use None to disable button.

pub fn slide_modifiers(&self) -> Option<Modifiers>[src]

Modifiers that must be pressed for slide to occur.

pub fn set_slide_modifiers(&mut self, modifiers: Option<Modifiers>)[src]

Sets modifiers that must be pressed for slide to occur.

  • If set to None, then pressing any modifier will not prevent slide.
  • If different from None, slide will occur only if the exact specified set of modifiers is pressed. In particular, if set to Some(Modifiers::empty()), slide will occur only if no modifier is pressed.

Trait Implementations

impl<N: Clone + RealField> Clone for Input<N>[src]

impl<N: Debug + RealField> Debug for Input<N>[src]

impl<N: RealField> Default for Input<N>[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for Input<N> where
    N: RefUnwindSafe

impl<N> Send for Input<N>

impl<N> Sync for Input<N>

impl<N> Unpin for Input<N> where
    N: Unpin

impl<N> UnwindSafe for Input<N> where
    N: UnwindSafe

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