| 202 | |
| 203 | template <class T, OGRwkbGeometryType R> |
| 204 | double Geometry<T, R>::getAngleDiffAbs(double a, double b) { |
| 205 | const auto pi = boost::math::constants::pi<double>(); |
| 206 | return pi - fabs(mod_2pi(b - a) - pi); |
| 207 | } |
| 208 | |
| 209 | template <class T, OGRwkbGeometryType R> |
| 210 | double Geometry<T, R>::getAngleAvg(double a, double b) { |
no outgoing calls