Remove redundant line from PolygonPShapeOOp3

This commit is contained in:
Casey Reas
2013-02-12 16:17:03 -08:00
parent a4d7c1ee62
commit 5022f672d4

View File

@@ -42,8 +42,6 @@ void setup() {
// Make an ArrayList
polygons = new ArrayList<Polygon>();
polygons = new ArrayList<Polygon>();
for (int i = 0; i < 25; i++) {
int selection = int(random(shapes.length)); // Pick a random index
Polygon p = new Polygon(shapes[selection]); // Use corresponding PShape to create Polygon