I'm looking to visualize some algebraic curves in Julia
I have the polynomials:
f1=(x^4+y^4-1)(x^2+y^2-2)+x^5y
f2 = x^2+2xy^2-2y^2-1/2
and I would like to plot V(f1) and V(f2) so I can see their common intersections. I have tried using contour plot in Gadfly.jl but it seems to only allow me to plot one curve at a time. Is there a way to plot both curves in Gadfly.jl or doing it in another Julia package?

