getFirstCurve method

ParametricCurve<double>? getFirstCurve()

Retrieves the first curve in the mixer chain.

Implementation

ParametricCurve<double>? getFirstCurve() {
  return curve ?? previousMixer?.getFirstCurve();
}