Changeset - 62bea321edbf
[Not reviewed]
default
0 1 0
drewp@bigasterisk.com - 16 years ago 2008-09-01 05:35:58
drewp@bigasterisk.com
fix illegal import
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
lightsim/lightsim.py
Show inline comments
 
# lightsim.py by Drew Perttula, 6/28/2002
 
from __future__ import division
 

	
 
version="1.01"
 

	
 
from __future__ import division
 
import Image, ImageTk, ImageChops,ImageEnhance
 
from Tkinter import Tk,Label,Scale,DoubleVar,Frame
 
import time, glob
 

	
 
class Imagemixer(Label):
 
    """tk widget that can load images (based on a glob pattern: each file should
 
    be named like 'scene.light') and displays a weighted mix of the images"""
 
    def __init__(self,parent,*k,**kw):
 
        Label.__init__(self,parent,*k,**kw)
 
        self.im={}
 

	
 
        self.itk = ImageTk.PhotoImage(Image.new('RGB',(100,100)))
0 comments (0 inline, 0 general)