The same as the other project, but this time color-coded! For each asteroid, it chooses a number between 1 and 6. 1 (inclusive one) (Red): Creates a length one asteroid. it starts with a point, then a 50% chance of each adjacent point being part of the asteroid. 2 (non-inclusive one) (Orange): Basically the same as 1. 3 (inclusive two) (Yellow): First it does #1, then it has a 50% chance of including all the points adjacent to the new points as well. 4 (non-inclusive two) (Green): The same as 3, but it only creates points adjacent to the new points, and not the original one. This tends to create slightly more interesting shapes. 5 (inclusive three) (Blue): The same as 3, but then it goes one step further and has a 50% chance of having a point adjacent to every point on the asteroid so far, giving it a "size" of three. 6 (non-inclusive three) (Purple): The same as 4, but a step further. It has a 50% chance of generating a point next to each new point (the ones that were last generated, not the original one or the ones generated first). You may notice that the map tends to look mostly blue and purple - That's because the blue and purple asteroids are the biggest kind! There really is the same amount of all of them though.