#include <math.h>
#include <numbers>
#include "CxxUtils/AthUnlikelyMacros.h"
Go to the source code of this file.
◆ proxim()
| double proxim |
( |
double | b, |
|
|
double | a ) |
|
inline |
Definition at line 17 of file proxim.h.
18{
19 using std::numbers::pi;
20 const double aplus =
a +
pi;
21 const double aminus =
a -
pi;
23 do {
25 } while(b > aplus);
26 }
28 do {
30 } while(b < aminus);
31 }
33}