Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit adcd4c09f0.
PrevUpHomeNext

add_value

Adds the same value to each coordinate of a point.

Synopsis

template<typename Point>
void add_value(Point & p, typename coordinate_type< Point >::type const & value)

Parameters

Type

Concept

Name

Description

Point &

Any type fulfilling a Point Concept

p

point

typename coordinate_type< Point >::type const &

value

value to add

Header

Either

#include <boost/geometry.hpp>

Or

#include <boost/geometry/arithmetic/arithmetic.hpp>


PrevUpHomeNext