C# 클래스 YAMP.Numerics.Mandelbrot

Creates the class for evaluating a mandelbrot function.
상속: Fractal
파일 보기 프로젝트 열기: FlorianRappl/YAMP 1 사용 예제들

공개 메소드들

메소드 설명
Mandelbrot ( ) : System

Creates a new mandelbrot instance with the default number of iterations (255).

Mandelbrot ( int maxIterations ) : System

Creates a new mandelbrot instance with the default number of colors (25).

Mandelbrot ( int maxIterations, int colors ) : System

Creates a new instance.

Run ( double x, double y ) : double

Calculates a single mandelbrot value.

메소드 상세

Mandelbrot() 공개 메소드

Creates a new mandelbrot instance with the default number of iterations (255).
public Mandelbrot ( ) : System
리턴 System

Mandelbrot() 공개 메소드

Creates a new mandelbrot instance with the default number of colors (25).
public Mandelbrot ( int maxIterations ) : System
maxIterations int The number of iterations.
리턴 System

Mandelbrot() 공개 메소드

Creates a new instance.
public Mandelbrot ( int maxIterations, int colors ) : System
maxIterations int The maximum iterations.
colors int The number of colors.
리턴 System

Run() 공개 메소드

Calculates a single mandelbrot value.
public Run ( double x, double y ) : double
x double The x value.
y double The y value.
리턴 double