C# Class Pinta.ImageManipulation.Effects.JuliaFractalEffect

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

Public Methods

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

Creates a new effect that will draw a Julia fractal.

Protected Methods

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

Private Methods

Method Description
Julia ( double x, double y, double r, double i ) : double

Method Details

JuliaFractalEffect() public method

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.
return System

RenderLine() protected method

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