Comment changes which could lead to crash of tests in build enviroment

This commit is contained in:
Filip Sykala - NTB T15p 2024-11-27 18:07:53 +01:00 committed by Lukas Matena
parent cd4d75fa7d
commit 7c2132bdc8
2 changed files with 2 additions and 4 deletions

View File

@ -309,9 +309,6 @@ bool liang_barsky_line_clipping(
return liang_barsky_line_clipping(x0clip, x1clip, bbox); return liang_barsky_line_clipping(x0clip, x1clip, bbox);
} }
Polygon convex_hull(Points points);
Polygon convex_hull(const Polygons &polygons);
bool directions_parallel(double angle1, double angle2, double max_diff = 0); bool directions_parallel(double angle1, double angle2, double max_diff = 0);
bool directions_perpendicular(double angle1, double angle2, double max_diff = 0); bool directions_perpendicular(double angle1, double angle2, double max_diff = 0);
template<class T> bool contains(const std::vector<T> &vector, const Point &point); template<class T> bool contains(const std::vector<T> &vector, const Point &point);

View File

@ -2285,6 +2285,7 @@ TEST_CASE("Voronoi cell doesn't contain a source point - SPE-2298", "[VoronoiCel
} }
// */ // */
/*
//#include <libslic3r/SLA/SupportIslands/LineUtils.hpp> //#include <libslic3r/SLA/SupportIslands/LineUtils.hpp>
TEST_CASE("bad vertex cause overflow of data type precisin when use VD result", "[VoronoiDiagram]") TEST_CASE("bad vertex cause overflow of data type precisin when use VD result", "[VoronoiDiagram]")
{ {
@ -2359,4 +2360,4 @@ TEST_CASE("bad vertex cause overflow of data type precisin when use VD result",
CHECK(distance_short_middle < 10); CHECK(distance_short_middle < 10);
} }
} }
} }*/