simplevectors  0.3.9
Simple vector implementations in C++
units.hpp
Go to the documentation of this file.
1 
10 #ifndef INCLUDE_SVECTOR_UNITS_HPP_
11 #define INCLUDE_SVECTOR_UNITS_HPP_
12 
13 namespace svector {
14 // COMBINER_PY_START
23 enum AngleDir {
25  BETA,
26  GAMMA
27 };
28 // COMBINER_PY_END
29 } // namespace svector
30 
31 #endif
AngleDir
Angle enumerator.
Definition: units.hpp:23
@ ALPHA
Angle between positive x-axis and vector.
Definition: units.hpp:24
@ GAMMA
Angle between positive z-axis and vector.
Definition: units.hpp:26
@ BETA
Angle between positive y-axis and vector.
Definition: units.hpp:25