123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- #ifndef BOOST_GEOMETRY_GEOMETRIES_RING_HPP
- #define BOOST_GEOMETRY_GEOMETRIES_RING_HPP
- #include <memory>
- #include <vector>
- #include <boost/concept/assert.hpp>
- #include <boost/geometry/core/closure.hpp>
- #include <boost/geometry/core/point_order.hpp>
- #include <boost/geometry/core/tag.hpp>
- #include <boost/geometry/core/tags.hpp>
- #include <boost/geometry/geometries/concepts/point_concept.hpp>
- #include <boost/config.hpp>
- #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
- #include <initializer_list>
- #endif
- namespace boost { namespace geometry
- {
- namespace model
- {
- template
- <
- typename Point,
- bool ClockWise = true, bool Closed = true,
- template<typename, typename> class Container = std::vector,
- template<typename> class Allocator = std::allocator
- >
- class ring : public Container<Point, Allocator<Point> >
- {
- BOOST_CONCEPT_ASSERT( (concepts::Point<Point>) );
- typedef Container<Point, Allocator<Point> > base_type;
- public :
-
- inline ring()
- : base_type()
- {}
-
- template <typename Iterator>
- inline ring(Iterator begin, Iterator end)
- : base_type(begin, end)
- {}
- #ifndef BOOST_NO_CXX11_HDR_INITIALIZER_LIST
-
- inline ring(std::initializer_list<Point> l)
- : base_type(l.begin(), l.end())
- {}
- #endif
- };
- }
- #ifndef DOXYGEN_NO_TRAITS_SPECIALIZATIONS
- namespace traits
- {
- template
- <
- typename Point,
- bool ClockWise, bool Closed,
- template<typename, typename> class Container,
- template<typename> class Allocator
- >
- struct tag<model::ring<Point, ClockWise, Closed, Container, Allocator> >
- {
- typedef ring_tag type;
- };
- template
- <
- typename Point,
- bool Closed,
- template<typename, typename> class Container,
- template<typename> class Allocator
- >
- struct point_order<model::ring<Point, false, Closed, Container, Allocator> >
- {
- static const order_selector value = counterclockwise;
- };
- template
- <
- typename Point,
- bool Closed,
- template<typename, typename> class Container,
- template<typename> class Allocator
- >
- struct point_order<model::ring<Point, true, Closed, Container, Allocator> >
- {
- static const order_selector value = clockwise;
- };
- template
- <
- typename Point,
- bool PointOrder,
- template<typename, typename> class Container,
- template<typename> class Allocator
- >
- struct closure<model::ring<Point, PointOrder, true, Container, Allocator> >
- {
- static const closure_selector value = closed;
- };
- template
- <
- typename Point,
- bool PointOrder,
- template<typename, typename> class Container,
- template<typename> class Allocator
- >
- struct closure<model::ring<Point, PointOrder, false, Container, Allocator> >
- {
- static const closure_selector value = open;
- };
- }
- #endif
- }}
- #endif
|