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

BulgeEffect() public method

Creates a new effect that will add a bulge to an image at a specified point.
public BulgeEffect ( int amount = 45, PointD offset = newPointD() ) : System
amount int Amount to bulge. Valid range is -200 - 100.
offset PointD Bulge origin point.
return System
		public BulgeEffect (int amount = 45, PointD offset = new PointD ())
		{
			if (amount < -200 || amount > 100)
				throw new ArgumentOutOfRangeException ("amount");

			this.amount = amount;
			this.offset = offset;
		}