buffer_point.cpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Unit Test
  3. // Copyright (c) 2012-2019 Barend Gehrels, Amsterdam, the Netherlands.
  4. // Use, modification and distribution is subject to the Boost Software License,
  5. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #include "test_buffer.hpp"
  8. static std::string const simplex = "POINT(5 5)";
  9. template <bool Clockwise, typename P>
  10. void test_all()
  11. {
  12. typedef bg::model::polygon<P, Clockwise> polygon;
  13. bg::strategy::buffer::join_miter join_miter;
  14. bg::strategy::buffer::end_flat end_flat;
  15. double const pi = boost::geometry::math::pi<double>();
  16. test_one<P, polygon>("simplex1", simplex, join_miter, end_flat, pi, 1.0);
  17. test_one<P, polygon>("simplex2", simplex, join_miter, end_flat, pi * 4.0, 2.0, ut_settings(0.1));
  18. test_one<P, polygon>("simplex3", simplex, join_miter, end_flat, pi * 9.0, 3.0, ut_settings(0.1));
  19. }
  20. int test_main(int, char* [])
  21. {
  22. BoostGeometryWriteTestConfiguration();
  23. test_all<true, bg::model::point<default_test_type, 2, bg::cs::cartesian> >();
  24. #if ! defined(BOOST_GEOMETRY_TEST_ONLY_ONE_ORDER)
  25. test_all<false, bg::model::point<default_test_type, 2, bg::cs::cartesian> >();
  26. #endif
  27. return 0;
  28. }