I'm trying to get the intersection point between a line and a circle but then when I draw from that point to another it does not start just at the intersection.
Here is my code:
\documentclass[margin=1mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{intersections}
\begin{document}
\begin{tikzpicture}
\draw [name path = circle]
(0,0) circle (1);
\path [name path = en1] (-3,.4)--(3,.4);
\path [name path = en2] (-3,-.4)--(3,-.4);
\draw [name intersections={of=en1 and circle}]
(intersection-1) node (ne) {}
(intersection-2) node (no) {};
\draw [name intersections={of=en2 and circle}]
(intersection-1) node (so) {}
(intersection-2) node (se) {};
\draw
(0,0) -- (ne);
\end{tikzpicture}
\end{document}


nodetocoordinatesolved my problem. – jagjordi Jun 29 '17 at 20:20\draw (0,0) -- (ne.center);– StefanH Jun 29 '17 at 20:28