I am trying to replicate the following figure which is related to parallel transport of vectors in general relativity, how commuting two vectors under addition in a torsional space creates a parallelogram which fails to close, the space between the closure is a measure of torsion.
Here is a figure that I am trying to replicate:

And here is my attempt that I have so far:

My problem is, is there a convenient way to draw vectors parallel to the tangent vector at the top most point of the curve and then draw these parallel vectors of equal magnitude in the remaining parts of the curve, equally spaced?
I know I may be able to replicate using the help of some GUI such as TikZEdt for this but, still I would like to know if there is a solution to this without GUI.
My code so far:
\documentclass{standalone}
\usepackage{tikz}
\usepackage{graphicx}
\usetikzlibrary{arrows,decorations.markings}
\begin{document}
\begin{tikzpicture}[
tangent/.style={
decoration={
markings,% switch on markings
mark=
at position #1
with
{
\coordinate (tangent point-\pgfkeysvalueof{/pgf/decoration/mark info/sequence number}) at (0pt,0pt);
\coordinate (tangent unit vector-\pgfkeysvalueof{/pgf/decoration/mark info/sequence number}) at (1,0pt);
\coordinate (tangent orthogonal unit vector-\pgfkeysvalueof{/pgf/decoration/mark info/sequence number}) at (0pt,1);
}
},
postaction=decorate
},
use tangent/.style={
shift=(tangent point-#1),
x=(tangent unit vector-#1),
y=(tangent orthogonal unit vector-#1)
},
use tangent/.default=1
]
\draw[
tangent=0,
tangent=0.125,
tangent=0.25,
tangent=0.375,
red,line width=1pt] (-0.8,-0.725) .. controls (-0.975,0.3) and (-0.825,1.6) .. (0.05,2.125) .. controls (0.95,1.825) and (1.425,0.525) .. (1.175,-0.65) .. controls (0.3,-0.825) and (0.05,-0.775) .. cycle;
\draw [blue, thick, use tangent, -stealth] (0,0) -- (1.1,0);
\draw [blue, thick, use tangent=2, -stealth] (0,0) -- (1.1,0);
\draw [blue, thick, use tangent=3, -stealth] (0,0) -- (1.1,0);
\draw [blue, thick, use tangent=4, -stealth] (0,0) coordinate (a) -- (1.1,0) coordinate (b);
\end{tikzpicture}
\end{document}
Parts of the code relating to drawing tangent vectors were taken from Jake's answer from this post: How to draw tangent line of an arbitrary point on a path in TikZ

calcthen? Then you just need to add coordinates where you want them and calculate with those. Do you actually want the circle/sphere? – cfr Nov 11 '23 at 05:42