I am trying to do a sketch of fluid pathlines, streaklines, and streamlines using TikZ. The code
\documentclass{minimal}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill [fill=blue!25] (0.0, 0.0) -- (0.0, 2.0) -- (6.0, 2.0) -- (6.0, 1.0) to[out=180, in=0] (0.0, 0.0);
\filldraw [semithick, fill=gray!50] (0.0, 2.0) rectangle (6.0, 2.1);
\filldraw [semithick, fill=gray!50] (0.0, -0.1) -- (0.0, 0.0) to[out=0, in=180] (6.0, 1.0) -- (6.0, 0.9) to[out=180, in=0] (0.0, -0.1);
%
\draw [thick] (0.25, 0.25) to[out=0, in=180] node [pos=0.1, above] {$t_{1}$} node [pos=0.5, above] {$t_{2}$} node [pos=0.9, above] {$t_{3}$} (5.75, 1.125);
\end{tikzpicture}
\end{document}
generates the following image:

I would like there to be closed circles on the black line at the locations under the labels $t_{1}$, $t_{2}$, and $t_{3}$. Can someone suggest how to do this? Thanks.


hobby, definitely. – Claudio Fiandrino Jan 29 '14 at 19:05