On Sat, May 10, 2008 at 9:14 AM, louie <[EMAIL PROTECTED]> wrote: > > I made a custom polar grid based on circles and lines and then plotted > some points but the points appeared behind the grid. I tried the > documentation on these primitives and also show() but nothing on the > subject.
I was sure that it depended on the order of the plots when adding them... but it doesn't work for me here, since p1+p0 gives the same result as p0+p1: sage: p0 = polar_plot(lambda t: 1, 0, 2*pi, thickness=5) sage: p1 = sum([point( [cos(k), sin(k)], pointsize=70, rgbcolor='red') for k in srange(0,2*pi,pi/4)]) sage: (p1+p0).show(aspect_ratio=1) sage: (p0+p1).show(aspect_ratio=1) Some of the more knowledgeable users might want to comment on this. Best, -- Hector > If I missed something, please, point me to the docs. > > Thanks in advance. > > - louie - --~--~---------~--~----~------------~-------~--~----~ 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-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
