C# Class Pinta.ImageManipulation.Effects.MotionBlurEffect

Inheritance: BaseEffect
Afficher le fichier Open project: PintaProject/Pinta.ImageManipulation Class Usage Examples

Méthodes publiques

Méthode Description
MotionBlurEffect ( double angle = 25, int distance = 10, bool centered = true ) : System

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

Méthodes protégées

Méthode Description
RenderLine ( ISurface src, ISurface dst, Rectangle rect ) : void

Method Details

MotionBlurEffect() public méthode

Creates a new effect that will apply a motion blur to an image.
public MotionBlurEffect ( double angle = 25, int distance = 10, bool centered = true ) : System
angle double Angle of the motion blur.
distance int Distance to apply the blur. Valid range is 1 - 200.
centered bool Whether the blur is centered.
Résultat System

RenderLine() protected méthode

protected RenderLine ( ISurface src, ISurface dst, Rectangle rect ) : void
src ISurface
dst ISurface
rect Rectangle
Résultat void