summaryrefslogtreecommitdiffstats
path: root/Smoke/report/chapter6.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Smoke/report/chapter6.tex')
-rw-r--r--Smoke/report/chapter6.tex15
1 files changed, 8 insertions, 7 deletions
diff --git a/Smoke/report/chapter6.tex b/Smoke/report/chapter6.tex
index dd59860..dfbb0e8 100644
--- a/Smoke/report/chapter6.tex
+++ b/Smoke/report/chapter6.tex
@@ -35,21 +35,22 @@ This means there are in total 16 different cases in which the isoline can run th
\begin {center}
\includegraphics[width=\textwidth]{marching.png} \\
- Figure 5: The 16 marching square cases \\
+ Figure 6: The 16 marching square cases \\
\end {center}
-The above image (figure 5) shows the 16 different cases in the marching squares algorithm. A white vertex indicates the vertex is outside the isosurface and black
-indicates the vertex is inside the isosurface. Every inside or outside case has it's counterpart. So we reduces the number of cases down to 8. In case 0 and 15 for
+The above image (figure 6) shows the 16 different cases of the marching squares algorithm. A white vertex indicates that the vertex is outside the isosurface and
+black indicates it is inside the isosurface. Every inside or outside case has it's counterpart. So we've reduced the number of cases down to 8. In case 0 and 15 for
instance, no lines have to be rendered, yet they are both very different cases. \\
-The cases 5 and 10 are both ambiguous cases as becomes clear from the next image (figure 6). \\
+The cases 5 and 10 are both ambiguous cases as becomes clear from the next image (figure 7). \\
\begin {center}
\includegraphics[width=100mm]{ambiguous.png} \\
- Figure 6: Two ambiguous cases in the marching squares algorithm \\
+ Figure 7: Two ambiguous cases in the marching squares algorithm \\
\end {center}
\section{Difficulties}
-The contouring algorithm is very simple to implement. Just follow the instructions of the method. To only trouble we had with this implementation was the
-interpolation of the intersection. \\
+The contouring algorithm is very simple to implement. Just follow the instructions of the method. Still our contour was not very smooth. It had sharp edges
+everywhere and there was no smooth curve in the contour. The problem was with the intersection with the isovalue. We did'nt exactly follow the equation that was in
+the study material. When we reverted to that equation the isolines where nice and smooth. \\