view attic/Nodes/delay.py @ 316:9e4cd9704511

merge showconfig again
author drewp@bigasterisk.com
date Tue, 20 Mar 2007 02:35:22 +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}