Skip to content

Commit a799231

Browse files
committed
.
1 parent 661f28f commit a799231

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

Fractal Images/main.cpp

+14-8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include"Bitmap.h"
77
#include"Mandelbrot.h"
88
#include<cstdint>
9+
#include <math.h>
910

1011
using namespace std;
1112
using namespace fractal;
@@ -51,19 +52,24 @@ int main() {
5152
for (int y = 0; y < HEIGHT; y++) {
5253
for (int x = 0; x < WIDTH; x++) {
5354

55+
uint8_t red = 0;
56+
uint8_t green = 0;
57+
uint8_t blue = 0;
58+
5459
int iterations = fractal[y * WIDTH + x];
5560

61+
if (iterations != Mandelbrot::MAX_ITERATIONS) {
5662

5763

58-
double hue = 0.0;
59-
for (int i = 0; i <= iterations; i++) {
60-
hue += ((double)histogram[i])/total;
61-
}
6264

63-
uint8_t red = 0;
64-
uint8_t green = hue*255;
65-
uint8_t blue = 0;
66-
65+
double hue = 0.0;
66+
for (int i = 0; i <= iterations; i++) {
67+
hue += ((double)histogram[i]) / total;
68+
}
69+
70+
green = pow(255, hue);
71+
72+
}
6773

6874
bitmap.setPixel(x, y, red, green, blue);
6975

test.bmp

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)