comparison attic/Nodes/delay.py @ 299:6931479b657a

Make attic, move a bunch of old files to it
author David McClosky <dmcc@bigasterisk.com>
date Mon, 20 Jun 2005 18:52:21 +0000
parents Nodes/delay.py@45b12307c695
children
comparison
equal deleted inserted replaced
298:d0f29e247af4 299:6931479b657a
1 """delay node outputs the input a fixed time later"""
2
3
4 class DelayOps(Ops):
5 def clocked(self, input, output, stateaccess):
6 stateaccess.buffer
7
8
9 class Delay(Node):
10 def __init__(self):
11 Node.__init__(self)
12
13 def getnodeparams(self):
14 return {'delay':State.Time}