I didn't expected the following intersection in my graph (here, for sake of minimalism, only locally exposed). Now, I need to know, how to colour the two sides of the ribbon I (locally) drew as follows:
How to constrain the filling to the curves in the wished area?
\documentclass{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill[double,blue, opacity=.39,
double distance=1.0 pt,thick,smooth] plot[smooth ] coordinates{
(12.68,-.96) (12.68-.085,-.96-.063) (12.68+.25, -.96+0.001) (12.68+.282, -.96+.1)
(12.68,-.96) } ;
\draw[ opacity=.4]
(12.68,-.96) ..controls +( .4,.083) and +( .1,-.0811 ) .. (12.88,-.75) ;
\draw[ opacity=.4]
(12.61,-1.01) ..controls +( .46,.05) and +( .135,-.0811 ) .. (12.839,-.81) ;
% second, non-smooth attempt
\begin{scope}[xshift=.5cm]
\fill[double, red!60!black, opacity=.39,
double distance=1.0 pt]
(12.68,-.96) -- +(-.085, -.063) -- +(.255, 0.001) -- +(.289, .1) -- (12.68,-.96) ;
\draw[ opacity=.4]
(12.68,-.96) ..controls +( .4,.083) and +( .1,-.0811 ) .. (12.88,-.75) ;
\draw[ opacity=.4]
(12.61,-1.01) ..controls +( .46,.05) and +( .135,-.0811 ) .. (12.839,-.81) ;
\end{scope}
\end{tikzpicture}
\end{document}


