I am aware that there is myriad of posts dealing with the intersection of objects in tikz, but I haven't found one that shows how to intersect two paths, so far. I would like to either shade or hatch the intersection of two blobs:
\documentclass{standalone}
\usepackage{tikz,pgfplots}
\usetikzlibrary{hobby,intersections,fillbetween,patterns}
\begin{document}
\begin{tikzpicture}
\path[name path = A,draw,use Hobby shortcut,closed=true, fill=blue]
(0,2) .. (3,3) .. (4,-3) .. (5,1);
\path[name path = B,draw,use Hobby shortcut,closed=true, fill=red,xshift=3cm, yshift=-1cm, fill opacity=.5]
(.5,.5) .. (2,4) .. (.5,4) .. (-1,2);
\end{tikzpicture}
\end{document}
Since couldn't see how to use \clip with \path, and following the examples on this post, I thought fillbetween might have been the answer, but adding
\tikzfillbetween[of=A and B,split] {pattern=north west lines};
produces
and I think I see why. How can I hatch/shade the intersection only?


