if (sceneBounds instanceof BoundingBox) {
final BoundingBox bbox = (BoundingBox) sceneBounds;
bbox.getExtent(_extents);
} else if (sceneBounds instanceof BoundingSphere) {
final BoundingSphere bsphere = (BoundingSphere) sceneBounds;
_extents.set(bsphere.getRadius(), bsphere.getRadius(), bsphere.getRadius());
}
_corners[0].addLocal(_extents.getX(), _extents.getY(), _extents.getZ());
_corners[1].addLocal(_extents.getX(), -_extents.getY(), _extents.getZ());
_corners[2].addLocal(_extents.getX(), _extents.getY(), -_extents.getZ());