NoteType BeatToNoteType( float fBeat ) { return GetNoteType( BeatToNoteRow(fBeat) ); }
bool IsNoteOfType( int iNoteIndex, NoteType t ) { return GetNoteType(iNoteIndex) == t; }
/** * @brief Determine if the row has a particular type of quantized note. * @param row the row in the Steps. * @param t the quantized NoteType to check for. * @return true if the NoteType is t, false otherwise. */ bool IsNoteOfType( int row, NoteType t ) { return GetNoteType(row) == t; }