strength property

  1. @TagNumber.new(11)
double get strength

How far from the source image to travel. Only meaningful with image. Effective steps = ceil(steps * strength), so a low value is proportionally cheaper -- on device that is battery.

Implementation

@$pb.TagNumber(11)
$core.double get strength => $_getN(10);
  1. @TagNumber.new(11)
set strength (double value)

Implementation

@$pb.TagNumber(11)
set strength($core.double value) => $_setFloat(10, value);