public List<PShape> createShapes() {
List<PShape> shapes = new ArrayList<PShape>();
for (int i = 0; i < 100; i++) {
PShape shape = createShape();
shape.beginShape(QUAD);
shape.noStroke();
shape.fill(255, 0, 0, 100);
PVector pos = new PVector();
shape.vertex(pos.x, pos.y);
shape.vertex(pos.x + 4, pos.y);