bounding_box.h

Back to Bounding box

pastel/geometry/bounding/

// Description: Bounding boxes

#ifndef PASTELGEOMETRY_BOUNDING_BOX_H
#define PASTELGEOMETRY_BOUNDING_BOX_H

#include "pastel/geometry/shape/box.h"
#include "pastel/geometry/shape/alignedbox.h"

namespace Pastel
{

    template <typename Real, integer N>
    Box<Real, N> boundingBox(const AlignedBox<Real, N>& alignedBox);

}

#include "pastel/geometry/bounding/bounding_box.hpp"

#endif