// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2008-2012 Bruno Lalande, Paris, France. // Copyright (c) 2009-2012 Mateusz Loskot, London, UK. // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. // 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_ALGORITHMS_CONVEX_HULL_HPP #define BOOST_GEOMETRY_ALGORITHMS_CONVEX_HULL_HPP #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace convex_hull { template < typename Geometry, order_selector Order, typename Strategy > struct hull_insert { // Member template function (to avoid inconvenient declaration // of output-iterator-type, from hull_to_geometry) template static inline OutputIterator apply(Geometry const& geometry, OutputIterator out, Strategy const& strategy) { typename Strategy::state_type state; strategy.apply(geometry, state); strategy.result(state, out, Order == clockwise); return out; } }; template < typename Geometry, typename Strategy > struct hull_to_geometry { template static inline void apply(Geometry const& geometry, OutputGeometry& out, Strategy const& strategy) { hull_insert < Geometry, geometry::point_order::value, Strategy >::apply(geometry, std::back_inserter( // Handle linestring, ring and polygon the same: detail::as_range < typename range_type::type >(out)), strategy); } }; // Helper metafunction for default strategy retrieval template struct default_strategy : strategy_convex_hull < Geometry, typename point_type::type > {}; }} // namespace detail::convex_hull #endif // DOXYGEN_NO_DETAIL #ifndef DOXYGEN_NO_DISPATCH namespace dispatch { template < typename Geometry, typename Strategy = typename detail::convex_hull::default_strategy::type, typename Tag = typename tag::type > struct convex_hull : detail::convex_hull::hull_to_geometry {}; template < typename Box, typename Strategy > struct convex_hull { template static inline void apply(Box const& box, OutputGeometry& out, Strategy const& ) { static bool const Close = geometry::closure::value == closed; static bool const Reverse = geometry::point_order::value == counterclockwise; // A hull for boxes is trivial. Any strategy is (currently) skipped. boost::array::type, 4> range; geometry::detail::assign_box_corners_oriented(box, range); geometry::append(out, range); if (Close) { geometry::append(out, *boost::begin(range)); } } }; template < order_selector Order, typename Geometry, typename Strategy > struct convex_hull_insert : detail::convex_hull::hull_insert {}; } // namespace dispatch #endif // DOXYGEN_NO_DISPATCH template inline void convex_hull(Geometry const& geometry, OutputGeometry& out, Strategy const& strategy) { concept::check_concepts_and_equal_dimensions < const Geometry, OutputGeometry >(); BOOST_CONCEPT_ASSERT( (geometry::concept::ConvexHullStrategy) ); if (geometry::num_points(geometry) == 0) { // Leave output empty return; } dispatch::convex_hull < Geometry, Strategy >::apply(geometry, out, strategy); } /*! \brief \brief_calc{convex hull} \ingroup convex_hull \details \details_calc{convex_hull,convex hull}. \tparam Geometry1 \tparam_geometry \tparam Geometry2 \tparam_geometry \param geometry \param_geometry, input geometry \param hull \param_geometry \param_set{convex hull} \qbk{[include reference/algorithms/convex_hull.qbk]} */ template inline void convex_hull(Geometry const& geometry, OutputGeometry& hull) { concept::check_concepts_and_equal_dimensions < const Geometry, OutputGeometry >(); typedef typename detail::convex_hull::default_strategy::type strategy_type; convex_hull(geometry, hull, strategy_type()); } #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace convex_hull { template inline OutputIterator convex_hull_insert(Geometry const& geometry, OutputIterator out, Strategy const& strategy) { // Concept: output point type = point type of input geometry concept::check(); concept::check::type>(); BOOST_CONCEPT_ASSERT( (geometry::concept::ConvexHullStrategy) ); return dispatch::convex_hull_insert < geometry::point_order::value, Geometry, Strategy >::apply(geometry, out, strategy); } /*! \brief Calculate the convex hull of a geometry, output-iterator version \ingroup convex_hull \tparam Geometry the input geometry type \tparam OutputIterator: an output-iterator \param geometry the geometry to calculate convex hull from \param out an output iterator outputing points of the convex hull \note This overloaded version outputs to an output iterator. In this case, nothing is known about its point-type or about its clockwise order. Therefore, the input point-type and order are copied */ template inline OutputIterator convex_hull_insert(Geometry const& geometry, OutputIterator out) { // Concept: output point type = point type of input geometry concept::check(); concept::check::type>(); typedef typename detail::convex_hull::default_strategy::type strategy_type; return convex_hull_insert(geometry, out, strategy_type()); } }} // namespace detail::convex_hull #endif // DOXYGEN_NO_DETAIL }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_CONVEX_HULL_HPP