* @return a Vector which is the new bound centroid
*/
public Vector computeBoundCentroid() {
Vector result = new DenseVector(center.cardinality());
for (Vector v : boundPoints)
result.assign(v, new PlusFunction());
return result.divide(boundPoints.size());
}