for (Bound b : boundContainer.getEntity().toSimpleBound()) {
if (newBound == null) {
newBound = simpleBoundIntersect(b);
} else {
newBound = newBound.union(simpleBoundIntersect(b));
}
}
if (newBound != null) {
super.process(new BoundContainer(newBound));