// Boost.Geometry // Copyright (c) 2020, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Licensed under the Boost Software License version 1.0. // http://www.boost.org/users/license.html #ifndef BOOST_GEOMETRY_STRATEGIES_EXPAND_CARTESIAN_HPP #define BOOST_GEOMETRY_STRATEGIES_EXPAND_CARTESIAN_HPP #include #include #include #include #include #include namespace boost { namespace geometry { namespace strategies { namespace expand { template struct cartesian : strategies::detail::cartesian_base { template static auto expand(Box const&, Geometry const&, typename util::enable_if_point_t * = nullptr) { return strategy::expand::cartesian_point(); } template static auto expand(Box const&, Geometry const&, typename util::enable_if_box_t * = nullptr) { return strategy::expand::cartesian_box(); } template static auto expand(Box const&, Geometry const&, typename util::enable_if_segment_t * = nullptr) { return strategy::expand::cartesian_segment(); } }; namespace services { template struct default_strategy { using type = strategies::expand::cartesian<>; }; template <> struct strategy_converter { static auto get(strategy::expand::cartesian_point const& ) { return strategies::expand::cartesian<>(); } }; template <> struct strategy_converter { static auto get(strategy::expand::cartesian_box const& ) { return strategies::expand::cartesian<>(); } }; template <> struct strategy_converter { static auto get(strategy::expand::cartesian_segment const&) { return strategies::expand::cartesian<>(); } }; } // namespace services }} // namespace strategies::envelope }} // namespace boost::geometry #endif // BOOST_GEOMETRY_STRATEGIES_EXPAND_CARTESIAN_HPP