LiquifyFilter constructor

LiquifyFilter({
  1. double strength = 1.0,
  2. double damping = 0.9,
  3. double noise = 0.35,
  4. double flow = 0.8,
  5. int? seed,
})

Implementation

LiquifyFilter({
  this.strength = 1.0,
  this.damping = 0.9,
  this.noise = 0.35,
  this.flow = 0.8,
  int? seed,
}) : _rng = math.Random(seed);