-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMandel.pas
63 lines (57 loc) · 1.29 KB
/
Mandel.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
program Mandelbrot;
USES Crt, Graph;
Const
minx = -2;
maxx = 1.25;
miny = -1.25;
maxy = 1.25;
var dx,dy:real;
x,y:integer;
color:integer;
screen_x,screen_y:integer;
grDriver:integer;
grMode:integer;
ErrCode:integer;
Function calc_pixel(CA,CB:real):integer;
const max_iteration=64;
var
old_a:real;
iteration:integer;
a,b:real;
length_z:real;
begin
a:=0;b:=0;
iteration:=0;
repeat
old_a:=a;
a:=a*a-b*b+ca;
b:=2*old_a*b+cb;
iteration:=iteration+1;
length_z:=a*a+b*b;
until (length_z>4) or (iteration>max_iteration);
Calc_Pixel:=iteration;
End;
Begin
grdriver:=Detect;
InitGraph(grDriver,grMode,'');
ErrCode:=GraphResult;
if ErrCode<>grOk then
begin
writeln('could not');
Writeln('do you have correct..??');
halt;
end;
for x := 0 to 63 do
setRGBpalette (x, x, x, x * 4);
screen_x:=getmaxx;
screen_y:=getmaxy;
dx:=(MaxX-MinX)/screen_x;
dy:=(MaxY-MinY)/screen_y;
for y:=0 to screen_y-1 do
for x:=0 to screen_x-1 do
begin
color:=calc_pixel(MinX+x*dx,MinY+y*dy);
putpixel(x,y,color);
end;
repeat until keypressed;
End.