Concatenating of Graphics[] primitives?
- To: mathgroup at smc.vnet.net
- Subject: [mg101292] Concatenating of Graphics[] primitives?
- From: AES <siegman at stanford.edu>
- Date: Tue, 30 Jun 2009 06:33:58 -0400 (EDT)
- Organization: Stanford University
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.