in Naming nodes in a decoration and draw lines from node to node I asked a question, which was answered. The most help was the following.
\documentclass[tikz,border=3.14mm]{standalone}
\usetikzlibrary{decorations.markings}
\begin{document}
\begin{tikzpicture}[
decoration={
markings,
mark=at position 0.4 with {\draw[->] (0,0)--(0,1);
\draw[->] (0,0)--(2,-2) node[below]{A};
\draw[<-] (0,0)--(-.8,-.8);}
}
]
\draw[postaction={decorate}] plot [smooth cycle] coordinates {(0,0) (1,1) (3,1) (3,0) (2,-1)};
\end{tikzpicture}
\end{document}
Now, being able to draw those lines and naming the point, the follow up question is: Can I find the intersection of A with the smooth plot in relation to the smooth plot. I'd like the intersection in terms of pos=.3 or something, so can do a decoration at the intersection. Is it possible and how can it be done?
Thanks a lot. Greetings Fabian

Ais a node. What you mean by intersection ofAwith plot? – nidhin Nov 23 '18 at 09:04