Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2021-03-02 21:35:46 +0300
committertamasmeszaros <meszaros.q@gmail.com>2021-03-08 19:38:10 +0300
commit33d6655f26d70f23007afb26345dc302da894f23 (patch)
tree04a23ec45a65c016d48abfb1149174b82535f140 /tests/libslic3r
parenta62262666a2d3ad304bcbe88a3971542e282ff1d (diff)
Clean up hollowing test
Needs rethinking anyway
Diffstat (limited to 'tests/libslic3r')
-rw-r--r--tests/libslic3r/test_hollowing.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/libslic3r/test_hollowing.cpp b/tests/libslic3r/test_hollowing.cpp
index 2218a27b7..1f5ca3845 100644
--- a/tests/libslic3r/test_hollowing.cpp
+++ b/tests/libslic3r/test_hollowing.cpp
@@ -2,29 +2,7 @@
#include <fstream>
#include <catch2/catch.hpp>
-#include <libslic3r/TriangleMesh.hpp>
#include "libslic3r/SLA/Hollowing.hpp"
-#include <openvdb/tools/Filter.h>
-#include "libslic3r/Format/OBJ.hpp"
-
-#include <libnest2d/tools/benchmark.h>
-
-#include <libslic3r/SimplifyMesh.hpp>
-
-#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;
-}
-
TEST_CASE("Hollow two overlapping spheres") {
using namespace Slic3r;