From 33d6655f26d70f23007afb26345dc302da894f23 Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Tue, 2 Mar 2021 19:35:46 +0100 Subject: [PATCH] Clean up hollowing test Needs rethinking anyway --- tests/libslic3r/test_hollowing.cpp | 22 ---------------------- 1 file changed, 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 #include -#include #include "libslic3r/SLA/Hollowing.hpp" -#include -#include "libslic3r/Format/OBJ.hpp" - -#include - -#include - -#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;