Struct noise::modules::Constant [] [src]

pub struct Constant<T: Float> {
    pub value: T,
}

Noise module that outputs a constant value.

This module takes a input, value, and returns that input for all points, producing a contant-valued field.

This module is not very useful by itself, but can be used as a source module for other noise modules.

Fields

value: T

Constant value.