diff options
author | Grissess <grissess@nexusg.org> | 2016-04-22 19:15:16 -0400 |
---|---|---|
committer | Grissess <grissess@nexusg.org> | 2016-04-22 19:15:16 -0400 |
commit | a3cfdd481d40a7a28dcb5f421797d52b10deeab1 (patch) | |
tree | 0b7ade272f2966886135b57e8695c62dc0758ff0 /client.py | |
parent | b6ab9fcbec899e345d81554d60111e95cf9ce466 (diff) |
Added saw wave
Diffstat (limited to 'client.py')
-rw-r--r-- | client.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -166,6 +166,10 @@ def tri_wave(theta): else: return lin_interp(-1, 0, (theta-3*math.pi/2)/(math.pi/2)) +@generator('Saw wave (line from (0, 1) to (2pi, -1))') +def saw_wave(theta): + return lin_interp(1, -1, theta/(math.pi * 2)) + @generator('Simple square wave (piecewise 1 at x<pi, 0 else)') def square_wave(theta): if theta < math.pi: |