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

EmbossEffect() public method

Creates a new effect that applies an embossed look.
public EmbossEffect ( double angle ) : System
angle double Angle to apply emboss. Valid range is 0 - 360.
return System
		public EmbossEffect (double angle = 0)
		{
			if (angle < 0 || angle > 360)
				throw new ArgumentOutOfRangeException ("angle");

			this.angle = angle;
		}