| 67 | } |
| 68 | |
| 69 | static inline bool isAngularDimension(Dimension::Id dimension) { |
| 70 | using namespace Dimension; |
| 71 | switch (dimension) { |
| 72 | case Id::X: |
| 73 | case Id::Y: |
| 74 | case Id::Roll: |
| 75 | case Id::Pitch: |
| 76 | case Id::Azimuth: |
| 77 | case Id::WanderAngle: |
| 78 | case Id::XBodyAngRate: |
| 79 | case Id::YBodyAngRate: |
| 80 | case Id::ZBodyAngRate: |
| 81 | return true; |
| 82 | default: |
| 83 | return false; |
| 84 | } |
| 85 | }; |
| 86 | |
| 87 | } // namespace sbet |
| 88 | } // namespace pdal |
no outgoing calls
no test coverage detected