Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version with Figures at top level #9

Merged
merged 1 commit into from
Jun 13, 2023
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
17 changes: 0 additions & 17 deletions music21/musicxml/m21ToXml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1706,22 +1706,6 @@ def setScoreLayouts(self) -> None:
self.firstScoreLayout = scoreLayouts.first()
self.scoreLayouts = list(scoreLayouts)

<<<<<<< HEAD
def _populatePartExporterList(self) -> None:
=======
def getFiguredBassIndications(self):
'''
Collect all harmony.FiguredBassIndications found in the score and store them
in a dict. The dict is later passed to the PartExporter specified
(standard value -1 for the lowest part/staff). With in the MeasureExporter the objeccts are
inserted locally in the measure and finally parsed to the converter.
'''
for fbi in self.stream.getElementsByClass(harmony.FiguredBassIndication):
if fbi.offset not in self.fbis_dict.keys():
self.fbis_dict[fbi.offset] = [fbi]
else:
self.fbis_dict[fbi.offset].append([fbi])

def getFiguredBassIndications(self):
'''
Collect all harmony.FiguredBassIndications found in the score and store them
Expand All @@ -1736,7 +1720,6 @@ def getFiguredBassIndications(self):
self.fbis_dict[fbi.offset].append([fbi])

def _populatePartExporterList(self):
>>>>>>> 7ca383457 (first working musicxml output for FiguredBassIndication Objects)
count = 0
sp = list(self.parts)
for innerStream in sp:
Expand Down