mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-01 06:12:01 +08:00

One was due to enums not having a std::hash below c++17 The other was due to overloaded methods prefering ones in the same namespace (I think)
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
#ifndef SLIC3R_TEST_DATA_HPP
|
|
#include "Point.hpp"
|
|
#include "TriangleMesh.hpp"
|
|
#include "Geometry.hpp"
|
|
#include "Model.hpp"
|
|
#include "Print.hpp"
|
|
#include "Config.hpp"
|
|
|
|
#include <unordered_map>
|
|
|
|
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
|
|
};
|
|
|
|
// Neccessary for <c++17
|
|
struct TestMeshHash {
|
|
std::size_t operator()(TestMesh tm) const {
|
|
return static_cast<std::size_t>(tm);
|
|
}
|
|
};
|
|
|
|
/// Mesh enumeration to name mapping
|
|
extern const std::unordered_map<TestMesh, const char*, TestMeshHash> 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, Pointf3 translate, Pointf3 scale = Pointf3(1.0, 1.0, 1.0));
|
|
TriangleMesh mesh(TestMesh m, Pointf3 translate, double scale = 1.0);
|
|
|
|
/// Templated function to see if two values are equivalent (+/- epsilon)
|
|
template <typename T, typename U>
|
|
bool _equiv(const T& a, const U& b) { return abs(a - b) < Slic3r::Geometry::epsilon; }
|
|
|
|
template <typename T, typename U>
|
|
bool _equiv(const T& a, const U& b, double epsilon) { return abs(a - b) < epsilon; }
|
|
|
|
//Slic3r::Model model(const std::string& model_name, TestMesh m, Pointf3 translate = Pointf3(0,0,0), Pointf3 scale = Pointf3(1.0,1.0,1.0));
|
|
//Slic3r::Model model(const std::string& model_name, TestMesh m, Pointf3 translate = Pointf3(0,0,0), double scale = 1.0);
|
|
|
|
Slic3r::Model model(const std::string& model_name, TriangleMesh&& _mesh);
|
|
|
|
shared_Print init_print(std::initializer_list<TestMesh> meshes, Slic3r::Model& model, config_ptr _config = Slic3r::Config::new_from_defaults(), bool comments = false);
|
|
|
|
void gcode(std::stringstream& gcode, shared_Print print);
|
|
|
|
} } // namespace Slic3r::Test
|
|
|
|
|
|
#endif // SLIC3R_TEST_DATA_HPP
|