12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_BUFFER_CARTESIAN_HPP
- #define BOOST_GEOMETRY_STRATEGIES_BUFFER_CARTESIAN_HPP
- #include <boost/geometry/strategies/buffer/services.hpp>
- #include <boost/geometry/strategies/distance/cartesian.hpp>
- namespace boost { namespace geometry
- {
- namespace strategies { namespace buffer
- {
- template <typename CalculationType = void>
- struct cartesian
- : public strategies::distance::cartesian<CalculationType>
- {};
- namespace services
- {
- template <typename Geometry>
- struct default_strategy<Geometry, cartesian_tag>
- {
- using type = strategies::buffer::cartesian<>;
- };
- }
- }}
- }}
- #endif
|