Changeset - cfb00e8cc0ea
[Not reviewed]
default
0 1 0
dmcc - 22 years ago 2002-07-07 13:37:04

(22:36:03) drewp: plaese use stronger quotes """ on Cue:1 to help my highlighter
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
light8/Cue.py
Show inline comments
 
'''And that's my cue to exit(0)...'''
 
"""And that's my cue to exit(0)..."""
 
from time import time
 
from util import subsetdict
 

	
 
class Cue:
 
    '''Cues are groups of fades.  They can tell you the current levels at a 
 
    """Cues are groups of fades.  They can tell you the current levels at a 
 
    given time.  They contain Fades, which are actually children of Cue,
 
    meaning that Cues can contain Cues.  This is similar to the Light9 concept
 
    of Cues and Fades, but without all the Nodes.'''
 
    of Cues and Fades, but without all the Nodes."""
 
    def __init__(self, name, starttime, endtime, *fades):
 
        'Create a cue'
 
        self.name = name
 
        self.starttime = starttime
 
        self.endtime = endtime
 
        self.fades = fades
 
        self.cuestart = None
 
        self.init_levels = None
 
    def channels_involved(self):
 
        'Return which channels are involved.  This is important for marking.'
 
        c = {}
 
        for fade in self.fades:
0 comments (0 inline, 0 general)