Just like the title says, I need to break a rectangle into randomly shaped polygons.
Example, with 7 polygons:
+--------+--------+
|\ | 2 |
| \ 1 |''--..__|
| ------| 5 |
| 3 / \________|
| / /\ 6 |
|__/ 4 / \______|
| / 7 |
+-----+-----------+
I don't know if there's an algorithm already out there for this, but I can't seem to get my head around this.
I don't particularly care what language you answer in, but I'll be implementing in Java/Swing.

