1 | initial version |
If you look at the plot, C
, you can see that there are 3 plots:
sage: list(C)
[ContourPlot defined by a 100 x 100 data grid,
Line defined by 203 points,
Point set defined by 4 point(s)]
You can change the zorder of the point plot with
C[2].set_zorder(10)
Then you get the points above the other plots.