extract explicit mesh with topology information from implicit surfaces with boolean operations, and do surface/volume integrating on them.
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.

14 lines
340 B

#pragma once
7 months ago
#include <string>
#include <container/small_vector.hpp>
7 months ago
#include "implicit_functions.hpp"
struct load_functions_result_t {
7 months ago
small_vector_mp<implicit_function_t<double, 3>> functions{};
bool success{};
};
7 months ago
load_functions_result_t load_functions(const std::string& filename);