Removed polygon simplification "hole in square" unit test,

simplification of CW contours is no more enabled by assert.
This commit is contained in:
Vojtech Bubnik 2023-01-04 13:38:59 +01:00
parent 1a5533d571
commit f5662458a2

View File

@ -196,19 +196,6 @@ SCENARIO("Simplify polygon", "[Polygon]")
}
}
}
GIVEN("hole in square") {
// CW oriented
auto hole_in_square = Polygon{ {140, 140}, {140, 160}, {160, 160}, {160, 140} };
WHEN("simplified") {
Polygons simplified = hole_in_square.simplify(2.);
THEN("hole simplification returns one polygon") {
REQUIRE(simplified.size() == 1);
}
THEN("hole simplification turns cw polygon into ccw polygon") {
REQUIRE(simplified.front().is_counter_clockwise());
}
}
}
}
#include "libslic3r/ExPolygon.hpp"