Method | Description | |
---|---|---|
B ( double color ) : int |
Gets the blue part of the color (0-255) for the given value.
|
|
CalculateMatrix ( double xi, double xf, double yi, double yf, int xsteps, int ysteps ) : |
Calculates the matrix with all the fractal values.
|
|
Fractal ( int maxIterations, int colors ) : System |
Creates a new instance.
|
|
G ( double color ) : int |
Gets the green part of the color (0-255) for the given value.
|
|
R ( double color ) : int |
Gets the red part of the color (0-255) for the given value.
|
|
Run ( double x, double y ) : double |
Calculates a single value.
|
public B ( double color ) : int | ||
color | double | A value for the color (0...1) |
return | int |
public CalculateMatrix ( double xi, double xf, double yi, double yf, int xsteps, int ysteps ) : |
||
xi | double | The initial (start) x. |
xf | double | The final (end) x. |
yi | double | The initial (start) y. |
yf | double | The final (end) y. |
xsteps | int | The number of steps in x direction. |
ysteps | int | The number of steps in y direction. |
return |
public Fractal ( int maxIterations, int colors ) : System | ||
maxIterations | int | The maximum number of iterations. |
colors | int | The number of colors to use. |
return | System |
public G ( double color ) : int | ||
color | double | A value for the color (0...1) |
return | int |
public R ( double color ) : int | ||
color | double | A value for the color (0...1) |
return | int |
public abstract Run ( double x, double y ) : double | ||
x | double | The x value. |
y | double | The y value. |
return | double |