// Boost.Geometry // Copyright (c) 2025, Oracle and/or its affiliates. // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GEOMETRY_STRATEGIES_RELATE3_CARTESIAN_HPP #define BOOST_GEOMETRY_STRATEGIES_RELATE3_CARTESIAN_HPP #include #include #include #include namespace boost { namespace geometry { namespace strategies { namespace relate3 { template class cartesian : public strategies::relate::cartesian { public: static auto side3() { return strategy::side::side_3d_rounded_input<>(); } static auto side() { return strategy::side::side_rounded_input<>(); } }; namespace services { template struct default_strategy { using type = strategies::relate3::cartesian<>; }; } // namespace services }} // namespace strategies::relate3 }} // namespace boost::geometry #endif // BOOST_GEOMETRY_STRATEGIES_RELATE_CARTESIAN_HPP