Beispiel #1
0
 public Fractal()
 {
     ColorKoef       = 1;
     IterationsCount = 250;
     ScaleKoef       = 2;
     view            = new PlaneView(-2, 1, 3, 2);
     NewBitmap(900, 600);
 }
Beispiel #2
0
 public void SetNewView(PlaneView view)
 {
     this.view = view;
 }
Beispiel #3
0
 public Place(PlaneView view)
 {
     CenterX = view.x + view.w / 2;
     CenterY = view.y - view.h / 2;
     W       = view.w;
 }