-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisiurewicz-domains.c
136 lines (124 loc) · 3.36 KB
/
misiurewicz-domains.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include <complex.h>
#include <math.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/tree/HEAD:/book
gcc misiurewicz-domains.c -lm -Wall -fopenmp
./a.out > md.pgm
cd existing_folder
git init
git remote add origin [email protected]:adammajewski/mandelbrot-book_book.git
git add misiurewicz-domainsc
git commit -m "misiurewicz-domains"
git push -u origin master
*/
static double cabs2(complex double z) {
return creal(z) * creal(z) + cimag(z) * cimag(z);
}
void hsv2rgb(double h, double s, double v, int *red, int *grn, int *blu) {
double i, f, p, q, t, r, g, b;
int ii;
if (s == 0.0) { r = g = b = v; } else {
h = 6 * (h - floor(h));
ii = i = floor(h);
f = h - i;
p = v * (1 - s);
q = v * (1 - (s * f));
t = v * (1 - (s * (1 - f)));
switch(ii) {
case 0: r = v; g = t; b = p; break;
case 1: r = q; g = v; b = p; break;
case 2: r = p; g = v; b = t; break;
case 3: r = p; g = q; b = v; break;
case 4: r = t; g = p; b = v; break;
default:r = v; g = p; b = q; break;
}
}
*red = fmin(fmax(255 * r + 0.5, 0), 255);
*grn = fmin(fmax(255 * g + 0.5, 0), 255);
*blu = fmin(fmax(255 * b + 0.5, 0), 255);
}
int main()
{
double phi = (sqrt(5) + 1) / 2;
double gold = 1 / (phi * phi);
int aa = 4;
int w = 800 * aa;
int h = 800 * aa;
int maxiters = 4096;
double er2 = 65536;
double _Complex c0 = -1.7548776662466929;
double r = 1.9035515913132437e-02 * 2;
int period = 1;
unsigned char *img = malloc(3 * w * h);
#pragma omp parallel for schedule(static, 1)
for (int j = 0; j < h; ++j)
{
double y = (h/2 - (j + 0.5)) / (h/2);
for (int i = 0; i < w; ++i)
{
double x = ((i + 0.5) - w/2) / (h/2);
double _Complex c = c0 + r * (x + I * y);
double dc0 = r / (h/2);
double _Complex z = c;
double _Complex dc = 1;
double _Complex zp = c;
int pp = 0;
double mp2 = 1.0 / 0.0;
double mz2 = 1.0 / 0.0;
double de = -1;
for (int n = 0; n < period; ++n)
{
double z2 = cabs2(z);
if (z2 > er2)
{
de = sqrt(z2 / cabs2(dc * dc0)) * log(z2);
break;
}
dc = 2 * z * dc + 1;
z = z * z + c;
}
if (de < 0)
{
for (int n = 0; n < maxiters - period; ++n) {
double z2 = cabs2(z);
if (z2 < mz2) {
mz2 = z2;
}
if (z2 > er2) {
de = sqrt(z2 / cabs2(dc * dc0)) * log(z2);
break;
}
double p2 = cabs2(z - zp);
if (p2 < mp2) {
mp2 = p2;
pp = n;
}
dc = 2 * z * dc + 1;
z = z * z + c;
zp = zp * zp + c;
}
}
double hue = 0, sat = 0, val = 1;
if (de >= 0)
{
hue = 1 - fmod(gold * pp, 1);
sat = 0.25;
val = tanh(de / aa);
}
int red, grn, blu;
hsv2rgb(hue, sat, val, &red, &grn, &blu);
img[3*(j * w + i)+0] = red;
img[3*(j * w + i)+1] = grn;
img[3*(j * w + i)+2] = blu;
}
}
printf("P6\n%d %d\n255\n", w, h);
fwrite(img, 3 * w * h, 1, stdout);
free(img);
return 0;
}