DEVELOPMENT ENVIRONMENT

~alex/mandelbrot-set-gen

ref: b7b7cbb105dea088b4a265ef62df391d719e2cf2 mandelbrot-set-gen/include/mandelbrot.h -rw-r--r-- 236 bytes
b7b7cbb1Alejandro Laguna feat: SDL3 display 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