Property Intensity
- Namespace
- PaintDotNet.Effects.Gpu
- Assembly
- PaintDotNet.Effects.Gpu.dll
Intensity
The intensity of the effect. This indirectly specifies the range of percentiles used to drive
the underlying median approximation algorithm. An intensity value of 0.5f will render the
difference between percentiles of 0.25 and 0.75. To calculate the range, use:percentileLo = (1 - intensity) / 2
percentileHi = (1 + intensity) / 2
The range is [0, 1]. The default value is 0.5f.
public EffectPropertyAccessor<float> Intensity { get; }