-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiterate.c
244 lines (232 loc) · 9.95 KB
/
iterate.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
// mandelbrot-gtk - Multithreaded GTK Application for rendering the mandelbrot and julia-set
//
// Copyright (C) 2010-2020 Felix Neumärker
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <glib.h>
#include "render.h"
#include "math.h"
#include "libcolor/color.h"
#define sqr(x) (x) * (x)
/* using dirty define/include-hacks for fast-inline templates... */
/* look at iterate_template.h */
static int outcircle(gdouble cx, gdouble cy, gdouble sqrr, double x, double y)
{
x -= cx;
y -= cy;
return (x * x + y * y > sqrr) ? 1 : 0;
}
/* mandelbrot_set function: */
#undef IT_FUNC_NAME
#define IT_FUNC_NAME mandelbrot_set
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, tmpzre, tmpzim;
#undef IT_INIT
#define IT_INIT
#undef IT_INLINE_FUNC
#define IT_INLINE_FUNC \
zre = itre; \
zim = itim; \
tmpzre = sqr(zre); \
tmpzim = sqr(zim); \
iterinfo = param->itermap + x + y * xmax; \
/* iterinfo->sqr_abs_z = tmpzre + tmpzim; */ \
if ((outcircle(-0.11, 0.0, sqr(0.63), zre, zim) || zre > 0.1) \
&& outcircle(-1.0, 0.0, sqr(0.25), zre, zim) \
&& outcircle(-0.125, 0.744, sqr(0.092), zre, zim) \
&& outcircle(-1.308, 0.0, sqr(0.058), zre, zim) \
&& outcircle(0.0, 0.25, sqr(0.35), zre, zim)) { \
for (;;) { \
if (tmpzre + tmpzim < 4.0) { \
zim = 2.0 * zre * zim + itim; \
zre = tmpzre - tmpzim + itre; \
} else { \
iterinfo->iter = iter; \
break; \
} \
++iter; \
if (iter > itermax) { \
iterinfo->iter = -1; \
break; \
} \
tmpzre = sqr(zre); \
tmpzim = sqr(zim); \
} \
} else { \
iterinfo->iter = -1; \
}
#undef IT_FIRST_FOR
#define USE_UPDATE_FUNC
#include "iterate_template.h"
#undef IT_FUNC_NAME
#define IT_FUNC_NAME mandelbrot_set_row_count
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, tmpzre, tmpzim; \
gint *col_count;
#undef IT_INIT
#define IT_INIT col_count = param->row_count + id;
#undef IT_FIRST_FOR
#define IT_FIRST_FOR ++*col_count;
#undef USE_UPDATE_FUNC
#include "iterate_template.h"
/* julia_set function: */
#undef IT_FUNC_NAME
#define IT_FUNC_NAME julia_set
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, tmpzre, tmpzim, jre, jim;
#undef IT_INIT
#define IT_INIT jre = param->j[0]; \
jim = param->j[1];
#undef IT_INLINE_FUNC
#define IT_INLINE_FUNC \
zre = itre; \
zim = itim; \
tmpzre = sqr(zre); \
tmpzim = sqr(zim); \
iterinfo = param->itermap + x + y * xmax; \
/* iterinfo->sqr_abs_z = tmpzre + tmpzim; */ \
for (;;) { \
if (tmpzre + tmpzim < 4.0) { \
zim = 2.0 * zre * zim + jim; \
zre = tmpzre - tmpzim + jre; \
} else { \
iterinfo->iter = iter; \
break; \
} \
++iter; \
if (iter > itermax) { \
iterinfo->iter = -1; \
break; \
} \
tmpzre = sqr(zre); \
tmpzim = sqr(zim); \
}
#undef IT_FIRST_FOR
#define USE_UPDATE_FUNC
#include "iterate_template.h"
/* julia_set function with status: */
#undef IT_FUNC_NAME
#define IT_FUNC_NAME julia_set_row_count
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, tmpzre, tmpzim, jre, jim; \
gint *col_count;
#undef IT_INIT
#define IT_INIT jre = param->j[0]; \
jim = param->j[1]; \
col_count = param->row_count + id;
#undef IT_FIRST_FOR
#define IT_FIRST_FOR ++*col_count;
#undef USE_UPDATE_FUNC
#include "iterate_template.h"
/* mandelbrot_set_deg: */
#undef IT_FUNC_NAME
#define IT_FUNC_NAME mandelbrot_set_deg
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, r, phi; \
register gdouble degree;
#undef IT_INIT
#define IT_INIT degree = param->degree;
#undef IT_INLINE_FUNC
#define IT_INLINE_FUNC \
zre = itre; \
zim = itim; \
r = sqr(zre) + sqr(zim); \
iterinfo = param->itermap + x + y * xmax; \
/* iterinfo->sqr_abs_z = r; */ \
for (;;) { \
if (r < 4.0) { \
r = pow(r, degree / 2.0); \
phi = atan2(zim, zre); \
zre = r * cos(degree * phi) + itre; \
zim = r * sin(degree * phi) + itim; \
} else { \
iterinfo->iter = iter; \
break; \
} \
++iter; \
if (iter > itermax) { \
iterinfo->iter = -1; \
break; \
} \
r = sqr(zre) + sqr(zim); \
}
#undef IT_FIRST_FOR
#define USE_UPDATE_FUNC
#include "iterate_template.h"
/* mandelbrot_set_deg function with status */
#undef IT_FUNC_NAME
#define IT_FUNC_NAME mandelbrot_set_deg_row_count
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, r, phi; \
register gdouble degree; \
gint *col_count;
#undef IT_INIT
#define IT_INIT degree = param->degree; \
col_count = param->row_count + id;
#undef IT_FIRST_FOR
#define IT_FIRST_FOR ++*col_count;
#undef USE_UPDATE_FUNC
#include "iterate_template.h"
/* julia_set_deg function: */
#undef IT_FUNC_NAME
#define IT_FUNC_NAME julia_set_deg
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, jre, jim, r, phi; \
gdouble degree;
#undef IT_INIT
#define IT_INIT degree = param->degree; \
jre = param->j[0]; \
jim = param->j[1];
#undef IT_INLINE_FUNC
#define IT_INLINE_FUNC \
zre = itre; \
zim = itim; \
r = sqr(zre) + sqr(zim); \
iterinfo = param->itermap + x + y * xmax; \
/* iterinfo->sqr_abs_z = r; */ \
for (;;) { \
if (r < 4.0) { \
r = pow(r, degree / 2.0); \
phi = atan2(zim, zre); \
zre = r * cos(degree * phi) + jre; \
zim = r * sin(degree * phi) + jim; \
} else { \
iterinfo->iter = iter; \
break; \
} \
++iter; \
if (iter > itermax) { \
iterinfo->iter = -1; \
break; \
} \
r = sqr(zre) + sqr(zim); \
}
#undef IT_FIRST_FOR
#define USE_UPDATE_FUNC
#include "iterate_template.h"
/* julia_set_deg function with status */
#undef IT_FUNC_NAME
#define IT_FUNC_NAME julia_set_deg_row_count
#undef IT_VAR
#define IT_VAR register gdouble zre, zim, jre, jim, r, phi; \
register gdouble degree; \
gint *col_count;
#undef IT_INIT
#define IT_INIT degree = param->degree; \
jre = param->j[0]; \
jim = param->j[1]; \
col_count = param->row_count + id;
#define IT_FIRST_FOR ++(*col_count);
#undef USE_UPDATE_FUNC
#include "iterate_template.h"