Enum simdnoise::CellDistanceFunction[][src]

pub enum CellDistanceFunction {
    Euclidean,
    Manhattan,
    Natural,
}

The function to use to compute distance between cells

Variants

The actual straight line distance

Sum of the X and Y distances

Combines Manhattan and Euclidean

Trait Implementations

impl Copy for CellDistanceFunction
[src]

impl Clone for CellDistanceFunction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations