Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions Sourcecode/include/mx/api/NoteData.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,14 @@ namespace mx
PitchData pitchData; // step, alter, octave, accidental, etc
int userRequestedVoiceNumber;
Stem stem;

// the location of the note, timewise, within the measure
// denominated in ticksPerQuarter as defined by ScoreData

// the time location of the note, within the measure, denominated in ticksPerQuarter which
// is defined in ScoreData. in each measure, the note with tickTimePosition 0 is located at
// the start of the measure. if ScoreData defines ticksPerQuarter as N, then the note
// located at tickTimePosition N will be located one quarter note after the start of the
// measure. MusicXML's <forward> and <backup> tags will be automatically placed into the
// MusicXML as required to facilitate the correct timing of notes based on their
// tickTimePosition values.
int tickTimePosition;
DurationData durationData;

Expand Down