| BlurScale Property |
Gets or sets the scale that is applied to the offsets.
Namespace: DigitalRune.Graphics.PostProcessingAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public float Scale { get; set; }
Public Property Scale As Single
Get
Set
public:
property float Scale {
float get ();
void set (float value);
}
member Scale : float32 with get, set
Property Value
Type:
SingleThe scale applied to the offsets.
Remarks
Usually, a scale of 1 is used, but some blur kernels, like the Poisson disk kernel require a
scale greater than 1. (The
Offsets of a Poisson disk kernel are usually
defined for a range of [-1, 1]. The scale determines the effective size (radius) of the
Poisson disk. See also
InitializePoissonBlur.)
See Also