mirror of
https://github.com/boostorg/geometry.git
synced 2025-05-09 23:24:02 +00:00
159 lines
4.9 KiB
C++
159 lines
4.9 KiB
C++
// Boost.Geometry (aka GGL, Generic Geometry Library)
|
|
// Unit Test
|
|
|
|
// Copyright (c) 2007-2011 Barend Gehrels, Amsterdam, the Netherlands.
|
|
// Copyright (c) 2008-2011 Bruno Lalande, Paris, France.
|
|
// Copyright (c) 2009-2011 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)
|
|
|
|
|
|
#include <geometry_test_common.hpp>
|
|
|
|
#include <boost/geometry/strategies/cartesian/distance_projected_point.hpp>
|
|
#include <boost/geometry/strategies/concepts/distance_concept.hpp>
|
|
|
|
#include <boost/geometry/domains/gis/io/wkt/read_wkt.hpp>
|
|
|
|
|
|
#include <boost/geometry/geometries/point.hpp>
|
|
#include <boost/geometry/geometries/adapted/c_array_cartesian.hpp>
|
|
#include <boost/geometry/geometries/adapted/boost_tuple.hpp>
|
|
#include <test_common/test_point.hpp>
|
|
|
|
#ifdef HAVE_TTMATH
|
|
# include <boost/geometry/extensions/contrib/ttmath_stub.hpp>
|
|
#endif
|
|
|
|
BOOST_GEOMETRY_REGISTER_BOOST_TUPLE_CS(cs::cartesian);
|
|
|
|
|
|
template <typename P, typename PS, typename CalculationType>
|
|
void test_services()
|
|
{
|
|
PS p1, p2;
|
|
bg::assign_values(p1, 0, 0);
|
|
bg::assign_values(p2, 0, 4);
|
|
|
|
P p;
|
|
bg::assign_values(p, 2, 0);
|
|
|
|
CalculationType const sqr_expected = 4;
|
|
CalculationType const expected = 2;
|
|
|
|
|
|
namespace bgsd = bg::strategy::distance;
|
|
namespace services = bg::strategy::distance::services;
|
|
// 1: normal, calculate distance:
|
|
|
|
typedef bgsd::projected_point<P, PS, CalculationType> strategy_type;
|
|
|
|
BOOST_CONCEPT_ASSERT( (bg::concept::PointSegmentDistanceStrategy<strategy_type>) );
|
|
|
|
typedef typename services::return_type<strategy_type>::type return_type;
|
|
|
|
strategy_type strategy;
|
|
return_type result = strategy.apply(p, p1, p2);
|
|
BOOST_CHECK_CLOSE(result, return_type(expected), 0.001);
|
|
|
|
// 2: "similar" to construct a similar strategy (similar but with other template-parameters) for, e.g., the reverse P2/P1
|
|
// 2a: similar_type:
|
|
typedef typename services::similar_type<strategy_type, P, PS>::type similar_type;
|
|
// 2b: get_similar
|
|
similar_type similar = services::get_similar<strategy_type, P, PS>::apply(strategy);
|
|
|
|
result = similar.apply(p, p1, p2);
|
|
BOOST_CHECK_CLOSE(result, return_type(expected), 0.001);
|
|
|
|
|
|
// 3: "comparable" to construct a "comparable strategy" for P1/P2
|
|
// a "comparable strategy" is a strategy which does not calculate the exact distance, but
|
|
// which returns results which can be mutually compared (e.g. avoid sqrt)
|
|
|
|
// 3a: "comparable_type"
|
|
typedef typename services::comparable_type<strategy_type>::type comparable_type;
|
|
|
|
// 3b: "get_comparable"
|
|
comparable_type comparable = bgsd::services::get_comparable<strategy_type>::apply(strategy);
|
|
|
|
return_type c_result = comparable.apply(p, p1, p2);
|
|
BOOST_CHECK_CLOSE(c_result, return_type(sqr_expected), 0.001);
|
|
}
|
|
|
|
|
|
template <typename P1, typename P2>
|
|
void test_all_2d()
|
|
{
|
|
P1 p;
|
|
P2 sp1, sp2;
|
|
bg::read_wkt("POINT(1 1)", p);
|
|
bg::read_wkt("POINT(0 0)", sp1);
|
|
bg::read_wkt("POINT(2 3)", sp2);
|
|
|
|
typedef typename bg::strategy::distance::projected_point
|
|
<
|
|
P1,
|
|
P2
|
|
> strategy_type;
|
|
|
|
BOOST_CONCEPT_ASSERT
|
|
(
|
|
(bg::concept::PointSegmentDistanceStrategy<strategy_type>)
|
|
);
|
|
|
|
|
|
strategy_type strategy;
|
|
typedef typename bg::strategy::distance::services::return_type<strategy_type>::type return_type;
|
|
return_type d = strategy.apply(p, sp1, sp2);
|
|
BOOST_CHECK_CLOSE(d, return_type(0.27735203958327), 0.001);
|
|
}
|
|
|
|
|
|
template <typename P>
|
|
void test_all_2d()
|
|
{
|
|
//test_all_2d<P, int[2]>();
|
|
//test_all_2d<P, float[2]>();
|
|
//test_all_2d<P, double[2]>();
|
|
//test_all_2d<P, test::test_point>();
|
|
test_all_2d<P, bg::model::point<int, 2, bg::cs::cartesian> >();
|
|
test_all_2d<P, bg::model::point<float, 2, bg::cs::cartesian> >();
|
|
test_all_2d<P, bg::model::point<double, 2, bg::cs::cartesian> >();
|
|
test_all_2d<P, bg::model::point<long double, 2, bg::cs::cartesian> >();
|
|
}
|
|
|
|
int test_main(int, char* [])
|
|
{
|
|
test_all_2d<int[2]>();
|
|
test_all_2d<float[2]>();
|
|
test_all_2d<double[2]>();
|
|
//test_all_2d<test::test_point>();
|
|
|
|
test_all_2d<bg::model::point<int, 2, bg::cs::cartesian> >();
|
|
test_all_2d<bg::model::point<float, 2, bg::cs::cartesian> >();
|
|
test_all_2d<bg::model::point<double, 2, bg::cs::cartesian> >();
|
|
|
|
test_services
|
|
<
|
|
bg::model::point<double, 2, bg::cs::cartesian>,
|
|
bg::model::point<float, 2, bg::cs::cartesian>,
|
|
long double
|
|
>();
|
|
|
|
|
|
#if defined(HAVE_TTMATH)
|
|
test_all_2d
|
|
<
|
|
bg::model::point<ttmath_big, 2, bg::cs::cartesian>,
|
|
bg::model::point<ttmath_big, 2, bg::cs::cartesian>
|
|
>();
|
|
#endif
|
|
|
|
return 0;
|
|
}
|