Exemple #1
0
 public FractalData(FractalEnumType fractalType = FractalEnumType.Mandelbrot,
                    double sizeArea             = 3, double centerX = -0.5d, double centerY = 0)
 {
     FractalType = fractalType;
     SizeArea    = sizeArea;
     CenterX     = centerX;
     CenterY     = centerY;
 }
Exemple #2
0
 public FractalData(FractalEnumType fractalType)
 {
     FractalType = fractalType;
     Reset();
 }