FaceGeometry* FaceGeometry::clone() const {
     FaceGeometry* toReturn = new FaceGeometry(_vertices, _textureCoordinates, _colors, _normals);
     toReturn->setPickingInformation(_pickingInformation);
     return toReturn;
 }