*/
public Vector computeBoundCentroid() {
Vector result = new DenseVector(center.cardinality());
for (Vector v : boundPoints)
result.assign(v, new PlusFunction());
return result.divide(boundPoints.size());
}
/**
* Compute the centroid by normalizing the pointTotal
*