DEVELOPMENT ENVIRONMENT

~alex/mandelbrot-set-gen

ref: 03d3348a745b77e464e2e830ad7bd8cef5bfdff0 mandelbrot-set-gen/include/mandelbrot.h -rw-r--r-- 236 bytes
03d3348aAlejandro Laguna fix: visual not appearing without event 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