| Original Message (ID '313962') By yehuda: |
| What the Forum Moderator means is that you need to provide a numerical value for the radius of each circle
THEN
you need to use only a single Graphics
for r=0.5 this would look like
points = {{0, 0}, {1, 1}, {2, 2}};
Graphics[Circle[#, 0.5] & /@ points]
yehuda |
|