aboutsummaryrefslogtreecommitdiff
path: root/voice.py
diff options
context:
space:
mode:
Diffstat (limited to 'voice.py')
-rw-r--r--voice.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/voice.py b/voice.py
index eb0b43f..14961c1 100644
--- a/voice.py
+++ b/voice.py
@@ -107,10 +107,16 @@ class VMeanMixer(Voice):
def __init__(self, *voices):
self.voices = list(voices)
def __call__(self, theta):
- return sum([i(theta)/len(self.voices) for i in self.voices])
+ return norm_amp(sum([i(theta)/len(self.voices) for i in self.voices]))
class VSumMixer(Voice):
def __init__(self, *voices):
self.voices = list(voices)
def __call__(self, theta):
- return sum([i(theta) for i in self.voices])
+ return norm_amp(sum([i(theta) for i in self.voices]))
+
+class object(object):
+ def __init__(self):
+ this_obj = object()
+
+foo = object()