Skip to content

Commit 9e92f62

Browse files
committed
Updated README.md
Version: 1.0.0
1 parent 671931c commit 9e92f62

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ int main(void)
5050
}
5151
}
5252
```
53-
![random](Images/random.bmp)
53+
![random](images/random.bmp)
5454
5555
<br><br>
5656
@@ -115,7 +115,7 @@ int main(void)
115115
return EXIT_SUCCESS;
116116
}
117117
```
118-
![mandelbrot](Images/mandelbrot.bmp)
118+
![mandelbrot](images/mandelbrot.bmp)
119119

120120
<br><br>
121121

@@ -175,7 +175,7 @@ int main(void)
175175
return EXIT_SUCCESS;
176176
}
177177
```
178-
![julia](Images/julia.bmp)
178+
![julia](images/julia.bmp)
179179
180180
181181
<br><br>
@@ -211,13 +211,13 @@ int main(void)
211211
return EXIT_SUCCESS;
212212
}
213213
```
214-
![penguin](Images/penguin.bmp)
215-
![modified-penguin](Images/modified-penguin.bmp)
214+
![penguin](images/penguin.bmp)
215+
![modified-penguin](images/modified-penguin.bmp)
216216

217217

218218
<br><br>
219219

220-
<strong>Modify The Penguin</strong>
220+
<strong>Chess Board</strong>
221221
<br>
222222

223223
```cpp
@@ -234,7 +234,7 @@ int main()
234234
const std::size_t rect_w = image.width() / board_dims;
235235
const std::size_t rect_h = image.height() / board_dims;
236236

237-
// Iterate over rects
237+
// Iterate over rectangles
238238
bool is_white = true;
239239
for (std::size_t x = 0; x < image.width(); x += rect_w)
240240
{
@@ -249,9 +249,9 @@ int main()
249249
image.set(dx, dy, color);
250250
}
251251
}
252-
is_white = !is_white;
252+
is_white = !is_white; // flip flop
253253
}
254-
is_white = !is_white;
254+
is_white = !is_white; // flip flop
255255
}
256256

257257
// Save bitmap to file
@@ -266,7 +266,7 @@ int main()
266266
}
267267
}
268268
```
269-
![chess_board](Images/chess_board.bmp)
269+
![chess_board](images/chess_board.bmp)
270270

271271
## Features and bugs
272272
If you face any problems feel free to open an issue at the [issue tracker][tracker]. If you feel the library is missing a feature, please raise a ticket on Github. Pull request are also welcome.

0 commit comments

Comments
 (0)