C# Class Pinta.ImageManipulation.Effects.JuliaFractalEffect

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

Méthodes publiques

Méthode Description
JuliaFractalEffect ( int factor = 4, int quality = 2, int zoom = 1, double angle ) : System

Creates a new effect that will draw a Julia fractal.

Méthodes protégées

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

Private Methods

Méthode Description
Julia ( double x, double y, double r, double i ) : double

Method Details

JuliaFractalEffect() public méthode

Creates a new effect that will draw a Julia fractal.
public JuliaFractalEffect ( int factor = 4, int quality = 2, int zoom = 1, double angle ) : System
factor int Factor to use. Valid range is 1 - 10.
quality int Quality of the fractal. Valid range is 1 - 5.
zoom int Size of the fractal. Valid range is 0 - 50.
angle double Angle of the fractal to render.
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