mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 06:53:47 -07:00
Initial release
This commit is contained in:
23
tests/test_utils.hpp
Normal file
23
tests/test_utils.hpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef SLIC3R_TEST_UTILS
|
||||
#define SLIC3R_TEST_UTILS
|
||||
|
||||
#include <libslic3r/TriangleMesh.hpp>
|
||||
#include <libslic3r/Format/OBJ.hpp>
|
||||
|
||||
#if defined(WIN32) || defined(_WIN32)
|
||||
#define PATH_SEPARATOR R"(\)"
|
||||
#else
|
||||
#define PATH_SEPARATOR R"(/)"
|
||||
#endif
|
||||
|
||||
inline Slic3r::TriangleMesh load_model(const std::string &obj_filename)
|
||||
{
|
||||
Slic3r::TriangleMesh mesh;
|
||||
auto fpath = TEST_DATA_DIR PATH_SEPARATOR + obj_filename;
|
||||
Slic3r::ObjInfo obj_info;
|
||||
std::string message;
|
||||
Slic3r::load_obj(fpath.c_str(), &mesh, obj_info, message);
|
||||
return mesh;
|
||||
}
|
||||
|
||||
#endif // SLIC3R_TEST_UTILS
|
||||
Reference in New Issue
Block a user