File indexing completed on 2025-01-18 09:36:54
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 #ifndef BOOST_GEOMETRY_GEOMETRY_HPP
0021 #define BOOST_GEOMETRY_GEOMETRY_HPP
0022
0023 #include <boost/config.hpp>
0024
0025 #if defined(BOOST_NO_CXX14_CONSTEXPR)
0026 #error "Use C++14 or higher to compile Boost.Geometry, or use Boost 1.72 or lower."
0027 #endif
0028
0029
0030
0031 #include <boost/geometry/core/closure.hpp>
0032 #include <boost/geometry/core/coordinate_dimension.hpp>
0033 #include <boost/geometry/core/coordinate_system.hpp>
0034 #include <boost/geometry/core/coordinate_type.hpp>
0035 #include <boost/geometry/core/cs.hpp>
0036 #include <boost/geometry/core/geometry_types.hpp>
0037 #include <boost/geometry/core/interior_type.hpp>
0038 #include <boost/geometry/core/point_order.hpp>
0039 #include <boost/geometry/core/point_type.hpp>
0040 #include <boost/geometry/core/ring_type.hpp>
0041 #include <boost/geometry/core/tag.hpp>
0042 #include <boost/geometry/core/tag_cast.hpp>
0043 #include <boost/geometry/core/tags.hpp>
0044 #include <boost/geometry/core/visit.hpp>
0045
0046
0047 #include <boost/geometry/core/access.hpp>
0048 #include <boost/geometry/core/exterior_ring.hpp>
0049 #include <boost/geometry/core/interior_rings.hpp>
0050 #include <boost/geometry/core/radian_access.hpp>
0051 #include <boost/geometry/core/radius.hpp>
0052 #include <boost/geometry/core/topological_dimension.hpp>
0053
0054 #include <boost/geometry/arithmetic/arithmetic.hpp>
0055 #include <boost/geometry/arithmetic/dot_product.hpp>
0056
0057 #include <boost/geometry/strategies/strategies.hpp>
0058
0059 #include <boost/geometry/algorithms/append.hpp>
0060 #include <boost/geometry/algorithms/area.hpp>
0061 #include <boost/geometry/algorithms/assign.hpp>
0062 #include <boost/geometry/algorithms/azimuth.hpp>
0063 #include <boost/geometry/algorithms/buffer.hpp>
0064 #include <boost/geometry/algorithms/centroid.hpp>
0065 #include <boost/geometry/algorithms/clear.hpp>
0066 #include <boost/geometry/algorithms/closest_points.hpp>
0067 #include <boost/geometry/algorithms/comparable_distance.hpp>
0068 #include <boost/geometry/algorithms/convert.hpp>
0069 #include <boost/geometry/algorithms/convex_hull.hpp>
0070 #include <boost/geometry/algorithms/correct.hpp>
0071 #include <boost/geometry/algorithms/covered_by.hpp>
0072 #include <boost/geometry/algorithms/crosses.hpp>
0073 #include <boost/geometry/algorithms/densify.hpp>
0074 #include <boost/geometry/algorithms/difference.hpp>
0075 #include <boost/geometry/algorithms/discrete_frechet_distance.hpp>
0076 #include <boost/geometry/algorithms/discrete_hausdorff_distance.hpp>
0077 #include <boost/geometry/algorithms/disjoint.hpp>
0078 #include <boost/geometry/algorithms/distance.hpp>
0079 #include <boost/geometry/algorithms/envelope.hpp>
0080 #include <boost/geometry/algorithms/equals.hpp>
0081 #include <boost/geometry/algorithms/expand.hpp>
0082 #include <boost/geometry/algorithms/for_each.hpp>
0083 #include <boost/geometry/algorithms/intersection.hpp>
0084 #include <boost/geometry/algorithms/intersects.hpp>
0085 #include <boost/geometry/algorithms/is_convex.hpp>
0086 #include <boost/geometry/algorithms/is_empty.hpp>
0087 #include <boost/geometry/algorithms/is_simple.hpp>
0088 #include <boost/geometry/algorithms/is_valid.hpp>
0089 #include <boost/geometry/algorithms/length.hpp>
0090 #include <boost/geometry/algorithms/line_interpolate.hpp>
0091 #include <boost/geometry/algorithms/make.hpp>
0092 #include <boost/geometry/algorithms/num_geometries.hpp>
0093 #include <boost/geometry/algorithms/num_interior_rings.hpp>
0094 #include <boost/geometry/algorithms/num_points.hpp>
0095 #include <boost/geometry/algorithms/num_segments.hpp>
0096 #include <boost/geometry/algorithms/overlaps.hpp>
0097 #include <boost/geometry/algorithms/perimeter.hpp>
0098 #include <boost/geometry/algorithms/point_on_surface.hpp>
0099 #include <boost/geometry/algorithms/relate.hpp>
0100 #include <boost/geometry/algorithms/relation.hpp>
0101 #include <boost/geometry/algorithms/remove_spikes.hpp>
0102 #include <boost/geometry/algorithms/reverse.hpp>
0103 #include <boost/geometry/algorithms/simplify.hpp>
0104 #include <boost/geometry/algorithms/sym_difference.hpp>
0105 #include <boost/geometry/algorithms/touches.hpp>
0106 #include <boost/geometry/algorithms/transform.hpp>
0107 #include <boost/geometry/algorithms/union.hpp>
0108 #include <boost/geometry/algorithms/unique.hpp>
0109 #include <boost/geometry/algorithms/within.hpp>
0110
0111
0112 #include <boost/geometry/geometries/concepts/check.hpp>
0113
0114 #include <boost/geometry/srs/srs.hpp>
0115
0116 #include <boost/geometry/util/for_each_coordinate.hpp>
0117 #include <boost/geometry/util/math.hpp>
0118 #include <boost/geometry/util/select_coordinate_type.hpp>
0119 #include <boost/geometry/util/select_most_precise.hpp>
0120
0121 #include <boost/geometry/views/box_view.hpp>
0122 #include <boost/geometry/views/closeable_view.hpp>
0123 #include <boost/geometry/views/identity_view.hpp>
0124 #include <boost/geometry/views/reversible_view.hpp>
0125 #include <boost/geometry/views/segment_view.hpp>
0126
0127 #include <boost/geometry/io/io.hpp>
0128 #include <boost/geometry/io/dsv/write.hpp>
0129 #include <boost/geometry/io/svg/svg_mapper.hpp>
0130 #include <boost/geometry/io/svg/write.hpp>
0131 #include <boost/geometry/io/wkt/read.hpp>
0132 #include <boost/geometry/io/wkt/write.hpp>
0133
0134 #include <boost/geometry/algorithms/is_convex.hpp>
0135 #include <boost/geometry/algorithms/point_on_surface.hpp>
0136
0137 #endif