File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
polygon_coverage_geometry/include/polygon_coverage_geometry Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,22 @@ PolygonWithHoles createSophisticatedPolygon() {
160160 return poly_with_holes;
161161}
162162
163+ template <class Polygon >
164+ Polygon createQiangsun89Polygon () {
165+ Polygon poly;
166+ poly.push_back (Point_2 (3572.0 , 115.0 ));
167+ poly.push_back (Point_2 (2724.0 , 460.0 ));
168+ poly.push_back (Point_2 (2660.0 , 95.0 ));
169+ poly.push_back (Point_2 (855.0 , 813.0 ));
170+ poly.push_back (Point_2 (1182.0 , 1497.0 ));
171+ poly.push_back (Point_2 (2925.0 , 832.0 ));
172+ poly.push_back (Point_2 (2905.0 , 480.0 ));
173+ poly.push_back (Point_2 (3608.0 , 208.0 ));
174+
175+ return poly;
176+ }
177+
178+
163179template <class Kernel >
164180bool checkVerticesIdentical (const typename Kernel::Point_2& a,
165181 const typename Kernel::Point_2& b) {
You can’t perform that action at this time.
0 commit comments