Pinta.ImageManipulation.Effects.UnfocusEffect.UnfocusEffect C# (CSharp) Method

UnfocusEffect() public method

Creates a new effect that will unfocus an image.
public UnfocusEffect ( int radius = 4 ) : System
radius int Amount of points to consider when unfocusing. Valid values are 1 - 200.
return System
		public UnfocusEffect (int radius = 4)
		{
			if (radius < 1 || radius > 200)
				throw new ArgumentOutOfRangeException ("radius");

			this.radius = radius;
		}