-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfa.c
176 lines (129 loc) · 4.14 KB
/
fa.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#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/blob/HEAD:/book/
HSV
* Hue is circular, from red at 0, with increasing values running through the rainbow yellow
green blue violet, and then back through purple and pink to red again at 1, where the cycle repeats.
* Saturation blends colour intensity from greyscale at 0 to full blast at 1,
* value controls brightness: black at 0 and full strength at 1
We use single precision float for the calculations: 24bits is more than enough, given each colour channel has only 8bits.
We need to scale the output values from hsv2rgb() from [0..1] to [0..255], and we clamp them to the output
range to make sure no overflow glitches occur.
Angles are unique up to multiples of a whole turn (2 pi), so
maths conventionalized the prinicipal argument to be in [-pi,pi]. Given a fixed range, we can
rescale it to the fixed range for our PPM output: first we normalize to [-0.5,0.5], we shift it by
1 to [0.5,1.5], and then we use the fmod() function to take the fractional part, giving us a range
of [0,1]. Multiplying by the number of values in our 24bit range gives us an integer that we can
pack into bytes as before.
colour function uses both sources of information now:
* hue coming from the escape time
* value from the final angle
float hue = final_n / 64.0f;
float sat = final_z_abs ;
float val = final_z_arg ;
gcc fa.c -lm -Wall -fopenmp
./a.out > fa.pgm
*/
static double TwoPi=2.0*M_PI;
double c_arg(complex double z)
{
double arg;
arg = carg(z);
if (arg<0.0) arg+= TwoPi ;
return arg;
}
double c_turn(complex double z)
{
double arg;
arg = c_arg(z);
return arg/TwoPi;
}
const double pi = 3.141592653589793;
//
double cnorm(double _Complex z) // https://stackoverflow.com/questions/6363247/what-is-a-complex-data-type-and-an-imaginary-data-type-in-c
{
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()
{
int aa = 4; //
int w = 800 * aa;
int h = 800 * aa;
int nMax = 1024;
double r = 2;// radius of the plane
//double px = r / (h/2); // pixel size
double er = 512;
double er2 = er * er; // escape_radius *escape_radius
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) * 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;
// iteration
int n;
for (n = 0; n < nMax; ++n)
{
z = z * z + c;
if (cnorm(z) > er2)
break;
}
// colour
double hue = 0, sat = 0, val = 1; // interior
if (n < nMax) // exterior
{
double et = ((double)n)/nMax;
double final_angle = c_turn(z);
// double final_radius = cabs(z)/er;
hue = et;
sat = 0.8; //final_radius; //0.7;
val = final_angle;
}
// hsv to rgb conversion
int red, grn, blu;
hsv2rgb(hue, sat, val, &red, &grn, &blu);
//
int k = 3*(j * w + i);
img[k+0] = red;
img[k+1] = grn;
img[k+2] = blu;
}
}
printf("P6\n%d %d\n255\n", w, h);
fwrite(img, 3 * w * h, 1, stdout);
free(img);
return 0;
}