45 Fader(
double min,
double max);
55 inline void linear() { is_linear =
true; }
60 inline void exponential(
double b) { is_linear =
false; base = b; }
64 double adjusted_target();
A Fader Module maps an input target to an output value.
Definition fader.hh:40
void randomize()
Set the target of the fader to a random value from within its min and max values.
Definition fader.cc:64
Fader()
Construct a new fader with range [0,1]. The default response is linear. And the default tracking gain...
Definition fader.cc:39
void init()
Definition fader.cc:45
void set_tracking_gain(double x)
Definition fader.hh:52
void linear()
Set the response of the fader to lienar.
Definition fader.hh:55
void update()
Definition fader.cc:59
void exponential(double b)
Definition fader.hh:60
An abstract base class for modules.
Definition module.hh:39
Definition additive_saw.cc:24