Changeset - 97b028ed0e47
[Not reviewed]
default
4 1 5
drewp@bigasterisk.com - 13 years ago 2012-06-05 21:48:42
drewp@bigasterisk.com
curvecalc package move
Ignore-this: 7bdca7917afa2ceac61f2ff949261380
6 files changed with 8 insertions and 11 deletions:
0 comments (0 inline, 0 general)
bin/curvecalc
Show inline comments
 
@@ -34,9 +34,9 @@ log = logging.getLogger()
 
import run_local
 
from light9 import Submaster, dmxclient, networking, showconfig, prof, Patch
 
from light9.TLUtility import make_attributes_from_args
 
from light9.zoomcontrol import Zoomcontrol
 
from light9.curve import Curveset
 
from light9.curveview import Curvesetview
 
from light9.curvecalc.zoomcontrol import Zoomcontrol
 
from light9.curvecalc.curve import Curveset
 
from light9.curvecalc.curveview import Curvesetview
 
from light9.wavelength import wavelength
 
from light9.uihelpers import toplevelat
 
from light9.namespaces import L9
light9/curvecalc/__init__.py
Show inline comments
 
new file 100644
light9/curvecalc/cursors.py
Show inline comments
 
file renamed from light9/cursors.py to light9/curvecalc/cursors.py
light9/curvecalc/curve.py
Show inline comments
 
file renamed from light9/curve.py to light9/curvecalc/curve.py
light9/curvecalc/curveview.py
Show inline comments
 
file renamed from light9/curveview.py to light9/curvecalc/curveview.py
 
@@ -2,9 +2,9 @@ from __future__ import division
 
import math, time, logging
 
import Tix as tk
 
import louie as dispatcher
 
from light9.zoomcontrol import RegionZoom
 
from light9 import cursors
 
from light9.curve import introPad, postPad
 
from light9.curvecalc.zoomcontrol import RegionZoom
 
from light9.curvecalc import cursors
 
from light9.curvecalc.curve import introPad, postPad
 
from light9.dmxchanedit import gradient
 

	
 
log = logging.getLogger()
light9/curvecalc/zoomcontrol.py
Show inline comments
 
file renamed from light9/zoomcontrol.py to light9/curvecalc/zoomcontrol.py
 
from __future__ import division
 
import Tkinter as tk
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher
 
from light9 import cursors 
 
import louie as dispatcher
 
from light9.curvecalc import cursors 
 

	
 
class Zoomcontrol(object,tk.Canvas):
 

	
0 comments (0 inline, 0 general)