Enum anl::InterpType [] [src]

pub enum InterpType {
    None,
    Linear,
    Cubic,
    Quintic,
}

Aside from being able to assignt he type of noise generated, the user can also assign the type of interpolation used. This parameter only applies to the variants of Value, Gradval and Gradient.

Variants

No interpolation at all is performed

Lattice values are linearly interpolated.

Lattice values are performed using cubic interpolation.

Lattice values are interpolated using quintic interpolation. This results in the highest quality of noise.

Trait Implementations

impl Clone for InterpType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InterpType
[src]

Formats the value using the given formatter.

impl PartialEq for InterpType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.