Files
comaps/libs/geometry/diamond_box.cpp
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

11 lines
178 B
C++

#include "geometry/diamond_box.hpp"
namespace m2
{
DiamondBox::DiamondBox(std::vector<PointD> const & points)
{
for (auto const & p : points)
Add(p);
}
} // namespace m2