Wayverb
entry.h
1 #pragma once
2 
3 #include "utilities/range.h"
4 
5 #include <array>
6 
7 namespace hrtf_data {
8 
9 struct entry final {
10  static constexpr size_t bands{8};
11 
12  int azimuth;
13  int elevation;
14  std::array<std::array<double, bands>, 2> energy;
15 };
16 
17 } // namespace hrtf_data
Definition: entry.h:7
Definition: entry.h:9