Since PolarPlot doesn't support Filling, what is the best way to shade or fill the a region between two polar curves?
For instance, how would I generate a version of the following graph with the region inside the first curve but outside the second curve filled?
PolarPlot[{{1, -1} Sqrt[2 Cos[t]], 2 (1 - Cos[t])}, {t, -\[Pi], \[Pi]}]














r^2==2Cos[t]as my first curve and for purposes of the region to be shaded, we could actually toss out the negative square root part. – Isaac May 4 '12 at 1:21Reverse@, the part left in white is the part I'd wanted to shade, so with only a little more tweaking, I can get it to do what I'd wanted. – Isaac May 4 '12 at 6:07