/usr/include/boost/geometry/arithmetic/arithmetic.hpp is in libboost1.54-dev 1.54.0-4ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | // Boost.Geometry (aka GGL, Generic Geometry Library)
// Copyright (c) 2008-2012 Bruno Lalande, Paris, France.
// Copyright (c) 2008-2012 Barend Gehrels, Amsterdam, the Netherlands.
// 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_ARITHMETIC_ARITHMETIC_HPP
#define BOOST_GEOMETRY_ARITHMETIC_ARITHMETIC_HPP
#include <functional>
#include <boost/call_traits.hpp>
#include <boost/concept/requires.hpp>
#include <boost/geometry/core/coordinate_type.hpp>
#include <boost/geometry/geometries/concepts/point_concept.hpp>
#include <boost/geometry/util/for_each_coordinate.hpp>
namespace boost { namespace geometry
{
#ifndef DOXYGEN_NO_DETAIL
namespace detail
{
template <typename P>
struct param
{
typedef typename boost::call_traits
<
typename coordinate_type<P>::type
>::param_type type;
};
template <typename C, template <typename> class Function>
struct value_operation
{
C m_value;
inline value_operation(C const &value)
: m_value(value)
{}
template <typename P, int I>
inline void apply(P& point) const
{
set<I>(point, Function<C>()(get<I>(point), m_value));
}
};
template <typename PointSrc, template <typename> class Function>
struct point_operation
{
typedef typename coordinate_type<PointSrc>::type coordinate_type;
PointSrc const& m_source_point;
inline point_operation(PointSrc const& point)
: m_source_point(point)
{}
template <typename PointDst, int I>
inline void apply(PointDst& dest_point) const
{
set<I>(dest_point,
Function<coordinate_type>()(get<I>(dest_point), get<I>(m_source_point)));
}
};
template <typename C>
struct value_assignment
{
C m_value;
inline value_assignment(C const &value)
: m_value(value)
{}
template <typename P, int I>
inline void apply(P& point) const
{
set<I>(point, m_value);
}
};
template <typename PointSrc>
struct point_assignment
{
PointSrc const& m_source_point;
inline point_assignment(PointSrc const& point)
: m_source_point(point)
{}
template <typename PointDst, int I>
inline void apply(PointDst& dest_point) const
{
set<I>(dest_point, get<I>(m_source_point));
}
};
} // namespace detail
#endif // DOXYGEN_NO_DETAIL
/*!
\brief Adds the same value to each coordinate of a point
\ingroup arithmetic
\details
\param p point
\param value value to add
*/
template <typename Point>
inline void add_value(Point& p, typename detail::param<Point>::type value)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point>) );
for_each_coordinate(p, detail::value_operation<typename coordinate_type<Point>::type, std::plus>(value));
}
/*!
\brief Adds a point to another
\ingroup arithmetic
\details The coordinates of the second point will be added to those of the first point.
The second point is not modified.
\param p1 first point
\param p2 second point
*/
template <typename Point1, typename Point2>
inline void add_point(Point1& p1, Point2 const& p2)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point2>) );
BOOST_CONCEPT_ASSERT( (concept::ConstPoint<Point2>) );
for_each_coordinate(p1, detail::point_operation<Point2, std::plus>(p2));
}
/*!
\brief Subtracts the same value to each coordinate of a point
\ingroup arithmetic
\details
\param p point
\param value value to subtract
*/
template <typename Point>
inline void subtract_value(Point& p, typename detail::param<Point>::type value)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point>) );
for_each_coordinate(p, detail::value_operation<typename coordinate_type<Point>::type, std::minus>(value));
}
/*!
\brief Subtracts a point to another
\ingroup arithmetic
\details The coordinates of the second point will be subtracted to those of the first point.
The second point is not modified.
\param p1 first point
\param p2 second point
*/
template <typename Point1, typename Point2>
inline void subtract_point(Point1& p1, Point2 const& p2)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point2>) );
BOOST_CONCEPT_ASSERT( (concept::ConstPoint<Point2>) );
for_each_coordinate(p1, detail::point_operation<Point2, std::minus>(p2));
}
/*!
\brief Multiplies each coordinate of a point by the same value
\ingroup arithmetic
\details
\param p point
\param value value to multiply by
*/
template <typename Point>
inline void multiply_value(Point& p, typename detail::param<Point>::type value)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point>) );
for_each_coordinate(p, detail::value_operation<typename coordinate_type<Point>::type, std::multiplies>(value));
}
/*!
\brief Multiplies a point by another
\ingroup arithmetic
\details The coordinates of the first point will be multiplied by those of the second point.
The second point is not modified.
\param p1 first point
\param p2 second point
\note This is *not* a dot, cross or wedge product. It is a mere field-by-field multiplication.
*/
template <typename Point1, typename Point2>
inline void multiply_point(Point1& p1, Point2 const& p2)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point2>) );
BOOST_CONCEPT_ASSERT( (concept::ConstPoint<Point2>) );
for_each_coordinate(p1, detail::point_operation<Point2, std::multiplies>(p2));
}
/*!
\brief Divides each coordinate of the same point by a value
\ingroup arithmetic
\details
\param p point
\param value value to divide by
*/
template <typename Point>
inline void divide_value(Point& p, typename detail::param<Point>::type value)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point>) );
for_each_coordinate(p, detail::value_operation<typename coordinate_type<Point>::type, std::divides>(value));
}
/*!
\brief Divides a point by another
\ingroup arithmetic
\details The coordinates of the first point will be divided by those of the second point.
The second point is not modified.
\param p1 first point
\param p2 second point
*/
template <typename Point1, typename Point2>
inline void divide_point(Point1& p1, Point2 const& p2)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point2>) );
BOOST_CONCEPT_ASSERT( (concept::ConstPoint<Point2>) );
for_each_coordinate(p1, detail::point_operation<Point2, std::divides>(p2));
}
/*!
\brief Assign each coordinate of a point the same value
\ingroup arithmetic
\details
\param p point
\param value value to assign
*/
template <typename Point>
inline void assign_value(Point& p, typename detail::param<Point>::type value)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point>) );
for_each_coordinate(p, detail::value_assignment<typename coordinate_type<Point>::type>(value));
}
/*!
\brief Assign a point with another
\ingroup arithmetic
\details The coordinates of the first point will be assigned those of the second point.
The second point is not modified.
\param p1 first point
\param p2 second point
*/
template <typename Point1, typename Point2>
inline void assign_point(Point1& p1, const Point2& p2)
{
BOOST_CONCEPT_ASSERT( (concept::Point<Point2>) );
BOOST_CONCEPT_ASSERT( (concept::ConstPoint<Point2>) );
for_each_coordinate(p1, detail::point_assignment<Point2>(p2));
}
}} // namespace boost::geometry
#endif // BOOST_GEOMETRY_ARITHMETIC_ARITHMETIC_HPP
|