Mercurial > code > home > repos > light9
view attic/Nodes/delay.py @ 303:d434a74fc068
moves/removes
author | drewp@bigasterisk.com |
---|---|
date | Tue, 21 Mar 2006 04:50:35 +0000 |
parents | 6931479b657a |
children |
line wrap: on
line source
"""delay node outputs the input a fixed time later""" class DelayOps(Ops): def clocked(self, input, output, stateaccess): stateaccess.buffer class Delay(Node): def __init__(self): Node.__init__(self) def getnodeparams(self): return {'delay':State.Time}