...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Check at which side of a Great Circle segment a point lies left of segment (> 0), right of segment (< 0), on segment (0)
template<typename CalculationType> class strategy::side::side_by_cross_track { // ... };
Parameter |
Default |
Description |
---|---|---|
typename CalculationType |
void |
numeric type for calculation (e.g. high precision); if void then it is extracted automatically from the coordinate type and (if necessary) promoted to floating point |
Function |
Description |
Parameters |
Returns |
---|---|---|---|
template<typename P1, typename P2, typename P> int apply(P1 const & p1, P2 const & p2, P const & p)
|
P1 const &: p1: P2 const &: p2: P const &: p: |
#include <boost/geometry/strategies/spherical/side_by_cross_track.hpp>