Triangles
Here's an idea that I haven't finished.
Start with a trianglular polygon.
Find three new points by taking the midpoints of each line, plus a random amount.
Use these six points to make four smaller triangular polygons.
Repeat on smaller and smaller scales, and VOILA!
The details get a bit tricky.
Here's some playing around in that direction.
If we have a list of such triangles, then we can use the Map function to apply Polygon to each one and plot 'em all.
Yeah, it's a mess - the randomness is too big, and always positive. Not good.
So all we'd need do is change the size of the random numbers on each pass, and do this repeatedly...
This has several flaws.
* The random number generator isn't scaling all that well.
* We're pulling the edges away from each other - one of the articles I reference at the top of the page discusses this.
Still, this is the kind of approach that will recursively do smaller triangles.
Created by Mathematica (November 15, 2004)