Skip to content

Commit

Permalink
Added a splashscreen and make the frame to show module's infos.
Browse files Browse the repository at this point in the history
  • Loading branch information
belangeo committed Oct 7, 2011
1 parent 0d7cead commit a19dd62
Show file tree
Hide file tree
Showing 6 changed files with 317 additions and 208 deletions.
Binary file added Resources/ZyneSplash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions Resources/audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,14 @@ def __del__(self):
del self.__dict__[key]

class FmSynth(BaseSynth):
"""
Simple frequency modulation synthesis.
FM Ratio : Ratio between carrier frequency and modulation frequency.
FM Index : Modulation index.
Lowpass Cutoff : Cutoff frequency of the lowpass filter.
"""
def __init__(self, config):
BaseSynth.__init__(self, config, mode=1)
self.indexLine = self.amp * self.p2
Expand Down
Loading

0 comments on commit a19dd62

Please sign in to comment.