C# Класс YAMP.Numerics.Mandelbrot

Creates the class for evaluating a mandelbrot function.
Наследование: Fractal
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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