view flax/UI.py @ 990:7c14520fba29

add some non-chase effects for dragging in. all drag curves are now called <sub>_env to avoid conflicts in the expr namespace Ignore-this: 51eda766db229a14612edd0cf6e7ed4b
author drewp@bigasterisk.com
date Sun, 16 Jun 2013 18:43:15 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""