This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2023-06-20 21:52:24 +03:00

22 lines
677 B
ObjectPascal

//(c) DarkStar 2008
uses GraphABC, Paporotnik, PaporotnikData;
const
Iterations = 300000;
Height = 600;
Fast = false;
Width = Height div 2;
WindowWidth= Width * 3;
Brightness = 170;
var
Paprotnik := new PaporotnikFractal(PaprotnikData);
SimplePaprotnik := new PaporotnikFractal(SimplePaprotnikData);
Elka := new PaporotnikFractal(ElkaData);
begin
InitWindow(200, 50, WindowWidth , Height, clBlack);
Paprotnik.Draw(0, 0, Iterations, Height, Brightness, fast);
SimplePaprotnik.Draw(Width, 0, Iterations, Height, Brightness, fast);
Elka.Draw(Width*2, 0, Iterations, Height, Brightness, fast);
end.