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