From 139c9f0aaa435c974930dd35950040771321889c Mon Sep 17 00:00:00 2001 From: Turingon Date: Wed, 28 Feb 2024 14:30:44 +0000 Subject: [PATCH] README.md aktualisiert --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18c4833..a22ee8d 100644 --- a/README.md +++ b/README.md @@ -63,4 +63,10 @@ At the end I also added an intervals struct, to further simplify the code. This chapter was yet another simplification of the existing code - the viewport and the camera were moved out of main and got their own struct. The camera struct and the render function have two tasks: 1) Construct and dispatch rays into the world and -2) Use the results of these rays to construct the rendered image \ No newline at end of file +2) Use the results of these rays to construct the rendered image + +### Chapter 7: Anti-Aliasing + +The images rendered thus far have jagged edges and this is known as aliasing. To soften the edges each pixel gets sampled multiple times and the colour gets averaged. I've spend quite some time on this chapter due to a veeeery small bug in the code. This chapter produces a similar but softer image as before. Here an comparison: + +Second PPM image