summaryrefslogtreecommitdiff
path: root/src/fractal.hh
blob: be6196b5fb76c089fb137eef0b42bdf3c5076d44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _FRACTAL_HH_
#define _FRACTAL_HH_

/* Include libraries */

/* Include header files */

typedef enum {
	burningShip = 2,
	julia       = 1,
	mandelbrot  = 0,
	mandelbrot3 = 4,
	mandelbrot4 = 6,
	mandelbrot5 = 5,
	tricorn     = 3
} fractal;

#endif /* #ifndef _FRACTAL_HH_*/