noise_functions

Trait OpenSimplexNoise

Source
pub trait OpenSimplexNoise: Noise {
    // Provided methods
    fn improve_xy(self) -> ImproveXy<Self>
       where Self: Sized { ... }
    fn improve_xz(self) -> ImproveXz<Self>
       where Self: Sized { ... }
}
Expand description

Provides modifier methods for OpenSimplex noises.

Provided Methods§

Source

fn improve_xy(self) -> ImproveXy<Self>
where Self: Sized,

Improves 3D orientation for the XY plane.

Source

fn improve_xz(self) -> ImproveXz<Self>
where Self: Sized,

Improves 3D orientation for the XZ plane.

Implementors§