#ifndef SLIC3R_TEST_DATA_HPP #define SLIC3R_TEST_DATA_HPP #include #include #include #include #include #include #include #include namespace Slic3r { namespace Test { /// Enumeration of test meshes enum class TestMesh { A, L, V, _40x10, cube_20x20x20, sphere_50mm, bridge, bridge_with_hole, cube_with_concave_hole, cube_with_hole, gt2_teeth, ipadstand, overhang, pyramid, sloping_hole, slopy_cube, small_dorito, step, two_hollow_squares, di_5mm_center_notch, di_10mm_notch, di_20mm_notch, di_25mm_notch }; // Neccessary for (tm); } }; /// Mesh enumeration to name mapping extern const std::unordered_map mesh_names; /// Port of Slic3r::Test::mesh /// Basic cubes/boxes should call TriangleMesh::make_cube() directly and rescale/translate it TriangleMesh mesh(TestMesh m); TriangleMesh mesh(TestMesh m, Vec3f translate, Vec3f scale = Vec3f(1.0, 1.0, 1.0)); TriangleMesh mesh(TestMesh m, Vec3f translate, double scale = 1.0); /// Templated function to see if two values are equivalent (+/- epsilon) template bool _equiv(const T& a, const T& b) { return abs(a - b) < Slic3r::Geometry::epsilon; } template bool _equiv(const T& a, const T& b, double epsilon) { return abs(a - b) < epsilon; } //Slic3r::Model model(const std::string& model_name, TestMesh m, Vec3f translate = Vec3f(0,0,0), Vec3f scale = Vec3f(1.0,1.0,1.0)); //Slic3r::Model model(const std::string& model_name, TestMesh m, Vec3f translate = Vec3f(0,0,0), double scale = 1.0); Slic3r::Model model(const std::string& model_name, TriangleMesh&& _mesh); void init_print(Print& print, std::initializer_list meshes, Slic3r::Model& model, DynamicPrintConfig* _config, bool comments = false); void init_print(Print& print, std::vector meshes, Slic3r::Model& model, DynamicPrintConfig* _config, bool comments = false); void gcode(std::string& gcode, Print& print); std::string read_to_string(const std::string& name); void clean_file(const std::string& name, const std::string& ext, bool glob = false); } } // namespace Slic3r::Test #endif // SLIC3R_TEST_DATA_HPP