blob: 160ddabdc7af100d326b1fe01b7feb641f35a07d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef _FRACTDATA_HH_
#define _FRACTDATA_HH_
class fractData;
/* Include libraries */
/* Include header files */
#include "fractal.hh"
#include "mansdl.hh"
class fractData {
public:
long double real = 0.0;
long double imag = 0.0;
long double julia_real = 0.0;
long double julia_imag = 0.0;
long double zoom = 1.0;
fractal fract = mandelbrot;
unsigned int maxIter = 128;
unsigned int width = WINDOW_WIDTH;
unsigned int height = WINDOW_HEIGHT;
};
#endif /* #ifndef _FRACTDATA_HH_ */
|