| 5 | #include "Notes.h" |
| 6 | |
| 7 | bool Notes::Event::operator==(const Notes::Event& other) const |
| 8 | { |
| 9 | return this->startTime == other.startTime && this->endTime == other.endTime && this->startFrame == other.startFrame |
| 10 | && this->endFrame == other.endFrame && this->pitch == other.pitch && this->amplitude == other.amplitude |
| 11 | && this->bends == other.bends; |
| 12 | } |
| 13 | |
| 14 | std::vector<Notes::Event> Notes::convert(const std::vector<std::vector<float>>& inNotesPG, |
| 15 | const std::vector<std::vector<float>>& inOnsetsPG, |
nothing calls this directly
no outgoing calls
no test coverage detected