1// Boost.Geometry (aka GGL, Generic Geometry Library)
2
3// Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands.
4// Copyright (c) 2008-2015 Bruno Lalande, Paris, France.
5// Copyright (c) 2009-2015 Mateusz Loskot, London, UK.
6
7// This file was modified by Oracle on 2014, 2015.
8// Modifications copyright (c) 2014-2015 Oracle and/or its affiliates.
9
10// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
11// Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
12
13// Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
14// (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
15
16// Use, modification and distribution is subject to the Boost Software License,
17// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
18// http://www.boost.org/LICENSE_1_0.txt)
19
20#ifndef BOOST_GEOMETRY_GEOMETRY_HPP
21#define BOOST_GEOMETRY_GEOMETRY_HPP
22
23// Shortcut to include all header files
24
25#include <boost/geometry/core/closure.hpp>
26#include <boost/geometry/core/coordinate_dimension.hpp>
27#include <boost/geometry/core/coordinate_system.hpp>
28#include <boost/geometry/core/coordinate_type.hpp>
29#include <boost/geometry/core/cs.hpp>
30#include <boost/geometry/core/interior_type.hpp>
31#include <boost/geometry/core/point_order.hpp>
32#include <boost/geometry/core/point_type.hpp>
33#include <boost/geometry/core/ring_type.hpp>
34#include <boost/geometry/core/srs.hpp>
35#include <boost/geometry/core/tag.hpp>
36#include <boost/geometry/core/tag_cast.hpp>
37#include <boost/geometry/core/tags.hpp>
38
39// Core algorithms
40#include <boost/geometry/core/access.hpp>
41#include <boost/geometry/core/exterior_ring.hpp>
42#include <boost/geometry/core/interior_rings.hpp>
43#include <boost/geometry/core/radian_access.hpp>
44#include <boost/geometry/core/radius.hpp>
45#include <boost/geometry/core/topological_dimension.hpp>
46
47#include <boost/geometry/arithmetic/arithmetic.hpp>
48#include <boost/geometry/arithmetic/dot_product.hpp>
49
50#include <boost/geometry/strategies/strategies.hpp>
51
52#include <boost/geometry/algorithms/append.hpp>
53#include <boost/geometry/algorithms/area.hpp>
54#include <boost/geometry/algorithms/assign.hpp>
55#include <boost/geometry/algorithms/buffer.hpp>
56#include <boost/geometry/algorithms/centroid.hpp>
57#include <boost/geometry/algorithms/clear.hpp>
58#include <boost/geometry/algorithms/comparable_distance.hpp>
59#include <boost/geometry/algorithms/convert.hpp>
60#include <boost/geometry/algorithms/convex_hull.hpp>
61#include <boost/geometry/algorithms/correct.hpp>
62#include <boost/geometry/algorithms/covered_by.hpp>
63#include <boost/geometry/algorithms/crosses.hpp>
64#include <boost/geometry/algorithms/difference.hpp>
65#include <boost/geometry/algorithms/disjoint.hpp>
66#include <boost/geometry/algorithms/distance.hpp>
67#include <boost/geometry/algorithms/envelope.hpp>
68#include <boost/geometry/algorithms/equals.hpp>
69#include <boost/geometry/algorithms/expand.hpp>
70#include <boost/geometry/algorithms/for_each.hpp>
71#include <boost/geometry/algorithms/intersection.hpp>
72#include <boost/geometry/algorithms/intersects.hpp>
73#include <boost/geometry/algorithms/is_empty.hpp>
74#include <boost/geometry/algorithms/is_simple.hpp>
75#include <boost/geometry/algorithms/is_valid.hpp>
76#include <boost/geometry/algorithms/length.hpp>
77#include <boost/geometry/algorithms/make.hpp>
78#include <boost/geometry/algorithms/num_geometries.hpp>
79#include <boost/geometry/algorithms/num_interior_rings.hpp>
80#include <boost/geometry/algorithms/num_points.hpp>
81#include <boost/geometry/algorithms/num_segments.hpp>
82#include <boost/geometry/algorithms/overlaps.hpp>
83#include <boost/geometry/algorithms/perimeter.hpp>
84#include <boost/geometry/algorithms/relate.hpp>
85#include <boost/geometry/algorithms/relation.hpp>
86#include <boost/geometry/algorithms/remove_spikes.hpp>
87#include <boost/geometry/algorithms/reverse.hpp>
88#include <boost/geometry/algorithms/simplify.hpp>
89#include <boost/geometry/algorithms/sym_difference.hpp>
90#include <boost/geometry/algorithms/touches.hpp>
91#include <boost/geometry/algorithms/transform.hpp>
92#include <boost/geometry/algorithms/union.hpp>
93#include <boost/geometry/algorithms/unique.hpp>
94#include <boost/geometry/algorithms/within.hpp>
95
96// check includes all concepts
97#include <boost/geometry/geometries/concepts/check.hpp>
98
99#include <boost/geometry/util/for_each_coordinate.hpp>
100#include <boost/geometry/util/math.hpp>
101#include <boost/geometry/util/select_coordinate_type.hpp>
102#include <boost/geometry/util/select_most_precise.hpp>
103
104#include <boost/geometry/views/box_view.hpp>
105#include <boost/geometry/views/closeable_view.hpp>
106#include <boost/geometry/views/identity_view.hpp>
107#include <boost/geometry/views/reversible_view.hpp>
108#include <boost/geometry/views/segment_view.hpp>
109
110#include <boost/geometry/io/io.hpp>
111#include <boost/geometry/io/dsv/write.hpp>
112#include <boost/geometry/io/svg/svg_mapper.hpp>
113#include <boost/geometry/io/svg/write_svg.hpp>
114#include <boost/geometry/io/wkt/read.hpp>
115#include <boost/geometry/io/wkt/write.hpp>
116
117#endif // BOOST_GEOMETRY_GEOMETRY_HPP
118

source code of boost/boost/geometry/geometry.hpp