#ifndef PASTELGEOMETRY_BOUNDING_SPHERE_BOX_HPP
#define PASTELGEOMETRY_BOUNDING_SPHERE_BOX_HPP
#include "pastel/geometry/bounding/bounding_sphere_box.h"
#include "pastel/sys/vector/vector_tools.h"
namespace Pastel
{
template <typename Real, integer N>
Sphere<Real, N> boundingSphere(
const Box<Real, N>& box)
{
return Sphere<Real, N>(
box.position(),
std::sqrt(dot(box.width())));
}
}
#endif