#5812: option zorder has no effect for point() and polygon()
----------------------+-----------------------------------------------------
 Reporter:  whuss     |       Owner:  whuss     
     Type:  defect    |      Status:  new       
 Priority:  minor     |   Milestone:  sage-3.4.2
Component:  graphics  |    Keywords:            
----------------------+-----------------------------------------------------
 Currently setting the zorder for points and polygons has no effect
 although zorder is listed as an allowed option.

 {{{
 sage: g = polygon([(0,0), (0,1), (1,1), (1,0)], rgbcolor = 'red', zorder =
 0)
 sage: g += point((1,1), rgbcolor = 'green', pointsize = 1000, zorder = 1)
 sage: g.show()
 }}}

 {{{
 sage: g = polygon([(0,0), (0,1), (1,1), (1,0)], rgbcolor = 'red', zorder =
 1)
 sage: g += point((1,1), rgbcolor = 'green', pointsize = 1000, zorder = 0)
 sage: g.show()
 }}}

 Both of the above commands currently give the same output.

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/5812>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of 
Reinventing the Wheel

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to