| Author |
Comment/Response |
Harry Pool
|
02/03/13 7:41pm
Here's some code from "Mathematica DeMystified" which you can easily modify:
Graphics[Table[{RGBColor[RandomReal[], RandomReal[], RandomReal[]],
Rectangle[{x = RandomReal[13],
y = RandomReal[8]}, {x + RandomReal[.3] + .1,
y + RandomReal[.4] + .1}]}, {i, 1, 750}]]
I think you'd want a Table of Circles rather than a Table of Rectangles, and the other changes would be obvious.
URL: , |
|