| 39 | int numTotalElevations; |
| 40 | |
| 41 | HRTFDatabaseInfo(const std::string & subjectName, const std::string & searchPath, float sampleRate) |
| 42 | : subjectName(subjectName) |
| 43 | , searchPath(searchPath) |
| 44 | , sampleRate(sampleRate) |
| 45 | { |
| 46 | numTotalElevations = numberOfRawElevations * interpolationFactor; |
| 47 | } |
| 48 | |
| 49 | // Returns the index for the correct HRTFElevation given the elevation angle. |
| 50 | int indexFromElevationAngle(double elevationAngle) |
nothing calls this directly
no outgoing calls
no test coverage detected