Circle and regularMesh

This commit is contained in:
Thomas FORGIONE 2015-03-12 21:11:02 +01:00
parent 0c4696cae9
commit e021b8a598
2 changed files with 6 additions and 6 deletions

BIN
report/img/regularMesh.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -5,13 +5,13 @@
\subsubsection{Characteristic circles computation}
We take a point sampled on the spline. It gives us information about the sphere located on this point : $\overrightarrow{C}(t)$ the sphere center coordinates and r(t) its radius. We also have their derivatives : $\overrightarrow{C'}(t)$ and r'(t). The idea is to find the intersection between this sphere and the characteristic plane, which would give us the characteristic circle.
If a point P is on the circle, then we can write the formula \ref{eq1} :
If a point P is on the circle, then we can write the formula \ref{eq1} :
\begin{equation}
<\overrightarrow{C'}(t),\overrightarrow{PC}(t)> -r'(t)r(t) = 0
\label{eq1}
\end{equation}
and then we calculate the center of the characteristic circle with the formula \ref{eq2}:
\begin{equation}
\overrightarrow{Cp}(t) = \overrightarrow{C}(t) - \frac{r'(t)r(t)}{\| \overrightarrow{C'}(t)\| ^{2}} \times \overrightarrow{C'}(t)
@ -27,14 +27,14 @@ and then we calculate the center of the characteristic circle with the formula \
\subsubsection{Meshing}
After obtaining characteristic circles we sample them.
Then we need to find matching points. We decided to make points sampling start in one direction of our mark.
After obtaining characteristic circles we sample them.
Then we need to find matching points. We decided to make points sampling start in one direction of our mark.
When this is done we project the mark on the new circle and sample again. Then we link each point to the point of the same index on the next circle.
The final mesh can be seen Figure \ref{regularMesh}.
\begin{figure}[H]
\begin{center}
\includegraphics[scale=0.8]{img/regularMesh}
\includegraphics[scale=0.4]{img/regularMesh}
\caption{\label{regularMesh} The regular mesh}
\end{center}
\end{figure}