OrcaSlicer/tests/libslic3r/test_hollowing.cpp
Cory Cross c7f6520d1a libslic3r tests converted to Catch2 v3
Still has 3 failing tests, but builds and runs.
2025-11-03 21:21:34 -08:00

21 lines
523 B
C++

#include <iostream>
#include <fstream>
#include <catch2/catch_all.hpp>
#include "libslic3r/SLA/Hollowing.hpp"
TEST_CASE("Hollow two overlapping spheres") {
using namespace Slic3r;
TriangleMesh sphere1 = make_sphere(10., 2 * PI / 20.), sphere2 = sphere1;
sphere1.translate(-5.f, 0.f, 0.f);
sphere2.translate( 5.f, 0.f, 0.f);
sphere1.merge(sphere2);
sla::hollow_mesh(sphere1, sla::HollowingConfig{}, sla::HollowingFlags::hfRemoveInsideTriangles);
sphere1.WriteOBJFile("twospheres.obj");
}