From f02fd6a17ffb1838188b398a97a50190d7493e1e Mon Sep 17 00:00:00 2001 From: Filip Sykala Date: Wed, 23 Feb 2022 11:30:37 +0100 Subject: [PATCH] fix: comment visualization in test ..\tests\libslic3r\test_ShapeDiameterFunction.cpp(62): FAILED: CHECK( false ) --- tests/libslic3r/test_ShapeDiameterFunction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/libslic3r/test_ShapeDiameterFunction.cpp b/tests/libslic3r/test_ShapeDiameterFunction.cpp index a1586d9328..4c2da40e5d 100644 --- a/tests/libslic3r/test_ShapeDiameterFunction.cpp +++ b/tests/libslic3r/test_ShapeDiameterFunction.cpp @@ -216,7 +216,7 @@ TEST_CASE("Divide triangle - Big triangle inside others", "[SDF]") }; float threshold = 4.f; indexed_triangle_set its_out = ShapeDiameterFunction::subdivide(its, threshold); - storeXY_to_svg(its, its_out, "Big_triangle_inside.svg"); + //storeXY_to_svg(its, its_out, "Big_triangle_inside.svg"); CHECK(!exist_twin_vertices(its_out.vertices, 1e-3f)); CHECK(!exist_greater_edge(its_out, threshold)); CHECK(its_out.indices.size() <= 114);