Example #1
0
NoteType BeatToNoteType( float fBeat )
{ 
	return GetNoteType( BeatToNoteRow(fBeat) );
}
Example #2
0
bool IsNoteOfType( int iNoteIndex, NoteType t )
{ 
	return GetNoteType(iNoteIndex) == t;
}
Example #3
0
/**
 * @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;
}