1 // Boost.Geometry (aka GGL, Generic Geometry Library)
2 // Unit Test
3
4 // Copyright (c) 2012-2019 Barend Gehrels, Amsterdam, the Netherlands.
5
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
10 #include "test_buffer.hpp"
11
12
13 static std::string const simplex = "POINT(5 5)";
14
15 template <bool Clockwise, typename P>
test_all()16 void test_all()
17 {
18 typedef bg::model::polygon<P, Clockwise> polygon;
19
20 bg::strategy::buffer::join_miter join_miter;
21 bg::strategy::buffer::end_flat end_flat;
22
23 double const pi = boost::geometry::math::pi<double>();
24
25 test_one<P, polygon>("simplex1", simplex, join_miter, end_flat, pi, 1.0);
26 test_one<P, polygon>("simplex2", simplex, join_miter, end_flat, pi * 4.0, 2.0, ut_settings(0.1));
27 test_one<P, polygon>("simplex3", simplex, join_miter, end_flat, pi * 9.0, 3.0, ut_settings(0.1));
28 }
29
30
test_main(int,char * [])31 int test_main(int, char* [])
32 {
33 BoostGeometryWriteTestConfiguration();
34
35 test_all<true, bg::model::point<default_test_type, 2, bg::cs::cartesian> >();
36
37 #if ! defined(BOOST_GEOMETRY_TEST_ONLY_ONE_ORDER)
38 test_all<false, bg::model::point<default_test_type, 2, bg::cs::cartesian> >();
39 #endif
40
41 #if defined(BOOST_GEOMETRY_TEST_FAILURES)
42 BoostGeometryWriteExpectedFailures(BG_NO_FAILURES);
43 #endif
44
45 return 0;
46 }
47