Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2020-06-04 14:49:49 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2020-06-04 14:50:09 +0300
commit6f4d24ab957f66ab9c74e329385b12bbfccf9017 (patch)
treececa2abf2f03894d451b8e7398ad54b233921437 /tests
parent1e5d1cb616742ef64070ae93d8acf3c722612993 (diff)
WIP: Generating offset curves with properly rounded corners from
a Voronoi diagram. Curve extraction is based on the OpenVoronoi implementation.
Diffstat (limited to 'tests')
-rw-r--r--tests/libslic3r/test_voronoi.cpp41
1 files changed, 34 insertions, 7 deletions
diff --git a/tests/libslic3r/test_voronoi.cpp b/tests/libslic3r/test_voronoi.cpp
index 4615a93ae..ef05119ad 100644
--- a/tests/libslic3r/test_voronoi.cpp
+++ b/tests/libslic3r/test_voronoi.cpp
@@ -7,6 +7,7 @@
#include <libslic3r/Polyline.hpp>
#include <libslic3r/EdgeGrid.hpp>
#include <libslic3r/Geometry.hpp>
+#include <libslic3r/VoronoiOffset.hpp>
#define BOOST_VORONOI_USE_GMP 1
#include "boost/polygon/voronoi.hpp"
@@ -16,12 +17,7 @@ using boost::polygon::voronoi_diagram;
using namespace Slic3r;
-struct VD : public boost::polygon::voronoi_diagram<double> {
- typedef double coord_type;
- typedef boost::polygon::point_data<coordinate_type> point_type;
- typedef boost::polygon::segment_data<coordinate_type> segment_type;
- typedef boost::polygon::rectangle_data<coordinate_type> rect_type;
-};
+using VD = Geometry::VoronoiDiagram;
// #define VORONOI_DEBUG_OUT
@@ -322,6 +318,7 @@ static inline void dump_voronoi_to_svg(
/* const */ VD &vd,
const Points &points,
const Lines &lines,
+ const Polygons &offset_curves = Polygons(),
const double scale = 0.7) // 0.2?
{
const std::string inputSegmentPointColor = "lightseagreen";
@@ -336,6 +333,9 @@ static inline void dump_voronoi_to_svg(
const std::string voronoiArcColor = "red";
const coord_t voronoiLineWidth = coord_t(0.02 * scale / SCALING_FACTOR);
+ const std::string offsetCurveColor = "magenta";
+ const coord_t offsetCurveLineWidth = coord_t(0.09 * scale / SCALING_FACTOR);
+
const bool internalEdgesOnly = false;
const bool primaryEdgesOnly = false;
@@ -408,6 +408,7 @@ static inline void dump_voronoi_to_svg(
}
#endif
+ svg.draw_outline(offset_curves, offsetCurveColor, offsetCurveLineWidth);
svg.Close();
}
#endif
@@ -1585,6 +1586,32 @@ TEST_CASE("Voronoi NaN coordinates 12139", "[Voronoi][!hide][!mayfail]")
#ifdef VORONOI_DEBUG_OUT
dump_voronoi_to_svg(debug_out_path("voronoi-NaNs.svg").c_str(),
- vd, Points(), lines, 0.015);
+ vd, Points(), lines, Polygons(), 0.015);
+#endif
+}
+
+TEST_CASE("Voronoi offset", "[VoronoiOffset]")
+{
+ Polygons poly_with_hole = { Polygon {
+ { 0, 10000000},
+ { 700000, 0},
+ { 700000, 9000000},
+ { 9100000, 9000000},
+ { 9100000, 0},
+ {10000000, 10000000}
+ }
+ };
+
+ VD vd;
+ Lines lines = to_lines(poly_with_hole);
+ construct_voronoi(lines.begin(), lines.end(), &vd);
+
+ Polygons offsetted_polygons = voronoi_offset(vd, lines, scale_(0.2), scale_(0.005));
+
+#ifdef VORONOI_DEBUG_OUT
+ dump_voronoi_to_svg(debug_out_path("voronoi-offset.svg").c_str(),
+ vd, Points(), lines, offsetted_polygons);
#endif
+
+ REQUIRE(offsetted_polygons.size() == 2);
}