2019-10-29 15:27:53 +00:00
|
|
|
#include <iostream>
|
2019-10-31 13:36:33 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <catch2/catch.hpp>
|
2019-10-29 15:27:53 +00:00
|
|
|
|
2019-11-12 15:53:47 +00:00
|
|
|
#include <libslic3r/TriangleMesh.hpp>
|
2019-11-08 08:21:30 +00:00
|
|
|
#include "libslic3r/SLA/Hollowing.hpp"
|
2019-11-05 13:48:00 +00:00
|
|
|
#include <openvdb/tools/Filter.h>
|
2019-10-29 15:27:53 +00:00
|
|
|
#include "libslic3r/Format/OBJ.hpp"
|
|
|
|
|
2019-11-05 13:48:00 +00:00
|
|
|
#include <libnest2d/tools/benchmark.h>
|
|
|
|
|
2020-01-23 09:57:51 +00:00
|
|
|
#include <libslic3r/SimplifyMesh.hpp>
|
|
|
|
|
2019-10-29 15:27:53 +00:00
|
|
|
#if defined(WIN32) || defined(_WIN32)
|
|
|
|
#define PATH_SEPARATOR R"(\)"
|
|
|
|
#else
|
|
|
|
#define PATH_SEPARATOR R"(/)"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static Slic3r::TriangleMesh load_model(const std::string &obj_filename)
|
|
|
|
{
|
|
|
|
Slic3r::TriangleMesh mesh;
|
|
|
|
auto fpath = TEST_DATA_DIR PATH_SEPARATOR + obj_filename;
|
|
|
|
Slic3r::load_obj(fpath.c_str(), &mesh);
|
|
|
|
return mesh;
|
|
|
|
}
|
|
|
|
|
2020-01-23 09:57:51 +00:00
|
|
|
|
2019-11-05 13:48:00 +00:00
|
|
|
TEST_CASE("Negative 3D offset should produce smaller object.", "[Hollowing]")
|
2019-11-04 13:33:29 +00:00
|
|
|
{
|
2019-11-05 08:43:42 +00:00
|
|
|
Slic3r::TriangleMesh in_mesh = load_model("20mm_cube.obj");
|
2019-11-05 13:48:00 +00:00
|
|
|
Benchmark bench;
|
|
|
|
bench.start();
|
2019-10-30 11:38:23 +00:00
|
|
|
|
2019-11-12 15:53:47 +00:00
|
|
|
std::unique_ptr<Slic3r::TriangleMesh> out_mesh_ptr =
|
|
|
|
Slic3r::sla::generate_interior(in_mesh);
|
2019-11-05 08:43:42 +00:00
|
|
|
|
2019-11-05 13:48:00 +00:00
|
|
|
bench.stop();
|
2019-11-05 08:43:42 +00:00
|
|
|
|
2019-11-05 13:48:00 +00:00
|
|
|
std::cout << "Elapsed processing time: " << bench.getElapsedSec() << std::endl;
|
2019-11-05 08:43:42 +00:00
|
|
|
|
2019-11-12 15:53:47 +00:00
|
|
|
if (out_mesh_ptr) in_mesh.merge(*out_mesh_ptr);
|
2019-11-05 16:00:11 +00:00
|
|
|
in_mesh.require_shared_vertices();
|
|
|
|
in_mesh.WriteOBJFile("merged_out.obj");
|
2019-11-05 13:48:00 +00:00
|
|
|
}
|
2020-01-23 09:57:51 +00:00
|
|
|
|