I have a parametric curve described by $(x(s,t), y(s,t))$ where I would like to consider $-1\leqslant s,t \leqslant 1$ subject to some additional constraint, say $f(s,t) = 0$. I know I could solve for $s$ in terms of $t$ and plot for the specified $t$ values, but $f(s,t)$ is itself an implicit function of $s$ and $t$ and solving for $s$ would involve splitting into many different cases. Is there anyway to do this directly in Mathematica?
I tried
ParametricPlot[{x,y},{s,-1,1},{t,-1,1}, RegionFunction->Function[{x,y,s,t}, f[s,t]==0] ]
But this returns an empty plot and I'm not confident my syntax is correct as I'm quite new to Mathematica.