overlaps_areal.cpp 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands.
  3. // This file was modified by Oracle on 2014, 2015.
  4. // Modifications copyright (c) 2014-2015 Oracle and/or its affiliates.
  5. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  6. // Use, modification and distribution is subject to the Boost Software License,
  7. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. #include "test_overlaps.hpp"
  10. template <typename P>
  11. void test_aa()
  12. {
  13. typedef bg::model::polygon<P> poly;
  14. typedef bg::model::multi_polygon<poly> mpoly;
  15. test_geometry<poly, poly>("POLYGON((0 0,0 5,5 5,5 0,0 0))", "POLYGON((3 3,3 9,9 9,9 3,3 3))", true);
  16. test_geometry<poly, poly>("POLYGON((0 0,0 5,5 5,5 0,0 0))", "POLYGON((5 5,5 9,9 9,9 5,5 5))", false);
  17. test_geometry<poly, poly>("POLYGON((0 0,0 5,5 5,5 0,0 0))", "POLYGON((3 3,3 5,5 5,5 3,3 3))", false);
  18. test_geometry<poly, mpoly>("POLYGON((0 0,0 5,5 5,5 0,0 0))",
  19. "MULTIPOLYGON(((3 3,3 5,5 5,5 3,3 3)),((5 5,5 6,6 6,6 5,5 5)))",
  20. true);
  21. test_geometry<mpoly, mpoly>("MULTIPOLYGON(((3 3,3 5,5 5,5 3,3 3)),((0 0,0 3,3 3,3 0,0,0)))",
  22. "MULTIPOLYGON(((3 3,3 5,5 5,5 3,3 3)),((5 5,5 6,6 6,6 5,5 5)))",
  23. true);
  24. // related to https://svn.boost.org/trac/boost/ticket/10912
  25. test_geometry<poly, poly>("POLYGON((0 0,0 10,10 10,10 0,0 0),(2 2,4 2,4 4,2 4,2 2))",
  26. "POLYGON((3 3,3 9,9 9,9 3,3 3))",
  27. true);
  28. test_geometry<poly, poly>("POLYGON((0 0,0 10,10 10,10 0,0 0),(2 2,4 2,4 4,2 4,2 2),(6 6,8 6,8 8,6 8,6 6))",
  29. "POLYGON((0 0,0 5,5 5,5 0,0 0))",
  30. true);
  31. test_geometry<mpoly, poly>("MULTIPOLYGON(((0 0,0 10,10 10,10 0,0 0)),((0 0,0 -10,-10 -10,-10 0,0 0)))",
  32. "POLYGON((0 0,0 5,5 5,5 0,0 0))",
  33. false);
  34. test_geometry<mpoly, poly>("MULTIPOLYGON(((0 0,0 10,10 10,10 0,0 0)),((0 0,0 -10,-10 -10,-10 0,0 0)))",
  35. "POLYGON((0 0,0 10,10 10,10 0,0 0))",
  36. false);
  37. // mysql 21872795
  38. test_geometry<poly, poly>("POLYGON((2 2,2 8,8 8,8 2,2 2))",
  39. "POLYGON((0 0,0 10,10 10,10 0,0 0),(8 8,4 6,4 4,8 8))",
  40. true);
  41. test_geometry<poly, poly>("POLYGON((2 2,2 8,8 8,8 2,2 2))",
  42. "POLYGON((0 0,0 10,10 10,10 0,0 0),(2 2,4 4,4 6,2 2))",
  43. true);
  44. }
  45. template <typename P>
  46. void test_2d()
  47. {
  48. test_aa<P>();
  49. }
  50. int test_main( int , char* [] )
  51. {
  52. test_2d<bg::model::d2::point_xy<int> >();
  53. test_2d<bg::model::d2::point_xy<double> >();
  54. #if defined(HAVE_TTMATH)
  55. test_2d<bg::model::d2::point_xy<ttmath_big> >();
  56. #endif
  57. return 0;
  58. }