DEVELOPMENT ENVIRONMENT

~alex/mandelbrot-set-gen

ref: 7f5e734f41ff771a1336de4772b7b9ba6e7a8459 mandelbrot-set-gen/include/mandelbrot.h -rw-r--r-- 236 bytes
7f5e734fAlejandro Laguna refactor: separate functions into files a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MANDELBROT_H
#define MANDELBROT_H

// math.c
int mandelbrot_iterations(double cr, double ci, int max_iter);

// color.c
// TODO: color struct or something
void get_color(int iter, int max_iter, int* r, int* g, int* b);


#endif