This repository has been archived on 2022-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
HPC/Project2/Project2-code/mandel/consts.h

18 lines
334 B
C

#ifndef CONSTS_H_
#define CONSTS_H_
// maximum number of iterations
#define MAX_ITERS 35207
// image size
#define IMAGE_WIDTH 4096
#define IMAGE_HEIGHT 4096
// the extent of the parameter plane ( MIN_X + iMIN_Y <= c < MAX_X + iMAX_Y )
#define MIN_X -2.1
#define MAX_X 0.7
#define MIN_Y -1.4
#define MAX_Y 1.4
#endif /*CONSTS_H_*/