]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/geometry/test/algorithms/buffer/buffer_point.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / geometry / test / algorithms / buffer / buffer_point.cpp
CommitLineData
7c673cae
FG
1// Boost.Geometry (aka GGL, Generic Geometry Library)
2// Unit Test
3
92f5a8d4 4// Copyright (c) 2012-2019 Barend Gehrels, Amsterdam, the Netherlands.
7c673cae
FG
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
92f5a8d4 10#include "test_buffer.hpp"
7c673cae
FG
11
12
13static std::string const simplex = "POINT(5 5)";
14
15template <bool Clockwise, typename P>
16void 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
b32b8144
FG
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));
7c673cae
FG
28}
29
30
31int test_main(int, char* [])
32{
92f5a8d4
TL
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
7c673cae
FG
40 return 0;
41}