| 959 | } |
| 960 | |
| 961 | void Utilities::startWriteWavetablesToFile() { |
| 962 | std::ofstream output_file; |
| 963 | output_file.open("/home/frot/odin2/Source/audio/Oscillators/" |
| 964 | "Wavetables/Tables/WavetableData.cpp"); |
| 965 | |
| 966 | output_file << "#include \"WavetableData.h\"\n\nconst float " |
| 967 | "wavetable_data[NUMBER_OF_WAVETABLES][SUBTABLES_PER_WAVETABLE]" |
| 968 | "[WAVETABLE_LENGTH] = {"; |
| 969 | } |
| 970 | |
| 971 | void Utilities::writeWavetableToFile(int index_wavetable) { |
| 972 |
nothing calls this directly
no outgoing calls
no test coverage detected