DEVELOPMENT ENVIRONMENT

~alex/mandelbrot-set-gen

ref: 49df2e4de31278d6725c7ab196c4ccfad19c74eb mandelbrot-set-gen/include/mandelbrot.h -rw-r--r-- 236 bytes
49df2e4dAlejandro Laguna feat: zoom in and out 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