Changeset - d4aff817a304
[Not reviewed]
default
0 3 0
drewp@bigasterisk.com - 18 years ago 2007-03-16 21:10:44
drewp@bigasterisk.com
add compatibility with louie.dispatcher
3 files changed with 12 insertions and 3 deletions:
0 comments (0 inline, 0 general)
bin/curvecalc
Show inline comments
 
@@ -8,7 +8,10 @@ from __future__ import division
 
import xmlrpclib,time,socket,sys,textwrap,math,glob,random,os,optparse
 
from bisect import bisect_left,bisect,bisect_right
 
import Tkinter as tk
 
from dispatch import dispatcher
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher 
 
from twisted.internet import reactor,tksupport
 
import twisted
 
from twisted.web.xmlrpc import Proxy
light9/curve.py
Show inline comments
 
@@ -2,7 +2,10 @@ from __future__ import division
 
import sys,math,glob,random,os
 
from bisect import bisect_left,bisect,bisect_right
 
import Tkinter as tk
 
from dispatch import dispatcher
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher
 

	
 
import run_local
 
from light9 import Submaster, dmxclient, networking, cursors
light9/zoomcontrol.py
Show inline comments
 
from __future__ import division
 
import Tkinter as tk
 
from dispatch import dispatcher
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher
 
from light9 import cursors 
 

	
 
class Zoomcontrol(object,tk.Canvas):
0 comments (0 inline, 0 general)