Exemplo n.º 1
0
 def __init__(this):
   ProcessingElement.__init__(this, 2)
Exemplo n.º 2
0
 def __init__(this, interval):
   ProcessingElement.__init__(this, 1)
   this.start = None
   this.count = 0
   this.interval = interval
Exemplo n.º 3
0
 def __init__(this):
   ProcessingElement.__init__(this, 2)
   this.offset = 0
   this.time = None
Exemplo n.º 4
0
Arquivo: paths.py Projeto: shans/togra
 def __init__(this, numPoints):
   ProcessingElement.__init__(this, 1)
   this.numPoints = numPoints
Exemplo n.º 5
0
Arquivo: path.py Projeto: shans/togra
 def __init__(this, points):
   ProcessingElement.__init__(this, 0)
   this.points = points
Exemplo n.º 6
0
Arquivo: util.py Projeto: shans/togra
 def __init__(this):
   ProcessingElement.__init__(this, 0)
   this.time = None
Exemplo n.º 7
0
Arquivo: util.py Projeto: shans/togra
 def __init__(this):
   ProcessingElement.__init__(this, 1)
   this.value = None
Exemplo n.º 8
0
Arquivo: util.py Projeto: shans/togra
 def __init__(this, numGroups):
   ProcessingElement.__init__(this, 1)
   this.numGroups = numGroups
Exemplo n.º 9
0
Arquivo: util.py Projeto: shans/togra
 def __init__(this, numFrames):
   ProcessingElement.__init__(this, 1)
   this.numFrames = numFrames
Exemplo n.º 10
0
 def __init__(this):
   ProcessingElement.__init__(this, 1)
   this.lastFrame = None