| 13 | } |
| 14 | |
| 15 | float Quantizer::GetValueForNote(int note) { |
| 16 | if (note < scales[_scale].notes_count) { |
| 17 | return scales[_scale].notes[note]; |
| 18 | } |
| 19 | return 0.0f; |
| 20 | } |
| 21 | |
| 22 | QuantizeResponse Quantizer::Quantize_simple(float in) { |
| 23 | QuantizeResponse response; |
nothing calls this directly
no outgoing calls
no test coverage detected