192 lines
5.8 KiB
C++
192 lines
5.8 KiB
C++
// Boost.Geometry (aka GGL, Generic Geometry Library)
|
|
|
|
// Copyright (c) 2007-2011 Barend Gehrels, 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_GEOMETRY_POLICIES_RELATE_INTERSECTION_POINTS_HPP
|
|
#define BOOST_GEOMETRY_GEOMETRY_POLICIES_RELATE_INTERSECTION_POINTS_HPP
|
|
|
|
|
|
#include <algorithm>
|
|
#include <string>
|
|
|
|
#include <boost/concept_check.hpp>
|
|
#include <boost/numeric/conversion/cast.hpp>
|
|
|
|
#include <boost/geometry/core/access.hpp>
|
|
#include <boost/geometry/strategies/side_info.hpp>
|
|
#include <boost/geometry/util/select_calculation_type.hpp>
|
|
#include <boost/geometry/util/select_most_precise.hpp>
|
|
|
|
|
|
namespace boost { namespace geometry
|
|
{
|
|
|
|
namespace policies { namespace relate
|
|
{
|
|
|
|
|
|
template <typename S1, typename S2, typename ReturnType, typename CalculationType = void>
|
|
struct segments_intersection_points
|
|
{
|
|
typedef ReturnType return_type;
|
|
typedef S1 segment_type1;
|
|
typedef S2 segment_type2;
|
|
typedef typename select_calculation_type
|
|
<
|
|
S1, S2, CalculationType
|
|
>::type coordinate_type;
|
|
|
|
// Get the same type, but at least a double
|
|
typedef typename select_most_precise<coordinate_type, double>::type rtype;
|
|
|
|
static inline return_type segments_intersect(side_info const&,
|
|
coordinate_type const& dx1, coordinate_type const& dy1,
|
|
coordinate_type const& dx2, coordinate_type const& dy2,
|
|
S1 const& s1, S2 const& s2)
|
|
{
|
|
return_type result;
|
|
typedef typename geometry::coordinate_type
|
|
<
|
|
typename return_type::point_type
|
|
>::type coordinate_type;
|
|
|
|
// Get the same type, but at least a double (also used for divisions
|
|
typedef typename select_most_precise
|
|
<
|
|
coordinate_type, double
|
|
>::type promoted_type;
|
|
|
|
promoted_type const s1x = get<0, 0>(s1);
|
|
promoted_type const s1y = get<0, 1>(s1);
|
|
|
|
// Calculate other determinants - Cramers rule
|
|
promoted_type const wx = get<0, 0>(s1) - get<0, 0>(s2);
|
|
promoted_type const wy = get<0, 1>(s1) - get<0, 1>(s2);
|
|
promoted_type const d = (dy2 * dx1) - (dx2 * dy1);
|
|
promoted_type const da = (promoted_type(dx2) * wy) - (promoted_type(dy2) * wx);
|
|
|
|
// r: ratio 0-1 where intersection divides A/B
|
|
promoted_type r = da / d;
|
|
// Handle robustness issues
|
|
if (r < 0)
|
|
{
|
|
r = 0;
|
|
}
|
|
else if (r > 1)
|
|
{
|
|
r = 1;
|
|
}
|
|
|
|
result.count = 1;
|
|
set<0>(result.intersections[0],
|
|
boost::numeric_cast<coordinate_type>(s1x + r * promoted_type(dx1)));
|
|
set<1>(result.intersections[0],
|
|
boost::numeric_cast<coordinate_type>(s1y + r * promoted_type(dy1)));
|
|
|
|
return result;
|
|
}
|
|
|
|
static inline return_type collinear_touch(coordinate_type const& x,
|
|
coordinate_type const& y, int, int)
|
|
{
|
|
return_type result;
|
|
result.count = 1;
|
|
set<0>(result.intersections[0], x);
|
|
set<1>(result.intersections[0], y);
|
|
return result;
|
|
}
|
|
|
|
template <typename S>
|
|
static inline return_type collinear_inside(S const& s, int index1 = 0, int index2 = 1)
|
|
{
|
|
return_type result;
|
|
result.count = 2;
|
|
set<0>(result.intersections[index1], get<0, 0>(s));
|
|
set<1>(result.intersections[index1], get<0, 1>(s));
|
|
set<0>(result.intersections[index2], get<1, 0>(s));
|
|
set<1>(result.intersections[index2], get<1, 1>(s));
|
|
return result;
|
|
}
|
|
|
|
template <typename S>
|
|
static inline return_type collinear_interior_boundary_intersect(S const& s, bool a_in_b,
|
|
int, int, bool opposite)
|
|
{
|
|
int index1 = opposite && ! a_in_b ? 1 : 0;
|
|
return collinear_inside(s, index1, 1 - index1);
|
|
}
|
|
|
|
static inline return_type collinear_a_in_b(S1 const& s, bool opposite)
|
|
{
|
|
return collinear_inside(s);
|
|
}
|
|
static inline return_type collinear_b_in_a(S2 const& s, bool opposite)
|
|
{
|
|
int index1 = opposite ? 1 : 0;
|
|
return collinear_inside(s, index1, 1 - index1);
|
|
}
|
|
|
|
static inline return_type collinear_overlaps(
|
|
coordinate_type const& x1, coordinate_type const& y1,
|
|
coordinate_type const& x2, coordinate_type const& y2,
|
|
int, int, bool)
|
|
{
|
|
return_type result;
|
|
result.count = 2;
|
|
set<0>(result.intersections[0], x1);
|
|
set<1>(result.intersections[0], y1);
|
|
set<0>(result.intersections[1], x2);
|
|
set<1>(result.intersections[1], y2);
|
|
return result;
|
|
}
|
|
|
|
static inline return_type segment_equal(S1 const& s, bool opposite)
|
|
{
|
|
return_type result;
|
|
result.count = 2;
|
|
// TODO: order of IP's
|
|
set<0>(result.intersections[0], get<0, 0>(s));
|
|
set<1>(result.intersections[0], get<0, 1>(s));
|
|
set<0>(result.intersections[1], get<1, 0>(s));
|
|
set<1>(result.intersections[1], get<1, 1>(s));
|
|
return result;
|
|
}
|
|
|
|
static inline return_type disjoint()
|
|
{
|
|
return return_type();
|
|
}
|
|
static inline return_type error(std::string const& msg)
|
|
{
|
|
return return_type();
|
|
}
|
|
|
|
static inline return_type collinear_disjoint()
|
|
{
|
|
return return_type();
|
|
}
|
|
static inline return_type parallel()
|
|
{
|
|
return return_type();
|
|
}
|
|
static inline return_type degenerate(S1 const& s, bool)
|
|
{
|
|
return_type result;
|
|
result.count = 1;
|
|
set<0>(result.intersections[0], get<0, 0>(s));
|
|
set<1>(result.intersections[0], get<0, 1>(s));
|
|
return result;
|
|
}
|
|
};
|
|
|
|
|
|
}} // namespace policies::relate
|
|
|
|
}} // namespace boost::geometry
|
|
|
|
#endif // BOOST_GEOMETRY_GEOMETRY_POLICIES_RELATE_INTERSECTION_POINTS_HPP
|