double d13 = par4 + this.renderMaxY;
double d14 = par6 + this.renderMinZ;
double d15 = par6 + this.renderMaxZ;
List<Vertex> result = new ArrayList<Vertex>(4);
Vertex v;
if(enableAO) {
result.add(new Vertex(d11, d13, d15, d7, d9, brightnessTopLeft, colorRedTopLeft, this.colorGreenTopLeft, this.colorBlueTopLeft, 1));
result.add(new Vertex(d11, d13, d14, d3, d5, brightnessBottomLeft, colorRedBottomLeft, this.colorGreenBottomLeft, this.colorBlueBottomLeft, 1));
result.add(new Vertex(d11, d12, d14, d8, d10, brightnessBottomRight, colorRedBottomRight, this.colorGreenBottomRight, this.colorBlueBottomRight, 1));
result.add(new Vertex(d11, d12, d15, d4, d6, brightnessTopRight, colorRedTopRight, this.colorGreenTopRight, this.colorBlueTopRight, 1));
} else {
result.add(new Vertex(d11, d13, d15, d7, d9));
result.add(new Vertex(d11, d13, d14, d3, d5));
result.add(new Vertex(d11, d12, d14, d8, d10));
result.add(new Vertex(d11, d12, d15, d4, d6));
}
return result;
}