From b82bc24308b3c34caf6d9ef3786c9da4ef5fd3af Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Tue, 5 Feb 2019 00:20:44 -0500 Subject: lotsa stuff --- client.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'client.py') diff --git a/client.py b/client.py index 4476f6b..b017ee2 100644 --- a/client.py +++ b/client.py @@ -254,6 +254,31 @@ def square_wave(theta): def noise(theta): return random.random() * 2 - 1 +@generator('Square generator with polynomial falloff') +class sq_cub(object): + def __init__(self, mina, degree=1.0/3): + self.mina = mina + self.degree = degree + def __call__(self, theta): + if theta < math.pi: + return 1 - (1 - self.mina) * ((theta / math.pi) ** self.degree) + else: + return -1 + (1 - self.mina) * (((theta - math.pi) / math.pi) ** self.degree) + +@generator('Impulse-like square') +class impulse(object): + def __init__(self, dc=0.01): + self.dc = dc + def __call__(self, theta): + if theta < self.dc * math.pi: + return 1 + elif theta < math.pi: + return 0 + elif theta < (1+self.dc) * math.pi: + return -1 + else: + return 0 + @generator('File generator', '([, [, [, <0=linear interp (default), 1=nearest>[, [, [, [, periods=1 (periods in wave file)/freq=None (base frequency)/pitch=None (base MIDI pitch)]]]]]]])') class file_samp(object): LINEAR = 0 -- cgit v1.2.3-70-g09d2