This commit is contained in:
emiliie 2015-03-12 19:00:06 +01:00
parent 903d7f538e
commit dcf6a64b79
1 changed files with 6 additions and 4 deletions

View File

@ -4,11 +4,13 @@
\paragraph{Characteristic circles computation}
We take a point sampled on the spline. It gives us information about the sphere located on this point : C(t) the sphere center coordinates and r(t) its radius. We also have their derivatives : 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 this formula :
$<C'(t),PC(t)> - r'(t)r(t) = 0$
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 this formula : \\
$<\overrightarrow{C'}(t),\overrightarrow{PC}(t)> -r'(t)r(t) = 0$
and then we calculate the center of the characteristic circle with this formula :
$Cp(t) = C(t) r'(t)r(t)/norm(C'(t))² * C'(t)$
$\overrightarrow{Cp}(t) = \overrightarrow{C}(t) - r'(t)r(t)/ /| (\overrightarrow{C'}(t)/| ^{2} * \overrightarrow{C'}(t)$
\begin{figure}[H]
\begin{center}