Inheritance: BeatContainerGlyph
Beispiel #1
0
 private void CreateVoiceGlyphs(Voice v)
 {
     for (int i = 0, j = v.Beats.Count; i < j; i++)
     {
         var b = v.Beats[i];
         var container = new TabBeatContainerGlyph(b, GetOrCreateVoiceContainer(v));
         container.PreNotes = new TabBeatPreNotesGlyph();
         container.OnNotes = new TabBeatGlyph();
         AddBeatGlyph(container);
     }
 }
Beispiel #2
0
 private void CreateVoiceGlyphs(Voice v)
 {
     for (int i = 0, j = v.Beats.Count; i < j; i++)
     {
         var b = v.Beats[i];
         var container = new TabBeatContainerGlyph(b);
         container.PreNotes = new TabBeatPreNotesGlyph();
         container.OnNotes = new TabBeatGlyph();
         ((TabBeatGlyph)container.OnNotes).BeamingHelper = _helpers.BeamHelperLookup[v.Index][b.Index];
         container.PostNotes = new TabBeatPostNotesGlyph();
         AddBeatGlyph(container);
     }
 }