summaryrefslogtreecommitdiffstats
path: root/Smoke/report/chapter7.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Smoke/report/chapter7.tex')
-rw-r--r--Smoke/report/chapter7.tex6
1 files changed, 2 insertions, 4 deletions
diff --git a/Smoke/report/chapter7.tex b/Smoke/report/chapter7.tex
index 5fb859e..91ae9b2 100644
--- a/Smoke/report/chapter7.tex
+++ b/Smoke/report/chapter7.tex
@@ -15,8 +15,7 @@ also be used on the left mouse button to move the field up and down, left and ri
\section{Implementation}
-Realizing height plots would not be very visible from the default view, rotation, zoom and movement was implemented first. After having the ability we constructed
-the height plots as follows. \\
+Realizing height plots would not be very visible from the default view, rotation, zoom and movement was implemented first. After having that ability height plots were constructed. \\
Since vertex already had x and y-coordinates, all that was needed was to add a z-coordinate. An extra array to track the height of each vertex was used, as the
original simulation and its data-structures should not be disturbed. As value for the height any of the primary datasets can be chosen. When drawing a vertex the
@@ -65,8 +64,7 @@ the center. \\
\subsection{Height strips}
-When first implementing the height plots a third dimension was simply added when rendering the triangle strips for the smoke visualization. This had as an effect
-that the different rows of each of the triangle strips in the simulation where not connected. In stead of a height plots, height strips were implemented. \\
+When first implementing the height plots a third dimension was simply added when rendering the triangle strips for the smoke visualization. This had as an effect that the different rows of each of the triangle strips in the simulation where not connected. In stead of a height plots, height strips were implemented. \\
This problem was countered first calculating the height for each vertex and storing it in an array. When rendering a vertex, the correct value is then retrieved
from the array to correctly display the height. \\