Without more specific information, it's hard to say, but it's almost
certain that you could use a loop structure to do this.

Also, I often do

G = Graphics() # makes empty graphic
G += polygon(...)
G += polygon(...)
G += plot(...)
G += plot_slope_field(...)
show(G)

or something like that, which at least makes it easier to be
modular.

This may not answer your question, though, so please feel free to
follow up!

- kcrisman

On Sep 6, 10:30 pm, Innigo <[email protected]> wrote:
> The doco 
> at:http://combinat.sagemath.org/doc/reference/sage/plot/polygon.html?hig...
> has lots of example of various polgons but what if I want to do some
> tiling and build up a scene of lots of polygons? Do I have to use
> show(p1+p2+p3+...)? What if there are lots? Will this not become
> cumbershome? Is there another function somewhere for building up a
> composite scene and then rendering that?

-- 
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
URL: http://www.sagemath.org

Reply via email to