This commit is contained in:
emiliie 2015-03-12 16:42:50 +01:00
parent bcaeb64df7
commit c864b4bb1a
1 changed files with 5 additions and 2 deletions

View File

@ -5,6 +5,10 @@
\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
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)
\begin{figure}[H]
\begin{center}
@ -17,5 +21,4 @@
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.
$TODO$
%TODO