2#include <Threedim/TinyObj.hpp>
9static constexpr int vox_palette_entries = 256;
10static constexpr int vox_palette_floats_per_entry = 8;
11static constexpr int vox_palette_total_floats
12 = vox_palette_entries * vox_palette_floats_per_entry;
13static constexpr int64_t vox_palette_byte_size
14 = vox_palette_total_floats *
sizeof(float);
19std::vector<mesh> VoxPointCloudFromFile(std::string_view filename, float_vec& data, float_vec& palette);
25std::vector<mesh> VoxMeshFromFile(std::string_view filename, float_vec& data, float_vec& palette,
int mode);