You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
405 B

8 months ago
#include "globals.hpp"
#include "background_mesh_manager.hpp"
void BackgroundMeshManager::generate(const Eigen::Ref<const raw_point_t>& aabb_min,
const Eigen::Ref<const raw_point_t>& aabb_max) noexcept
{
assert(g_settings.resolution > 0);
this->m_background_mesh = std::move(generate_tetrahedron_background_mesh(g_settings.resolution, aabb_min, aabb_max));
}