Beispiel #1
0
 def __call__(self):
     global plotter
     for i in range(self.frames):
         plotter.config(mark_t=i/float(self.frames))
     return AUTOCommands.valueString("Running animation")
Beispiel #2
0
def run(frames):
    global plotter
    for i in range(frames):
        plotter.config(mark_t=i/float(self.frames))
    return AUTOCommands.valueString("Running animation")
Beispiel #3
0
 def __call__(self):
     global plotter
     handle=AUTOCommands.commandPlotter(self.name)()
     plotter = handle.data
     
     return AUTOCommands.valueString("Created plotter\n")
Beispiel #4
0
def start(name=None):
    global plotter
    handle=AUTOCommands.commandPlotter(name)()
    plotter = handle.data
        
    return AUTOCommands.valueString("Created plotter\n")