noise_functions

Trait OpenSimplexNoise

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

Provides modifier methods for OpenSimplex noises.

Provided Methods§

Source

fn improve_xy(self) -> ImproveXy<Self>

Improves 3D orientation for the XY plane.

Source

fn improve_xz(self) -> ImproveXz<Self>

Improves 3D orientation for the XZ plane.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§