23#ifndef VCL_ALGORITHMS_MESH_STAT_BOUNDING_BOX_H
24#define VCL_ALGORITHMS_MESH_STAT_BOUNDING_BOX_H
26#include <vclib/mesh.h>
27#include <vclib/space/core.h>
44template<MeshConcept MeshType>
47 using VertexType = MeshType::VertexType;
50 for (
const VertexType& v :
m.vertices()) {
A class representing a box in N-dimensional space.
Definition box.h:46
void add(const PointT &p)
Adds the given point to the current box, expanding this box in order to contain also the values of th...
Definition box.h:385
auto boundingBox(const PointType &p)
Compute the bounding box of a single point.
Definition bounding_box.h:59