[][src]Struct nannou::noise::TranslatePoint

pub struct TranslatePoint<'a, Source> where
    Source: 'a + 'a, 
{ pub source: &'a Source, pub x_translation: f64, pub y_translation: f64, pub z_translation: f64, pub u_translation: f64, }

Noise function that moves the coordinates of the input value before returning the output value from the source function.

The get() method moves the coordinates of the input value by a translation amount before returning the output value from the source function.

Fields

source: &'a Source

Source function that outputs a value

x_translation: f64

Translation amount applied to the x coordinate of the input value. The default translation amount is set to 0.0.

y_translation: f64

Translation amount applied to the y coordinate of the input value. The default translation amount is set to 0.0.

z_translation: f64

Translation amount applied to the z coordinate of the input value. The default translation amount is set to 0.0.

u_translation: f64

Translation amount applied to the u coordinate of the input value. The default translation amount is set to 0.0.

Methods

impl<'a, Source> TranslatePoint<'a, Source>[src]

pub fn new(source: &'a Source) -> TranslatePoint<'a, Source>[src]

pub fn set_x_translation(self, x_translation: f64) -> TranslatePoint<'a, Source>[src]

Sets the scaling factor to apply to the x coordinate of the input value.

pub fn set_y_translation(self, y_translation: f64) -> TranslatePoint<'a, Source>[src]

Sets the scaling factor to apply to the y coordinate of the input value.

pub fn set_z_translation(self, z_translation: f64) -> TranslatePoint<'a, Source>[src]

Sets the scaling factor to apply to the z coordinate of the input value.

pub fn set_u_translation(self, u_translation: f64) -> TranslatePoint<'a, Source>[src]

Sets the scaling factor to apply to the u coordinate of the input value.

pub fn set_translation(self, scale: f64) -> TranslatePoint<'a, Source>[src]

Sets the translation amount to apply to all coordinates of the input value.

pub fn set_all_translations(
    self,
    x_translation: f64,
    y_translation: f64,
    z_translation: f64,
    u_translation: f64
) -> TranslatePoint<'a, Source>
[src]

Sets the individual translation amounts to apply to each coordinate of the input value.

Trait Implementations

impl<'a, Source> NoiseFn<[f64; 2]> for TranslatePoint<'a, Source> where
    Source: NoiseFn<[f64; 2]>, 
[src]

impl<'a, Source> NoiseFn<[f64; 3]> for TranslatePoint<'a, Source> where
    Source: NoiseFn<[f64; 3]>, 
[src]

impl<'a, Source> NoiseFn<[f64; 4]> for TranslatePoint<'a, Source> where
    Source: NoiseFn<[f64; 4]>, 
[src]

Auto Trait Implementations

impl<'a, Source> Send for TranslatePoint<'a, Source> where
    Source: Sync

impl<'a, Source> Sync for TranslatePoint<'a, Source> where
    Source: Sync

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.