Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/geometry/strategies/strategies.hpp @ 16:2665513ce2d3
Add boost headers
author | Chris Cannam |
---|---|
date | Tue, 05 Aug 2014 11:11:38 +0100 |
parents | |
children | c530137014c0 |
comparison
equal
deleted
inserted
replaced
15:663ca0da4350 | 16:2665513ce2d3 |
---|---|
1 // Boost.Geometry (aka GGL, Generic Geometry Library) | |
2 | |
3 // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. | |
4 // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. | |
5 // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. | |
6 | |
7 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library | |
8 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. | |
9 | |
10 // Use, modification and distribution is subject to the Boost Software License, | |
11 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at | |
12 // http://www.boost.org/LICENSE_1_0.txt) | |
13 | |
14 #ifndef BOOST_GEOMETRY_STRATEGIES_STRATEGIES_HPP | |
15 #define BOOST_GEOMETRY_STRATEGIES_STRATEGIES_HPP | |
16 | |
17 | |
18 #include <boost/geometry/strategies/tags.hpp> | |
19 | |
20 #include <boost/geometry/strategies/area.hpp> | |
21 #include <boost/geometry/strategies/centroid.hpp> | |
22 #include <boost/geometry/strategies/compare.hpp> | |
23 #include <boost/geometry/strategies/convex_hull.hpp> | |
24 #include <boost/geometry/strategies/distance.hpp> | |
25 #include <boost/geometry/strategies/intersection.hpp> | |
26 #include <boost/geometry/strategies/side.hpp> | |
27 #include <boost/geometry/strategies/transform.hpp> | |
28 #include <boost/geometry/strategies/within.hpp> | |
29 | |
30 #include <boost/geometry/strategies/cartesian/area_surveyor.hpp> | |
31 #include <boost/geometry/strategies/cartesian/box_in_box.hpp> | |
32 #include <boost/geometry/strategies/cartesian/centroid_bashein_detmer.hpp> | |
33 #include <boost/geometry/strategies/cartesian/centroid_weighted_length.hpp> | |
34 #include <boost/geometry/strategies/cartesian/distance_pythagoras.hpp> | |
35 #include <boost/geometry/strategies/cartesian/distance_projected_point.hpp> | |
36 #include <boost/geometry/strategies/cartesian/point_in_box.hpp> | |
37 #include <boost/geometry/strategies/cartesian/point_in_poly_franklin.hpp> | |
38 #include <boost/geometry/strategies/cartesian/point_in_poly_crossings_multiply.hpp> | |
39 #include <boost/geometry/strategies/cartesian/side_by_triangle.hpp> | |
40 | |
41 #include <boost/geometry/strategies/spherical/area_huiller.hpp> | |
42 #include <boost/geometry/strategies/spherical/distance_haversine.hpp> | |
43 #include <boost/geometry/strategies/spherical/distance_cross_track.hpp> | |
44 #include <boost/geometry/strategies/spherical/compare_circular.hpp> | |
45 #include <boost/geometry/strategies/spherical/ssf.hpp> | |
46 | |
47 #include <boost/geometry/strategies/agnostic/hull_graham_andrew.hpp> | |
48 #include <boost/geometry/strategies/agnostic/point_in_box_by_side.hpp> | |
49 #include <boost/geometry/strategies/agnostic/point_in_poly_winding.hpp> | |
50 #include <boost/geometry/strategies/agnostic/simplify_douglas_peucker.hpp> | |
51 | |
52 #include <boost/geometry/strategies/strategy_transform.hpp> | |
53 | |
54 #include <boost/geometry/strategies/transform/matrix_transformers.hpp> | |
55 #include <boost/geometry/strategies/transform/map_transformer.hpp> | |
56 #include <boost/geometry/strategies/transform/inverse_transformer.hpp> | |
57 | |
58 | |
59 #endif // BOOST_GEOMETRY_STRATEGIES_STRATEGIES_HPP |