diff options
author | John Glover <john@john-glovers-macbook.local> | 2010-12-13 13:09:12 +0000 |
---|---|---|
committer | John Glover <john@john-glovers-macbook.local> | 2010-12-13 13:09:12 +0000 |
commit | 86dece6032fce8522bf6baa9aefcb42350eb3550 (patch) | |
tree | 2353c66bb540df16a3ed73c2e064bf31eef7247a /basetypes.py | |
parent | 116234a3100a820938119fbf4cdf4814870c1c80 (diff) | |
download | simpl-86dece6032fce8522bf6baa9aefcb42350eb3550.tar.gz simpl-86dece6032fce8522bf6baa9aefcb42350eb3550.tar.bz2 simpl-86dece6032fce8522bf6baa9aefcb42350eb3550.zip |
Fixed bug in SMSSynthesis, Partials were not being correctly linked
Diffstat (limited to 'basetypes.py')
-rw-r--r-- | basetypes.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/basetypes.py b/basetypes.py index dd0da26..2a25688 100644 --- a/basetypes.py +++ b/basetypes.py @@ -80,6 +80,7 @@ class Partial(object): "Initialise peaks list and increment partial_id" self.peaks = [] self.starting_frame = 0 + self.partial_number = -1 self.partial_id = Partial._num_partials Partial._num_partials += 1 @@ -93,6 +94,7 @@ class Partial(object): peak.previous_peak = last_peak peak.partial_position = partial_position peak.partial_id = self.partial_id + peak.partial_number = self.partial_number def get_length(self): "Return the length of this partial (as a number of frames)" |