Re: Concatenating of Graphics[] primitives?
- To: mathgroup at smc.vnet.net
- Subject: [mg101337] Re: [mg101292] Concatenating of Graphics[] primitives?
- From: Yasvir Tesiram <tesiramy at omrf.org>
- Date: Wed, 1 Jul 2009 06:37:38 -0400 (EDT)
- References: <200906301033.GAA10615@smc.vnet.net>
G'day,
Guessing that you are looking for GraphicsRow et.al.
Regards,
Yas
> Any command akin to the Join[list1, list2] command for "Joining"
> (concatenating) two Graphics[{}] lists into a single Graphics[] list?
>
> Executing
>
> g1 = Graphics[Table[Circle[{0,0},r],{r,1,3}]];
> g2 = Graphics[Table[Circle[{0,0},r],{r,4,5}]];
> g={g1, g2};
>
> g (* A new cell *)
>
> Show[g] (* Another new cell *)
>
> is entertaining -- if not exactly educational.
>
>