Hello sage-support,

Is there way to change the *order* that objects from a Graphics object
are plotted (i.e. the Z-order)?  Consider the following code in the
notebook for a 2D plot::

p1 = plot(sin, 0, 10, thickness=10, color='green')
p2 = polygon([(0,0), (10,0), (10,1), (0,1)], color='gray')
p3 = point((0,0), size=500)

When plotting p1+p2+p3 or p3+p2+p1 or whatever order, it seems that p3
is painted first, then p2 on top of that, then p3 on top of that.
So it seems that there is no way to plot a point inside a polygon,
because the polygon will always obscure the point.


Thanks,
Jeroen.

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to