C# Class Pinta.ImageManipulation.Effects.RadialBlurEffect

Inheritance: BaseEffect
ファイルを表示 Open project: PintaProject/Pinta.ImageManipulation Class Usage Examples

Public Methods

Method Description
RadialBlurEffect ( double angle = 2, PointD offset = newPointD(), int quality = 2 ) : System

Creates a new effect that will apply a radial blur to an image.

Protected Methods

Method Description
RenderLine ( ISurface src, ISurface dst, Rectangle rect ) : void

Private Methods

Method Description
Rotate ( int &fx, int &fy, int fr ) : void

Method Details

RadialBlurEffect() public method

Creates a new effect that will apply a radial blur to an image.
public RadialBlurEffect ( double angle = 2, PointD offset = newPointD(), int quality = 2 ) : System
angle double Angle of the blur.
offset PointD Center point of the blur.
quality int Quality of the radial blur. Valid range is 1 - 5.
return System

RenderLine() protected method

protected RenderLine ( ISurface src, ISurface dst, Rectangle rect ) : void
src ISurface
dst ISurface
rect Rectangle
return void