| Author |
Comment/Response |
Forum Moderator
email me
 |
09/30/02 9:13pm
Here is one way:
Make a table of Circle primitives:
In[32]:= circList=Table[Circle[{i, j},1],{i,1,3},{j,1,3}]
Use Show to display them.
In[35]:= Show[Graphics[circList],AspectRatio->1]
Show, Graphics, Circle (and other Graphics
Primitives) are described in the Help Browser.
URL: , |
|