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.
Unprotect[Graphics]
Graphics[l1__, l2__, gopts : OptionsPattern[Graphics]] :=
Graphics[{l1, l2}, gopts]
Protect[Graphics]
and
g1 = Graphics[Table[Circle[{0, 0}, r], {r, 1, 3}]];
g2 = Graphics[Table[Circle[{0, 0}, r], {r, 4, 5}]];
Join[g1, g2]
work.
Regards
Jens
> > Any command akin to the Join[list1, list2] command for "Joining"
> > (concatenating) two Graphics[{}] lists into a single Graphics[] list?
> G'day,
> Guessing that you are looking for GraphicsRow et.al.
> Regards,
> Yas
Exactly right -- and I should have known that. Thanks.