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