intersection.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Boost.Geometry
  2. // Copyright (c) 2016-2020, Oracle and/or its affiliates.
  3. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
  4. // Use, modification and distribution is subject to the Boost Software License,
  5. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #ifndef BOOST_GEOMETRY_STRATEGIES_SEGMENT_INTERSECTION_HPP
  8. #define BOOST_GEOMETRY_STRATEGIES_SEGMENT_INTERSECTION_HPP
  9. #include <boost/geometry/core/static_assert.hpp>
  10. #include <boost/geometry/strategies/tags.hpp>
  11. namespace boost { namespace geometry
  12. {
  13. namespace strategy { namespace intersection
  14. {
  15. namespace services
  16. {
  17. /*!
  18. \brief Traits class binding a segments intersection strategy to a coordinate system
  19. \ingroup util
  20. \tparam CSTag tag of coordinate system of point-type
  21. \tparam CalculationType \tparam_calculation
  22. */
  23. template <typename CSTag, typename CalculationType = void>
  24. struct default_strategy
  25. {
  26. BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
  27. "Not implemented for this type.",
  28. CSTag);
  29. };
  30. } // namespace services
  31. }} // namespace strategy::intersection
  32. }} // namespace boost::geometry
  33. #endif // BOOST_GEOMETRY_STRATEGIES_SEGMENT_INTERSECTION_HPP