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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'geometry')
-rw-r--r--geometry/geometry_tests/polygon_test.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/geometry/geometry_tests/polygon_test.cpp b/geometry/geometry_tests/polygon_test.cpp
index 6f62603c97..3ebb69a686 100644
--- a/geometry/geometry_tests/polygon_test.cpp
+++ b/geometry/geometry_tests/polygon_test.cpp
@@ -202,3 +202,13 @@ UNIT_TEST(IsPolygonCCW_DataSet3)
}
*/
+/*
+UNIT_TEST(IsPolygonCCW_DataSet4)
+{
+ P arr[] = { P(37.368060441099174795, 67.293103344080122952), P(37.368017525754879671, 67.292797572252140981),
+ P(37.367990703664702323, 67.292969568905391498), P(37.368060441099174795, 67.293103344080122952),
+ P(37.368017525754879671, 67.292797572252140981), P(37.368097992025411713, 67.292830094036474975),
+ P(37.368216009222180674, 67.292969568905391498) };
+ TestPolygonOrReverseCCW(arr, arr + ARRAY_SIZE(arr));
+}
+*/