-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathescape-time.c
58 lines (49 loc) · 1.07 KB
/
escape-time.c
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
#include <math.h>
#include <complex.h>
#include <stdio.h>
#include <stdlib.h>
#include <omp.h> //OpenM
/*
fork of
mandelbrot-book how to write a book about the Mandelbrot set by Claude Heiland-Alle
https://code.mathr.co.uk/mandelbrot-book/blob/HEAD:/book/
gcc escape-time.c -lm -Wall -fopenmp
./a.out >et.pgm
*/
double cnorm(double _Complex z)
{
return creal(z) * creal(z) + cimag(z) * cimag(z);
}
int main()
{
int aa = 4;
int w = 800 * aa;
int h = 800 * aa;
int n = 1024;
double r = 2;
double r2 = r * r;
unsigned char *img = malloc(w * h);
#pragma omp parallel for
for (int j = 0; j < h; ++j)
{
double y = (h/2 - (j + 0.5)) / (h/2) * r;
for (int i = 0; i < w; ++i)
{
double x = (i + 0.5 - w/2) / (h/2) * r;
double _Complex c = x + I * y;
double _Complex z = 0;
int k;
for (k = 0; k < n; ++k)
{
z = z * z + c;
if (cnorm(z) > r2)
break;
}
img[j * w + i] = (k & 1) ? 0 : 255;
}
}
printf("P5\n%d %d\n255\n", w, h);
fwrite(img, w * h, 1, stdout);
free(img);
return 0;
}