How to plot a polygon with distinct colors for border and interior ?
I would like to have a green polygon with black border. I can achieve this by superposing two polygons:
sage: polygon([[0,0],[0,1],[2,1],[1,0]],color='limegreen',fill=True)+polygon([[0,0],[0,1],[2,1],[1,0]],color='black',fill=False)
Is it possible to do that with one polygon ?
This is now http://trac.sagemath.org/ticket/17209. Needs review.