* Get libslic3r tests closer to passing I can't get geometry tests to do anything useful. I've added extra output, but it hasn't helped me figure out why they don't work yet. That's also probably the last broken 3mf test doesn't work. The config tests were mostly broken because of config name changes. The placeholder_parser tests have some things that may-or-may-not still apply to Orca. * Vendor a 3.x version of Catch2 Everything is surely broken at this point. * Allow building tests separately from Orca with build_linux.sh * Remove unnecessary log message screwing up ctest Same solution as Prusaslicer * Make 2 TriangleMesh methods const Since they can be. * Move method comment to the header where it belongsc * Add indirectly-included header directly Transform3d IIRC * libslic3r tests converted to Catch2 v3 Still has 3 failing tests, but builds and runs. * Disable 2D convex hull test and comment what I've learned Not sure the best way to solve this yet. * Add diff compare method for DynamicConfig Help the unit test report errors better. * Perl no longer used, remove comment line * Clang-format Config.?pp So difficult to work with ATM * Remove cpp17 unit tests Who gives a shit * Don't need explicit "example" test We have lots of tests to serve as examples. * Leave breadcrumb to enable sla_print tests * Fix serialization of DynamicConfig Add comments to test, because these code paths might not be even used anymore. * Update run_unit_tests to run all the tests By the time I'm done with the PR all tests will either excluded by default or passing, so just do all. * Update how-to-test now that build_linux.sh builds tests separately * Update cmake regenerate instructions Read this online; hopefully works. * Enable slic3rutils test with Catch2 v3 * Port libnest2d and fff_print to Catch2 v3 They build. Many failing. * Add slightly more info to Objects not fit on bed exception * Disable failing fff_print tests from running They're mostly failing for "objects don't fit on bed" for an infinite-sized bed. Given infinite bed is probably only used in tests, it probably was incidentally broken long ago. * Must checkout tests directory in GH Actions So we get the test data * Missed a failing fff_print test * Disable (most/all) broken libnest2d tests Trying all, not checking yet though * Fix Polygon convex/concave detection tests Document the implementation too. Reorganize the tests to be cleaner. * Update the test script to run tests in parallel * Get sla_print tests to build Probably not passing * Don't cause full project rebuild when updating test CMakeLists.txts * Revert "Clang-format Config.?pp" This reverts commit 771e4c0ad2fdbaa26a8fee77030650afacdc5083. --------- Co-authored-by: SoftFever <softfeverever@gmail.com>
142 lines
4.3 KiB
C++
142 lines
4.3 KiB
C++
#include <catch2/catch_all.hpp>
|
|
#include "test_utils.hpp"
|
|
|
|
#include <libslic3r/ExPolygon.hpp>
|
|
#include <libslic3r/BoundingBox.hpp>
|
|
|
|
#include "sla_test_utils.hpp"
|
|
|
|
namespace Slic3r { namespace sla {
|
|
|
|
TEST_CASE("Overhanging point should be supported", "[SupGen]") {
|
|
|
|
// Pyramid with 45 deg slope
|
|
TriangleMesh mesh = make_pyramid(10.f, 10.f);
|
|
mesh.rotate_y(float(PI));
|
|
mesh.WriteOBJFile("Pyramid.obj");
|
|
|
|
sla::SupportPoints pts = calc_support_pts(mesh);
|
|
|
|
// The overhang, which is the upside-down pyramid's edge
|
|
Vec3f overh{0., 0., -10.};
|
|
|
|
REQUIRE(!pts.empty());
|
|
|
|
float dist = (overh - pts.front().pos).norm();
|
|
|
|
for (const auto &pt : pts)
|
|
dist = std::min(dist, (overh - pt.pos).norm());
|
|
|
|
// Should require exactly one support point at the overhang
|
|
REQUIRE(pts.size() > 0);
|
|
REQUIRE(dist < 1.f);
|
|
}
|
|
|
|
double min_point_distance(const sla::SupportPoints &pts)
|
|
{
|
|
sla::PointIndex index;
|
|
|
|
for (size_t i = 0; i < pts.size(); ++i)
|
|
index.insert(pts[i].pos.cast<double>(), i);
|
|
|
|
auto d = std::numeric_limits<double>::max();
|
|
index.foreach([&d, &index](const sla::PointIndexEl &el) {
|
|
auto res = index.nearest(el.first, 2);
|
|
for (const sla::PointIndexEl &r : res)
|
|
if (r.second != el.second)
|
|
d = std::min(d, (el.first - r.first).norm());
|
|
});
|
|
|
|
return d;
|
|
}
|
|
|
|
TEST_CASE("Overhanging horizontal surface should be supported", "[SupGen]") {
|
|
double width = 10., depth = 10., height = 1.;
|
|
|
|
TriangleMesh mesh = make_cube(width, depth, height);
|
|
mesh.translate(0., 0., 5.); // lift up
|
|
mesh.WriteOBJFile("Cuboid.obj");
|
|
|
|
sla::SupportPointGenerator::Config cfg;
|
|
sla::SupportPoints pts = calc_support_pts(mesh, cfg);
|
|
|
|
double mm2 = width * depth;
|
|
|
|
REQUIRE(!pts.empty());
|
|
REQUIRE(pts.size() * cfg.support_force() > mm2 * cfg.tear_pressure());
|
|
REQUIRE(min_point_distance(pts) >= cfg.minimal_distance);
|
|
}
|
|
|
|
template<class M> auto&& center_around_bb(M &&mesh)
|
|
{
|
|
auto bb = mesh.bounding_box();
|
|
mesh.translate(-bb.center().template cast<float>());
|
|
|
|
return std::forward<M>(mesh);
|
|
}
|
|
|
|
TEST_CASE("Overhanging edge should be supported", "[SupGen]") {
|
|
float width = 10.f, depth = 10.f, height = 5.f;
|
|
|
|
TriangleMesh mesh = make_prism(width, depth, height);
|
|
mesh.rotate_y(float(PI)); // rotate on its back
|
|
mesh.translate(0., 0., height);
|
|
mesh.WriteOBJFile("Prism.obj");
|
|
|
|
sla::SupportPointGenerator::Config cfg;
|
|
sla::SupportPoints pts = calc_support_pts(mesh, cfg);
|
|
|
|
Linef3 overh{ {0.f, -depth / 2.f, 0.f}, {0.f, depth / 2.f, 0.f}};
|
|
|
|
// Get all the points closer that 1 mm to the overhanging edge:
|
|
sla::SupportPoints overh_pts; overh_pts.reserve(pts.size());
|
|
|
|
std::copy_if(pts.begin(), pts.end(), std::back_inserter(overh_pts),
|
|
[&overh](const sla::SupportPoint &pt){
|
|
return line_alg::distance_to(overh, Vec3d{pt.pos.cast<double>()}) < 1.;
|
|
});
|
|
|
|
REQUIRE(overh_pts.size() * cfg.support_force() > overh.length() * cfg.tear_pressure());
|
|
double ddiff = min_point_distance(pts) - cfg.minimal_distance;
|
|
REQUIRE(ddiff > - 0.1 * cfg.minimal_distance);
|
|
}
|
|
|
|
TEST_CASE("Hollowed cube should be supported from the inside", "[SupGen][Hollowed]") {
|
|
TriangleMesh mesh = make_cube(20., 20., 20.);
|
|
|
|
hollow_mesh(mesh, HollowingConfig{});
|
|
|
|
mesh.WriteOBJFile("cube_hollowed.obj");
|
|
|
|
auto bb = mesh.bounding_box();
|
|
auto h = float(bb.max.z() - bb.min.z());
|
|
Vec3f mv = bb.center().cast<float>() - Vec3f{0.f, 0.f, 0.5f * h};
|
|
mesh.translate(-mv);
|
|
|
|
sla::SupportPointGenerator::Config cfg;
|
|
sla::SupportPoints pts = calc_support_pts(mesh, cfg);
|
|
sla::remove_bottom_points(pts, mesh.bounding_box().min.z() + EPSILON);
|
|
|
|
REQUIRE(!pts.empty());
|
|
}
|
|
|
|
TEST_CASE("Two parallel plates should be supported", "[SupGen][Hollowed]")
|
|
{
|
|
double width = 20., depth = 20., height = 1.;
|
|
|
|
TriangleMesh mesh = center_around_bb(make_cube(width + 5., depth + 5., height));
|
|
TriangleMesh mesh_high = center_around_bb(make_cube(width, depth, height));
|
|
mesh_high.translate(0., 0., 10.); // lift up
|
|
mesh.merge(mesh_high);
|
|
|
|
mesh.WriteOBJFile("parallel_plates.obj");
|
|
|
|
sla::SupportPointGenerator::Config cfg;
|
|
sla::SupportPoints pts = calc_support_pts(mesh, cfg);
|
|
sla::remove_bottom_points(pts, mesh.bounding_box().min.z() + EPSILON);
|
|
|
|
REQUIRE(!pts.empty());
|
|
}
|
|
|
|
}} // namespace Slic3r::sla
|