return true;
}
public boolean test(N3Collisionable c) {
if (c instanceof N3CollisionableVolume) {
N3BoundingVolume bv = ((N3CollisionableVolume) c)
.getBoundingVolume();
return ((bVolume != null) && (bv != null) && bVolume.test(bv));
} else
return ((bVolume != null) && bVolume.test(c));
}