123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_CARTESIAN_POINT_IN_POLY_FRANKLIN_HPP
- #define BOOST_GEOMETRY_STRATEGIES_CARTESIAN_POINT_IN_POLY_FRANKLIN_HPP
- #include <boost/geometry/core/access.hpp>
- #include <boost/geometry/core/coordinate_type.hpp>
- #include <boost/geometry/util/select_calculation_type.hpp>
- namespace boost { namespace geometry
- {
- namespace strategy { namespace within
- {
- template
- <
- typename Point_,
- typename PointOfSegment_ = Point_,
- typename CalculationType = void
- >
- class franklin
- {
- template <typename Point, typename PointOfSegment>
- struct calculation_type
- : select_calculation_type
- <
- Point,
- PointOfSegment,
- CalculationType
- >
- {};
-
- class crossings
- {
- bool crosses;
- public :
- friend class franklin;
- inline crossings()
- : crosses(false)
- {}
- };
- public :
- typedef crossings state_type;
- template <typename Point, typename PointOfSegment>
- static inline bool apply(Point const& point,
- PointOfSegment const& seg1, PointOfSegment const& seg2,
- crossings& state)
- {
- typedef typename calculation_type<Point, PointOfSegment>::type calc_t;
- calc_t const& px = get<0>(point);
- calc_t const& py = get<1>(point);
- calc_t const& x1 = get<0>(seg1);
- calc_t const& y1 = get<1>(seg1);
- calc_t const& x2 = get<0>(seg2);
- calc_t const& y2 = get<1>(seg2);
- if (
- ( (y2 <= py && py < y1) || (y1 <= py && py < y2) )
- && (px < (x1 - x2) * (py - y2) / (y1 - y2) + x2)
- )
- {
- state.crosses = ! state.crosses;
- }
- return true;
- }
- static inline int result(crossings const& state)
- {
- return state.crosses ? 1 : -1;
- }
- };
- }}
- }}
- #endif
|