Struct trackball::Scale[][src]

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

Scale induced by relative input.

Implements Default and can be created with Scale::default().

Implementations

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

pub fn compute(&self, num: N) -> N[src]

Computes scale ratio from relative value.

pub fn denominator(&self) -> N[src]

Denominator. Default is scroll unit of 120.0.

pub fn set_denominator(&self) -> N[src]

Sets denominator. Default is scroll unit of 120.0.

Trait Implementations

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

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

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

impl<N: Eq + RealField> Eq for Scale<N>[src]

impl<N: PartialEq + RealField> PartialEq<Scale<N>> for Scale<N>[src]

impl<N: RealField> StructuralEq for Scale<N>[src]

impl<N: RealField> StructuralPartialEq for Scale<N>[src]

Auto Trait Implementations

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

impl<N> Send for Scale<N>

impl<N> Sync for Scale<N>

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

impl<N> UnwindSafe for Scale<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> 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> 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.